From 37b2ed291a327984877c090208a6fa94abedbb28 Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Mon, 30 Sep 2024 19:03:24 -0300 Subject: [PATCH 1/3] List Call Recordings action --- .../list-call-recordings.mjs | 67 +++++++++++++++++++ components/zoom/zoom.app.mjs | 6 ++ 2 files changed, 73 insertions(+) create mode 100644 components/zoom/actions/list-call-recordings/list-call-recordings.mjs diff --git a/components/zoom/actions/list-call-recordings/list-call-recordings.mjs b/components/zoom/actions/list-call-recordings/list-call-recordings.mjs new file mode 100644 index 0000000000000..e2866f3300b2c --- /dev/null +++ b/components/zoom/actions/list-call-recordings/list-call-recordings.mjs @@ -0,0 +1,67 @@ +import zoom from "../../zoom.app.mjs"; + +export default { + name: "List Call Recordings", + description: "Get your account's call recordings. [See the documentation](https://developers.zoom.us/docs/api/rest/reference/phone/methods/#operation/getPhoneRecordings)", + key: "zoom-list-call-recordings", + version: "0.0.1", + type: "action", + props: { + zoom, + infoBox: { + type: "alert", + alertType: "info", + content: "The Zoom API returns calls from the last 30 days by default. You can use the `Start Date` and `End Date` props to change this.", + }, + startDate: { + type: "string", + label: "Start Date", + description: "The start date/time in `yyyy-mm-dd` or `yyyy-MM-ddTHH:mm:ssZ` format. If `End Date` is not specified, calls made within a 30-day period starting on `Start Date` will be retrieved.", + optional: true, + }, + endDate: { + type: "string", + label: "End Date", + description: "The end date/time in `yyyy-mm-dd` or `yyyy-MM-ddTHH:mm:ssZ` format. Calls made after `Start Date` and before `End Date` will be retrieved.", + optional: true, + }, + max: { + propDefinition: [ + zoom, + "max", + ], + default: 30, + min: 1, + max: 300, + }, + }, + async run ({ $ }) { + const { + zoom, startDate, endDate, max, + } = this; + let to = endDate; + if (startDate && !endDate) { + const date = new Date(startDate); + if (isNaN(date.valueOf())) { + throw new Error("Invalid format for `Start Date`. Please use `yyyy-mm-dd` or `yyyy-MM-ddTHH:mm:ssZ`."); + } + date.setDate(date.getDate() - 30); + to = date.toISOString(); + if (startDate.split("T")[1]) { + to = to.split("T")[0]; + } + } + const { recordings } = await zoom.listCallRecordings({ + step: $, + params: { + page_size: max, + from: startDate, + to, + }, + }); + + $.export("$summary", `Successfully fetched ${recordings.length} call recordings`); + + return recordings; + }, +}; diff --git a/components/zoom/zoom.app.mjs b/components/zoom/zoom.app.mjs index f7180ec177083..b31436af7c60c 100644 --- a/components/zoom/zoom.app.mjs +++ b/components/zoom/zoom.app.mjs @@ -290,6 +290,12 @@ export default { ...args, }); }, + listCallRecordings(args = {}) { + return this._makeRequest({ + path: "/phone/recordings", + ...args, + }); + }, async *getResourcesStream({ resourceFn, resourceFnArgs, From 96478cbece052bd64f7a9f0419800f9d5deb041e Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Tue, 1 Oct 2024 23:58:32 -0300 Subject: [PATCH 2/3] Adjustments --- .../actions/list-call-recordings/list-call-recordings.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/zoom/actions/list-call-recordings/list-call-recordings.mjs b/components/zoom/actions/list-call-recordings/list-call-recordings.mjs index e2866f3300b2c..33ed8a47ef7b9 100644 --- a/components/zoom/actions/list-call-recordings/list-call-recordings.mjs +++ b/components/zoom/actions/list-call-recordings/list-call-recordings.mjs @@ -22,7 +22,7 @@ export default { endDate: { type: "string", label: "End Date", - description: "The end date/time in `yyyy-mm-dd` or `yyyy-MM-ddTHH:mm:ssZ` format. Calls made after `Start Date` and before `End Date` will be retrieved.", + description: "The end date/time in `yyyy-mm-dd` or `yyyy-MM-ddTHH:mm:ssZ` format. Calls made after `Start Date` and before `End Date` will be retrieved. Date range should be a maximum of 30 days.", optional: true, }, max: { @@ -47,7 +47,7 @@ export default { } date.setDate(date.getDate() - 30); to = date.toISOString(); - if (startDate.split("T")[1]) { + if (!startDate.split("T")[1]) { to = to.split("T")[0]; } } From 2f932b1e53571e1d273897c89dfe5f3ba1520d28 Mon Sep 17 00:00:00 2001 From: GTFalcao Date: Wed, 2 Oct 2024 00:04:04 -0300 Subject: [PATCH 3/3] Version bumps --- .../actions/add-meeting-registrant/add-meeting-registrant.mjs | 2 +- .../actions/add-webinar-registrant/add-webinar-registrant.mjs | 2 +- components/zoom/actions/create-meeting/create-meeting.mjs | 2 +- components/zoom/actions/create-user/create-user.mjs | 2 +- components/zoom/actions/delete-user/delete-user.mjs | 2 +- .../zoom/actions/get-meeting-details/get-meeting-details.mjs | 2 +- .../zoom/actions/get-webinar-details/get-webinar-details.mjs | 2 +- components/zoom/actions/list-channels/list-channels.mjs | 2 +- .../list-past-meeting-participants.mjs | 2 +- .../zoom/actions/list-past-webinar-qa/list-past-webinar-qa.mjs | 2 +- .../zoom/actions/list-user-call-logs/list-user-call-logs.mjs | 2 +- .../list-webinar-participants-report.mjs | 2 +- components/zoom/actions/send-chat-message/send-chat-message.mjs | 2 +- components/zoom/actions/update-meeting/update-meeting.mjs | 2 +- components/zoom/actions/update-webinar/update-webinar.mjs | 2 +- components/zoom/actions/view-user/view-user.mjs | 2 +- components/zoom/package.json | 2 +- components/zoom/sources/custom-event/custom-event.mjs | 2 +- components/zoom/sources/meeting-created/meeting-created.mjs | 2 +- components/zoom/sources/meeting-deleted/meeting-deleted.mjs | 2 +- components/zoom/sources/meeting-ended/meeting-ended.mjs | 2 +- components/zoom/sources/meeting-started/meeting-started.mjs | 2 +- components/zoom/sources/meeting-updated/meeting-updated.mjs | 2 +- components/zoom/sources/phone-event/phone-event.mjs | 2 +- .../zoom/sources/recording-completed/recording-completed.mjs | 2 +- components/zoom/sources/webinar-created/webinar-created.mjs | 2 +- components/zoom/sources/webinar-deleted/webinar-deleted.mjs | 2 +- components/zoom/sources/webinar-ended/webinar-ended.mjs | 2 +- components/zoom/sources/webinar-started/webinar-started.mjs | 2 +- components/zoom/sources/webinar-updated/webinar-updated.mjs | 2 +- 30 files changed, 30 insertions(+), 30 deletions(-) diff --git a/components/zoom/actions/add-meeting-registrant/add-meeting-registrant.mjs b/components/zoom/actions/add-meeting-registrant/add-meeting-registrant.mjs index 7a3d2375cdff3..7dcf8652c73cc 100644 --- a/components/zoom/actions/add-meeting-registrant/add-meeting-registrant.mjs +++ b/components/zoom/actions/add-meeting-registrant/add-meeting-registrant.mjs @@ -4,7 +4,7 @@ export default { key: "zoom-add-meeting-registrant", name: "Add Meeting Registrant", description: "Registers a participant for a meeting. [See the docs here](https://marketplace.zoom.us/docs/api-reference/zoom-api/methods/#operation/meetingRegistrantCreate)", - version: "0.3.2", + version: "0.3.3", type: "action", props: { app, diff --git a/components/zoom/actions/add-webinar-registrant/add-webinar-registrant.mjs b/components/zoom/actions/add-webinar-registrant/add-webinar-registrant.mjs index 73cad3b4387c8..795954d9082ef 100644 --- a/components/zoom/actions/add-webinar-registrant/add-webinar-registrant.mjs +++ b/components/zoom/actions/add-webinar-registrant/add-webinar-registrant.mjs @@ -4,7 +4,7 @@ export default { key: "zoom-add-webinar-registrant", name: "Add Webinar Registrant", description: "Registers a participant for a webinar. [See the docs here](https://marketplace.zoom.us/docs/api-reference/zoom-api/webinars/webinarregistrantcreate).", - version: "0.3.2", + version: "0.3.3", type: "action", props: { app, diff --git a/components/zoom/actions/create-meeting/create-meeting.mjs b/components/zoom/actions/create-meeting/create-meeting.mjs index 12a1a8d7d4d33..9b7c916de2810 100644 --- a/components/zoom/actions/create-meeting/create-meeting.mjs +++ b/components/zoom/actions/create-meeting/create-meeting.mjs @@ -5,7 +5,7 @@ export default { key: "zoom-create-meeting", name: "Create Meeting", description: "Creates a meeting for a user. A maximum of 100 meetings can be created for a user in a day.", - version: "0.1.3", + version: "0.1.4", type: "action", props: { zoom: { diff --git a/components/zoom/actions/create-user/create-user.mjs b/components/zoom/actions/create-user/create-user.mjs index a214eac26c107..51589d52c94a1 100644 --- a/components/zoom/actions/create-user/create-user.mjs +++ b/components/zoom/actions/create-user/create-user.mjs @@ -5,7 +5,7 @@ export default { key: "zoom-create-user", name: "Create User", description: "Creates a new user in your account.", - version: "0.2.3", + version: "0.2.4", type: "action", props: { zoom: { diff --git a/components/zoom/actions/delete-user/delete-user.mjs b/components/zoom/actions/delete-user/delete-user.mjs index b573b4d6705c2..6c2c02865cb9b 100644 --- a/components/zoom/actions/delete-user/delete-user.mjs +++ b/components/zoom/actions/delete-user/delete-user.mjs @@ -5,7 +5,7 @@ export default { key: "zoom-delete-user", name: "Delete User", description: "Disassociates (unlinks) a user from the associated account or permanently deletes a user.", - version: "0.2.3", + version: "0.2.4", type: "action", props: { zoom: { diff --git a/components/zoom/actions/get-meeting-details/get-meeting-details.mjs b/components/zoom/actions/get-meeting-details/get-meeting-details.mjs index e13a3b6ad81b3..43c90ac28435b 100644 --- a/components/zoom/actions/get-meeting-details/get-meeting-details.mjs +++ b/components/zoom/actions/get-meeting-details/get-meeting-details.mjs @@ -5,7 +5,7 @@ export default { key: "zoom-get-meeting-details", name: "Get Meeting Details", description: "Retrieves the details of a meeting.", - version: "0.3.3", + version: "0.3.4", type: "action", props: { zoom: { diff --git a/components/zoom/actions/get-webinar-details/get-webinar-details.mjs b/components/zoom/actions/get-webinar-details/get-webinar-details.mjs index 3a2340a3d5cd6..7a1bb41da51f0 100644 --- a/components/zoom/actions/get-webinar-details/get-webinar-details.mjs +++ b/components/zoom/actions/get-webinar-details/get-webinar-details.mjs @@ -4,7 +4,7 @@ export default { key: "zoom-get-webinar-details", name: "Get Webinar Details", description: "Gets details of a scheduled webinar. [See the docs here](https://marketplace.zoom.us/docs/api-reference/zoom-api/methods/#operation/webinar).", - version: "0.3.2", + version: "0.3.3", type: "action", props: { app, diff --git a/components/zoom/actions/list-channels/list-channels.mjs b/components/zoom/actions/list-channels/list-channels.mjs index 93d647b4f630e..3b4fd19ca3caa 100644 --- a/components/zoom/actions/list-channels/list-channels.mjs +++ b/components/zoom/actions/list-channels/list-channels.mjs @@ -5,7 +5,7 @@ export default { key: "zoom-list-channels", name: "List Channels", description: "List a user's chat channels.", - version: "0.1.3", + version: "0.1.4", type: "action", props: { zoom: { diff --git a/components/zoom/actions/list-past-meeting-participants/list-past-meeting-participants.mjs b/components/zoom/actions/list-past-meeting-participants/list-past-meeting-participants.mjs index 2151827299278..0ce260757b655 100644 --- a/components/zoom/actions/list-past-meeting-participants/list-past-meeting-participants.mjs +++ b/components/zoom/actions/list-past-meeting-participants/list-past-meeting-participants.mjs @@ -4,7 +4,7 @@ export default { key: "zoom-list-past-meeting-participants", name: "List Past Meeting Participants", description: "Retrieve information on participants from a past meeting. [See the docs here](https://marketplace.zoom.us/docs/api-reference/zoom-api/methods/#operation/pastMeetingParticipants).", - version: "0.2.2", + version: "0.2.3", type: "action", props: { app, diff --git a/components/zoom/actions/list-past-webinar-qa/list-past-webinar-qa.mjs b/components/zoom/actions/list-past-webinar-qa/list-past-webinar-qa.mjs index 6ff11db6fa02b..e68c2835bc92b 100644 --- a/components/zoom/actions/list-past-webinar-qa/list-past-webinar-qa.mjs +++ b/components/zoom/actions/list-past-webinar-qa/list-past-webinar-qa.mjs @@ -5,7 +5,7 @@ export default { key: "zoom-list-past-webinar-qa", name: "List Past Webinar Q&A", description: "The feature for Webinars allows attendees to ask questions during the Webinar and for the panelists, co-hosts and host to answer their questions. Use this API to list Q&A of a specific Webinar.", - version: "0.1.3", + version: "0.1.4", type: "action", props: { zoom: { diff --git a/components/zoom/actions/list-user-call-logs/list-user-call-logs.mjs b/components/zoom/actions/list-user-call-logs/list-user-call-logs.mjs index cfd18156d402c..ed1e019071576 100644 --- a/components/zoom/actions/list-user-call-logs/list-user-call-logs.mjs +++ b/components/zoom/actions/list-user-call-logs/list-user-call-logs.mjs @@ -4,7 +4,7 @@ export default { name: "List User's Call Logs", description: "Gets a user's Zoom phone call logs. [See the documentation](https://developers.zoom.us/docs/zoom-phone/apis/#operation/phoneUserCallLogs)", key: "zoom-list-user-call-logs", - version: "0.0.2", + version: "0.0.3", type: "action", props: { zoom, diff --git a/components/zoom/actions/list-webinar-participants-report/list-webinar-participants-report.mjs b/components/zoom/actions/list-webinar-participants-report/list-webinar-participants-report.mjs index 5830b813a2141..c2c45609732c3 100644 --- a/components/zoom/actions/list-webinar-participants-report/list-webinar-participants-report.mjs +++ b/components/zoom/actions/list-webinar-participants-report/list-webinar-participants-report.mjs @@ -5,7 +5,7 @@ export default { key: "zoom-list-webinar-participants-report", name: "List Webinar Participants Report", description: "Retrieves detailed report on each webinar attendee. You can get webinar participant reports for the last 6 months. [See the docs here](https://marketplace.zoom.us/docs/api-reference/zoom-api/methods/#operation/reportWebinarParticipants).", - version: "0.0.3", + version: "0.0.4", type: "action", props: { app, diff --git a/components/zoom/actions/send-chat-message/send-chat-message.mjs b/components/zoom/actions/send-chat-message/send-chat-message.mjs index 00267e5fa7666..ea0b793c900d7 100644 --- a/components/zoom/actions/send-chat-message/send-chat-message.mjs +++ b/components/zoom/actions/send-chat-message/send-chat-message.mjs @@ -5,7 +5,7 @@ export default { key: "zoom-send-chat-message", name: "Send Chat Message", description: "Send chat messages on Zoom to either an individual user who is in your contact list or to a of which you are a member.", - version: "0.1.3", + version: "0.1.4", type: "action", props: { zoom: { diff --git a/components/zoom/actions/update-meeting/update-meeting.mjs b/components/zoom/actions/update-meeting/update-meeting.mjs index 2f05804f395d2..2cb8d6cfc1d00 100644 --- a/components/zoom/actions/update-meeting/update-meeting.mjs +++ b/components/zoom/actions/update-meeting/update-meeting.mjs @@ -5,7 +5,7 @@ export default { key: "zoom-update-meeting", name: "Update Meeting", description: "Updates an existing Zoom meeting", - version: "0.1.3", + version: "0.1.4", type: "action", props: { zoom: { diff --git a/components/zoom/actions/update-webinar/update-webinar.mjs b/components/zoom/actions/update-webinar/update-webinar.mjs index 65be6956735fa..a9f99f4dd39a2 100644 --- a/components/zoom/actions/update-webinar/update-webinar.mjs +++ b/components/zoom/actions/update-webinar/update-webinar.mjs @@ -5,7 +5,7 @@ export default { key: "zoom-update-webinar", name: "Update Webinar", description: "Update a webinar's topic, start time, or other settings", - version: "0.1.3", + version: "0.1.4", type: "action", props: { zoom: { diff --git a/components/zoom/actions/view-user/view-user.mjs b/components/zoom/actions/view-user/view-user.mjs index 9874f18d8f517..ef5c829ffdf7a 100644 --- a/components/zoom/actions/view-user/view-user.mjs +++ b/components/zoom/actions/view-user/view-user.mjs @@ -5,7 +5,7 @@ export default { key: "zoom-view-user", name: "View User", description: "View your user information", - version: "0.1.3", + version: "0.1.4", type: "action", props: { zoom: { diff --git a/components/zoom/package.json b/components/zoom/package.json index 6896378ff916c..5b926e64ad543 100644 --- a/components/zoom/package.json +++ b/components/zoom/package.json @@ -1,6 +1,6 @@ { "name": "@pipedream/zoom", - "version": "0.5.1", + "version": "0.6.0", "description": "Pipedream Zoom Components", "main": "zoom.app.mjs", "keywords": [ diff --git a/components/zoom/sources/custom-event/custom-event.mjs b/components/zoom/sources/custom-event/custom-event.mjs index 4c7d96efce86e..4e49a9de0a773 100644 --- a/components/zoom/sources/custom-event/custom-event.mjs +++ b/components/zoom/sources/custom-event/custom-event.mjs @@ -6,7 +6,7 @@ export default { key: "zoom-custom-event", name: "Custom Events (Instant)", description: "Emit new events tied to your Zoom user or resources you own", - version: "0.1.2", + version: "0.1.3", type: "source", dedupe: "unique", props: { diff --git a/components/zoom/sources/meeting-created/meeting-created.mjs b/components/zoom/sources/meeting-created/meeting-created.mjs index 9576ce2119b3e..01ad09d3271a5 100644 --- a/components/zoom/sources/meeting-created/meeting-created.mjs +++ b/components/zoom/sources/meeting-created/meeting-created.mjs @@ -6,7 +6,7 @@ export default { key: "zoom-meeting-created", name: "Meeting Created (Instant)", description: "Emit new event each time a meeting is created where you're the host", - version: "0.1.2", + version: "0.1.3", type: "source", dedupe: "unique", props: { diff --git a/components/zoom/sources/meeting-deleted/meeting-deleted.mjs b/components/zoom/sources/meeting-deleted/meeting-deleted.mjs index b83a77bc9afde..05a0964752c14 100644 --- a/components/zoom/sources/meeting-deleted/meeting-deleted.mjs +++ b/components/zoom/sources/meeting-deleted/meeting-deleted.mjs @@ -6,7 +6,7 @@ export default { key: "zoom-meeting-deleted", name: "Meeting Deleted (Instant)", description: "Emit new event each time a meeting is deleted where you're the host", - version: "0.1.2", + version: "0.1.3", type: "source", dedupe: "unique", props: { diff --git a/components/zoom/sources/meeting-ended/meeting-ended.mjs b/components/zoom/sources/meeting-ended/meeting-ended.mjs index 6c1e1600bb82b..9b81ad8009810 100644 --- a/components/zoom/sources/meeting-ended/meeting-ended.mjs +++ b/components/zoom/sources/meeting-ended/meeting-ended.mjs @@ -6,7 +6,7 @@ export default { key: "zoom-meeting-ended", name: "Meeting Ended (Instant)", description: "Emit new event each time a meeting ends where you're the host", - version: "0.1.2", + version: "0.1.3", type: "source", dedupe: "unique", props: { diff --git a/components/zoom/sources/meeting-started/meeting-started.mjs b/components/zoom/sources/meeting-started/meeting-started.mjs index 95fe7506376ed..2b6d807d212e9 100644 --- a/components/zoom/sources/meeting-started/meeting-started.mjs +++ b/components/zoom/sources/meeting-started/meeting-started.mjs @@ -6,7 +6,7 @@ export default { key: "zoom-meeting-started", name: "Meeting Started (Instant)", description: "Emit new event each time a meeting starts where you're the host", - version: "0.1.3", + version: "0.1.4", type: "source", dedupe: "unique", props: { diff --git a/components/zoom/sources/meeting-updated/meeting-updated.mjs b/components/zoom/sources/meeting-updated/meeting-updated.mjs index 1fc6f9ad38835..435b805ea8876 100644 --- a/components/zoom/sources/meeting-updated/meeting-updated.mjs +++ b/components/zoom/sources/meeting-updated/meeting-updated.mjs @@ -6,7 +6,7 @@ export default { key: "zoom-meeting-updated", name: "Meeting Updated (Instant)", description: "Emit new event each time a meeting is updated where you're the host", - version: "0.1.2", + version: "0.1.3", type: "source", dedupe: "unique", props: { diff --git a/components/zoom/sources/phone-event/phone-event.mjs b/components/zoom/sources/phone-event/phone-event.mjs index 06c081c3af873..110dcedaa94f2 100644 --- a/components/zoom/sources/phone-event/phone-event.mjs +++ b/components/zoom/sources/phone-event/phone-event.mjs @@ -6,7 +6,7 @@ export default { key: "zoom-phone-event", name: "Zoom Phone Events (Instant)", description: "Emit new Zoom Phone event tied to your Zoom user or resources you own", - version: "0.1.2", + version: "0.1.3", type: "source", props: { ...common.props, diff --git a/components/zoom/sources/recording-completed/recording-completed.mjs b/components/zoom/sources/recording-completed/recording-completed.mjs index e152b03892a9e..b69fcfa413961 100644 --- a/components/zoom/sources/recording-completed/recording-completed.mjs +++ b/components/zoom/sources/recording-completed/recording-completed.mjs @@ -6,7 +6,7 @@ export default { key: "zoom-recording-completed", name: "Recording Completed (Instant)", description: "Emit new event each time a new recording completes for a meeting or webinar where you're the host", - version: "0.1.2", + version: "0.1.3", type: "source", dedupe: "unique", props: { diff --git a/components/zoom/sources/webinar-created/webinar-created.mjs b/components/zoom/sources/webinar-created/webinar-created.mjs index 9a767df03e41a..10a3acecaadd3 100644 --- a/components/zoom/sources/webinar-created/webinar-created.mjs +++ b/components/zoom/sources/webinar-created/webinar-created.mjs @@ -6,7 +6,7 @@ export default { key: "zoom-webinar-created", name: "Webinar Created (Instant)", description: "Emit new event each time a webinar is created where you're the host", - version: "0.1.2", + version: "0.1.3", type: "source", dedupe: "unique", props: { diff --git a/components/zoom/sources/webinar-deleted/webinar-deleted.mjs b/components/zoom/sources/webinar-deleted/webinar-deleted.mjs index cb8d8599ebe27..4cc07aa90a641 100644 --- a/components/zoom/sources/webinar-deleted/webinar-deleted.mjs +++ b/components/zoom/sources/webinar-deleted/webinar-deleted.mjs @@ -6,7 +6,7 @@ export default { key: "zoom-webinar-deleted", name: "Webinar Deleted (Instant)", description: "Emit new event each time a webinar is deleted where you're the host", - version: "0.1.2", + version: "0.1.3", type: "source", dedupe: "unique", props: { diff --git a/components/zoom/sources/webinar-ended/webinar-ended.mjs b/components/zoom/sources/webinar-ended/webinar-ended.mjs index 0d3ba02fb7645..396ebbbf2c0fe 100644 --- a/components/zoom/sources/webinar-ended/webinar-ended.mjs +++ b/components/zoom/sources/webinar-ended/webinar-ended.mjs @@ -6,7 +6,7 @@ export default { key: "zoom-webinar-ended", name: "Webinar Ended (Instant)", description: "Emit new event each time a webinar ends where you're the host", - version: "0.1.2", + version: "0.1.3", type: "source", dedupe: "unique", props: { diff --git a/components/zoom/sources/webinar-started/webinar-started.mjs b/components/zoom/sources/webinar-started/webinar-started.mjs index b3dfd32b8ad09..70de57c9b206b 100644 --- a/components/zoom/sources/webinar-started/webinar-started.mjs +++ b/components/zoom/sources/webinar-started/webinar-started.mjs @@ -6,7 +6,7 @@ export default { key: "zoom-webinar-started", name: "Webinar Started (Instant)", description: "Emit new event each time a webinar starts where you're the host", - version: "0.1.2", + version: "0.1.3", type: "source", dedupe: "unique", props: { diff --git a/components/zoom/sources/webinar-updated/webinar-updated.mjs b/components/zoom/sources/webinar-updated/webinar-updated.mjs index 9ffcf53d18bf5..ed97346a4c062 100644 --- a/components/zoom/sources/webinar-updated/webinar-updated.mjs +++ b/components/zoom/sources/webinar-updated/webinar-updated.mjs @@ -6,7 +6,7 @@ export default { key: "zoom-webinar-updated", name: "Webinar Updated (Instant)", description: "Emit new event each time a webinar is updated where you're the host", - version: "0.1.2", + version: "0.1.3", type: "source", dedupe: "unique", props: {