twentythree-cli 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +25 -0
- package/bin/dev.cmd +2 -0
- package/bin/dev.js +28 -0
- package/bin/run.cmd +2 -0
- package/bin/run.js +23 -0
- package/dist/_virtual/_rolldown/runtime.cjs +23 -0
- package/dist/api/client.cjs +24 -0
- package/dist/api/types.cjs +0 -0
- package/dist/auth/credential-store.cjs +22 -0
- package/dist/auth/token-refresh.cjs +70 -0
- package/dist/auth/workspace-config.cjs +61 -0
- package/dist/commands/action/add.cjs +75 -0
- package/dist/commands/action/delete.cjs +64 -0
- package/dist/commands/action/exclude.cjs +70 -0
- package/dist/commands/action/get.cjs +112 -0
- package/dist/commands/action/include.cjs +70 -0
- package/dist/commands/action/list.cjs +119 -0
- package/dist/commands/action/types.cjs +63 -0
- package/dist/commands/action/update.cjs +86 -0
- package/dist/commands/action/upload.cjs +89 -0
- package/dist/commands/analytics/conversions/index.cjs +83 -0
- package/dist/commands/analytics/conversions/timeseries.cjs +83 -0
- package/dist/commands/analytics/conversions/totals.cjs +83 -0
- package/dist/commands/analytics/live/event-timeseries.cjs +86 -0
- package/dist/commands/analytics/live/event-totals.cjs +86 -0
- package/dist/commands/analytics/live/event.cjs +88 -0
- package/dist/commands/analytics/live/index.cjs +89 -0
- package/dist/commands/analytics/live/timeseries.cjs +85 -0
- package/dist/commands/analytics/live/totals.cjs +85 -0
- package/dist/commands/analytics/live/weekday/timeseries.cjs +85 -0
- package/dist/commands/analytics/live/weekday/totals.cjs +85 -0
- package/dist/commands/analytics/live/weekday.cjs +88 -0
- package/dist/commands/analytics/usage/devices/timeseries.cjs +83 -0
- package/dist/commands/analytics/usage/devices/totals.cjs +86 -0
- package/dist/commands/analytics/usage/devices.cjs +89 -0
- package/dist/commands/analytics/usage/domains/totals.cjs +83 -0
- package/dist/commands/analytics/usage/domains.cjs +89 -0
- package/dist/commands/analytics/usage/locations/totals.cjs +83 -0
- package/dist/commands/analytics/usage/locations.cjs +89 -0
- package/dist/commands/analytics/usage/sourceids/totals.cjs +83 -0
- package/dist/commands/analytics/usage/sourceids.cjs +89 -0
- package/dist/commands/analytics/usage/sources/totals.cjs +83 -0
- package/dist/commands/analytics/usage/sources.cjs +89 -0
- package/dist/commands/analytics/usage/spots/timeseries.cjs +83 -0
- package/dist/commands/analytics/usage/spots/totals.cjs +83 -0
- package/dist/commands/analytics/usage/spots.cjs +89 -0
- package/dist/commands/analytics/usage/storage.cjs +52 -0
- package/dist/commands/analytics/usage/traffic/timeseries.cjs +83 -0
- package/dist/commands/analytics/usage/traffic/totals.cjs +86 -0
- package/dist/commands/analytics/usage/traffic.cjs +89 -0
- package/dist/commands/analytics/video/index.cjs +89 -0
- package/dist/commands/analytics/video/performance/timeseries.cjs +83 -0
- package/dist/commands/analytics/video/performance/totals.cjs +80 -0
- package/dist/commands/analytics/video/performance.cjs +89 -0
- package/dist/commands/analytics/video/published/timeseries.cjs +83 -0
- package/dist/commands/analytics/video/published/totals.cjs +80 -0
- package/dist/commands/analytics/video/published.cjs +89 -0
- package/dist/commands/analytics/video/timeseries.cjs +86 -0
- package/dist/commands/analytics/video/totals.cjs +86 -0
- package/dist/commands/analytics/video/weekday/timeseries.cjs +86 -0
- package/dist/commands/analytics/video/weekday/totals.cjs +83 -0
- package/dist/commands/analytics/video/weekday.cjs +89 -0
- package/dist/commands/app/add.cjs +76 -0
- package/dist/commands/app/delete.cjs +57 -0
- package/dist/commands/app/update.cjs +77 -0
- package/dist/commands/audience/companies.cjs +116 -0
- package/dist/commands/audience/field/list.cjs +83 -0
- package/dist/commands/audience/field/remove.cjs +63 -0
- package/dist/commands/audience/field/set.cjs +78 -0
- package/dist/commands/audience/field/types.cjs +57 -0
- package/dist/commands/audience/funnel.cjs +77 -0
- package/dist/commands/audience/identity-sources.cjs +64 -0
- package/dist/commands/audience/list-collectors.cjs +88 -0
- package/dist/commands/audience/list.cjs +122 -0
- package/dist/commands/audience/metrics.cjs +89 -0
- package/dist/commands/audience/register.cjs +106 -0
- package/dist/commands/audience/remove.cjs +72 -0
- package/dist/commands/audience/search.cjs +106 -0
- package/dist/commands/audience/timelines.cjs +115 -0
- package/dist/commands/audience/unregister.cjs +65 -0
- package/dist/commands/auth/credentials.cjs +89 -0
- package/dist/commands/auth/status.cjs +34 -0
- package/dist/commands/category/create.cjs +80 -0
- package/dist/commands/category/delete.cjs +70 -0
- package/dist/commands/category/index.cjs +11 -0
- package/dist/commands/category/list.cjs +98 -0
- package/dist/commands/category/update.cjs +134 -0
- package/dist/commands/collector/exclude.cjs +56 -0
- package/dist/commands/collector/include.cjs +56 -0
- package/dist/commands/collector/list.cjs +81 -0
- package/dist/commands/comment/add.cjs +102 -0
- package/dist/commands/comment/clone.cjs +59 -0
- package/dist/commands/comment/delete.cjs +55 -0
- package/dist/commands/comment/list.cjs +126 -0
- package/dist/commands/comment/promote.cjs +65 -0
- package/dist/commands/comment/reaction/add.cjs +81 -0
- package/dist/commands/comment/reaction/list.cjs +92 -0
- package/dist/commands/comment/reaction/remove.cjs +81 -0
- package/dist/commands/comment/set-order.cjs +63 -0
- package/dist/commands/comment/update.cjs +63 -0
- package/dist/commands/doctor.cjs +129 -0
- package/dist/commands/openupload/list.cjs +95 -0
- package/dist/commands/openupload/update-file.cjs +85 -0
- package/dist/commands/openupload/upload-file.cjs +130 -0
- package/dist/commands/player/delete.cjs +66 -0
- package/dist/commands/player/embed-versions.cjs +83 -0
- package/dist/commands/player/embed.cjs +134 -0
- package/dist/commands/player/list.cjs +86 -0
- package/dist/commands/player/styles.cjs +70 -0
- package/dist/commands/player/update.cjs +80 -0
- package/dist/commands/poll/add.cjs +84 -0
- package/dist/commands/poll/answer.cjs +89 -0
- package/dist/commands/poll/list.cjs +92 -0
- package/dist/commands/poll/remove.cjs +57 -0
- package/dist/commands/poll/set-options.cjs +84 -0
- package/dist/commands/poll/update.cjs +79 -0
- package/dist/commands/presentation/page/link-locations.cjs +57 -0
- package/dist/commands/presentation/setting/list.cjs +44 -0
- package/dist/commands/presentation/setting/update.cjs +67 -0
- package/dist/commands/protection/protect.cjs +68 -0
- package/dist/commands/protection/unprotect.cjs +65 -0
- package/dist/commands/protection/verify.cjs +80 -0
- package/dist/commands/session/get-token.cjs +75 -0
- package/dist/commands/session/redeem-token.cjs +56 -0
- package/dist/commands/setting/update.cjs +79 -0
- package/dist/commands/site/get.cjs +73 -0
- package/dist/commands/site/search.cjs +93 -0
- package/dist/commands/spot/check.cjs +52 -0
- package/dist/commands/spot/create.cjs +79 -0
- package/dist/commands/spot/delete.cjs +68 -0
- package/dist/commands/spot/list.cjs +120 -0
- package/dist/commands/spot/reset-version.cjs +53 -0
- package/dist/commands/spot/set-videos.cjs +64 -0
- package/dist/commands/spot/update.cjs +78 -0
- package/dist/commands/tag/list.cjs +98 -0
- package/dist/commands/tag/related.cjs +57 -0
- package/dist/commands/thumbnail/add.cjs +66 -0
- package/dist/commands/thumbnail/data.cjs +60 -0
- package/dist/commands/thumbnail/delete.cjs +61 -0
- package/dist/commands/thumbnail/duplicate.cjs +67 -0
- package/dist/commands/thumbnail/file/delete.cjs +71 -0
- package/dist/commands/thumbnail/file/list.cjs +74 -0
- package/dist/commands/thumbnail/file/upload.cjs +79 -0
- package/dist/commands/thumbnail/index.cjs +11 -0
- package/dist/commands/thumbnail/list.cjs +89 -0
- package/dist/commands/thumbnail/update.cjs +87 -0
- package/dist/commands/user/create.cjs +87 -0
- package/dist/commands/user/get-login-token.cjs +72 -0
- package/dist/commands/user/get.cjs +67 -0
- package/dist/commands/user/list.cjs +95 -0
- package/dist/commands/user/redeem-login-token.cjs +55 -0
- package/dist/commands/user/send-invitation.cjs +63 -0
- package/dist/commands/user/tokens.cjs +80 -0
- package/dist/commands/user/update.cjs +121 -0
- package/dist/commands/video/delete.cjs +67 -0
- package/dist/commands/video/frame.cjs +69 -0
- package/dist/commands/video/get.cjs +68 -0
- package/dist/commands/video/index.cjs +11 -0
- package/dist/commands/video/list.cjs +98 -0
- package/dist/commands/video/replace.cjs +126 -0
- package/dist/commands/video/section/create.cjs +73 -0
- package/dist/commands/video/section/delete.cjs +78 -0
- package/dist/commands/video/section/index.cjs +11 -0
- package/dist/commands/video/section/list.cjs +75 -0
- package/dist/commands/video/section/set-thumbnail.cjs +73 -0
- package/dist/commands/video/section/update.cjs +84 -0
- package/dist/commands/video/subtitle/archive.cjs +76 -0
- package/dist/commands/video/subtitle/create.cjs +80 -0
- package/dist/commands/video/subtitle/data.cjs +75 -0
- package/dist/commands/video/subtitle/delete.cjs +84 -0
- package/dist/commands/video/subtitle/duplicate.cjs +89 -0
- package/dist/commands/video/subtitle/index.cjs +11 -0
- package/dist/commands/video/subtitle/list.cjs +94 -0
- package/dist/commands/video/subtitle/locales.cjs +60 -0
- package/dist/commands/video/subtitle/set-primary.cjs +64 -0
- package/dist/commands/video/subtitle/types.cjs +42 -0
- package/dist/commands/video/subtitle/update.cjs +93 -0
- package/dist/commands/video/subtitle/upload.cjs +104 -0
- package/dist/commands/video/transcoding-progress.cjs +71 -0
- package/dist/commands/video/update.cjs +184 -0
- package/dist/commands/video/upload.cjs +151 -0
- package/dist/commands/webhook/events.cjs +68 -0
- package/dist/commands/webhook/list.cjs +64 -0
- package/dist/commands/webhook/sample.cjs +47 -0
- package/dist/commands/webhook/subscribe.cjs +66 -0
- package/dist/commands/webhook/unsubscribe.cjs +71 -0
- package/dist/commands/webinar/attachment/delete.cjs +79 -0
- package/dist/commands/webinar/attachment/list.cjs +94 -0
- package/dist/commands/webinar/attachment/set-hidden.cjs +85 -0
- package/dist/commands/webinar/attachment/upload.cjs +128 -0
- package/dist/commands/webinar/clips.cjs +77 -0
- package/dist/commands/webinar/create.cjs +107 -0
- package/dist/commands/webinar/delete.cjs +62 -0
- package/dist/commands/webinar/highlights.cjs +84 -0
- package/dist/commands/webinar/index.cjs +11 -0
- package/dist/commands/webinar/list-formats.cjs +50 -0
- package/dist/commands/webinar/list.cjs +134 -0
- package/dist/commands/webinar/log.cjs +69 -0
- package/dist/commands/webinar/mail/add.cjs +101 -0
- package/dist/commands/webinar/mail/list.cjs +83 -0
- package/dist/commands/webinar/mail/preview.cjs +75 -0
- package/dist/commands/webinar/mail/remove.cjs +75 -0
- package/dist/commands/webinar/mail/send.cjs +68 -0
- package/dist/commands/webinar/mail/test.cjs +86 -0
- package/dist/commands/webinar/mail/update.cjs +84 -0
- package/dist/commands/webinar/metrics.cjs +59 -0
- package/dist/commands/webinar/queued-video/add.cjs +81 -0
- package/dist/commands/webinar/queued-video/remove.cjs +81 -0
- package/dist/commands/webinar/recording/split.cjs +53 -0
- package/dist/commands/webinar/recording/start.cjs +53 -0
- package/dist/commands/webinar/recording/status.cjs +52 -0
- package/dist/commands/webinar/recording/stop.cjs +53 -0
- package/dist/commands/webinar/repeat.cjs +65 -0
- package/dist/commands/webinar/room/connect.cjs +60 -0
- package/dist/commands/webinar/room/info.cjs +60 -0
- package/dist/commands/webinar/room/send-recording.cjs +59 -0
- package/dist/commands/webinar/room/themes.cjs +63 -0
- package/dist/commands/webinar/section/add.cjs +98 -0
- package/dist/commands/webinar/section/list.cjs +86 -0
- package/dist/commands/webinar/section/remove.cjs +75 -0
- package/dist/commands/webinar/section/update.cjs +85 -0
- package/dist/commands/webinar/series/apply-recurrence.cjs +68 -0
- package/dist/commands/webinar/series/cancel.cjs +73 -0
- package/dist/commands/webinar/series/create.cjs +80 -0
- package/dist/commands/webinar/series/delete.cjs +73 -0
- package/dist/commands/webinar/series/list.cjs +79 -0
- package/dist/commands/webinar/series/mapped-objects.cjs +69 -0
- package/dist/commands/webinar/series/metrics.cjs +57 -0
- package/dist/commands/webinar/series/recurrences.cjs +72 -0
- package/dist/commands/webinar/series/set-ondemand.cjs +67 -0
- package/dist/commands/webinar/series/skip-recurrence.cjs +79 -0
- package/dist/commands/webinar/series/update.cjs +71 -0
- package/dist/commands/webinar/series/upload-thumbnail.cjs +117 -0
- package/dist/commands/webinar/speaker/add-from-speaker.cjs +78 -0
- package/dist/commands/webinar/speaker/add-from-user.cjs +78 -0
- package/dist/commands/webinar/speaker/add.cjs +112 -0
- package/dist/commands/webinar/speaker/cancel-guest-request.cjs +62 -0
- package/dist/commands/webinar/speaker/connection-types.cjs +66 -0
- package/dist/commands/webinar/speaker/library.cjs +59 -0
- package/dist/commands/webinar/speaker/list.cjs +90 -0
- package/dist/commands/webinar/speaker/remove-avatar.cjs +62 -0
- package/dist/commands/webinar/speaker/remove.cjs +69 -0
- package/dist/commands/webinar/speaker/request-guest.cjs +62 -0
- package/dist/commands/webinar/speaker/send-invitation.cjs +62 -0
- package/dist/commands/webinar/speaker/set-avatar.cjs +130 -0
- package/dist/commands/webinar/speaker/set-order.cjs +95 -0
- package/dist/commands/webinar/speaker/update.cjs +90 -0
- package/dist/commands/webinar/transcription/connect.cjs +69 -0
- package/dist/commands/webinar/transcription/list.cjs +88 -0
- package/dist/commands/webinar/transcription/locales.cjs +76 -0
- package/dist/commands/webinar/transcription/transcriptionlist.cjs +67 -0
- package/dist/commands/webinar/update.cjs +192 -0
- package/dist/commands/webinar/upload-image.cjs +133 -0
- package/dist/commands/workspace/list.cjs +47 -0
- package/dist/commands/workspace/use.cjs +52 -0
- package/dist/index.cjs +6 -0
- package/dist/lib/analytics-flags.cjs +60 -0
- package/dist/lib/audit.cjs +44 -0
- package/dist/lib/base-command.cjs +156 -0
- package/dist/lib/output.cjs +82 -0
- package/dist/lib/pagination.cjs +36 -0
- package/dist/lib/term-map.cjs +48 -0
- package/dist/upload/chunk-pool.cjs +47 -0
- package/dist/upload/chunked-upload.cjs +131 -0
- package/dist/upload/types.cjs +9 -0
- package/docs/commands/README.md +31 -0
- package/docs/commands/action/add.md +36 -0
- package/docs/commands/action/delete.md +32 -0
- package/docs/commands/action/exclude.md +38 -0
- package/docs/commands/action/get.md +47 -0
- package/docs/commands/action/include.md +38 -0
- package/docs/commands/action/list.md +43 -0
- package/docs/commands/action/types.md +34 -0
- package/docs/commands/action/update.md +42 -0
- package/docs/commands/action/upload.md +36 -0
- package/docs/commands/action.md +306 -0
- package/docs/commands/analytics/conversions.md +113 -0
- package/docs/commands/analytics/live.md +338 -0
- package/docs/commands/analytics/usage.md +674 -0
- package/docs/commands/analytics/video.md +449 -0
- package/docs/commands/analytics.md +1559 -0
- package/docs/commands/app/add.md +38 -0
- package/docs/commands/app/delete.md +32 -0
- package/docs/commands/app/update.md +41 -0
- package/docs/commands/app.md +101 -0
- package/docs/commands/audience/companies.md +41 -0
- package/docs/commands/audience/field.md +119 -0
- package/docs/commands/audience/funnel.md +38 -0
- package/docs/commands/audience/identity-sources.md +29 -0
- package/docs/commands/audience/list-collectors.md +35 -0
- package/docs/commands/audience/list.md +42 -0
- package/docs/commands/audience/metrics.md +40 -0
- package/docs/commands/audience/register.md +45 -0
- package/docs/commands/audience/remove.md +35 -0
- package/docs/commands/audience/search.md +39 -0
- package/docs/commands/audience/timelines.md +41 -0
- package/docs/commands/audience/unregister.md +36 -0
- package/docs/commands/audience.md +485 -0
- package/docs/commands/auth/credentials.md +23 -0
- package/docs/commands/auth/status.md +27 -0
- package/docs/commands/auth.md +45 -0
- package/docs/commands/category/create.md +36 -0
- package/docs/commands/category/delete.md +32 -0
- package/docs/commands/category/list.md +34 -0
- package/docs/commands/category/update.md +39 -0
- package/docs/commands/category.md +141 -0
- package/docs/commands/collector/exclude.md +33 -0
- package/docs/commands/collector/include.md +33 -0
- package/docs/commands/collector/list.md +37 -0
- package/docs/commands/collector.md +93 -0
- package/docs/commands/comment/add.md +43 -0
- package/docs/commands/comment/clone.md +35 -0
- package/docs/commands/comment/delete.md +32 -0
- package/docs/commands/comment/list.md +42 -0
- package/docs/commands/comment/promote.md +37 -0
- package/docs/commands/comment/reaction.md +106 -0
- package/docs/commands/comment/set-order.md +34 -0
- package/docs/commands/comment/update.md +36 -0
- package/docs/commands/comment.md +330 -0
- package/docs/commands/doctor.md +28 -0
- package/docs/commands/openupload/list.md +36 -0
- package/docs/commands/openupload/update-file.md +40 -0
- package/docs/commands/openupload/upload-file.md +39 -0
- package/docs/commands/openupload.md +105 -0
- package/docs/commands/player/delete.md +32 -0
- package/docs/commands/player/embed-versions.md +34 -0
- package/docs/commands/player/embed.md +51 -0
- package/docs/commands/player/list.md +32 -0
- package/docs/commands/player/styles.md +32 -0
- package/docs/commands/player/update.md +37 -0
- package/docs/commands/player.md +193 -0
- package/docs/commands/poll/add.md +33 -0
- package/docs/commands/poll/answer.md +38 -0
- package/docs/commands/poll/list.md +33 -0
- package/docs/commands/poll/remove.md +32 -0
- package/docs/commands/poll/set-options.md +35 -0
- package/docs/commands/poll/update.md +41 -0
- package/docs/commands/poll.md +187 -0
- package/docs/commands/presentation/page.md +29 -0
- package/docs/commands/presentation/setting.md +58 -0
- package/docs/commands/presentation.md +82 -0
- package/docs/commands/protection/protect.md +37 -0
- package/docs/commands/protection/unprotect.md +34 -0
- package/docs/commands/protection/verify.md +39 -0
- package/docs/commands/protection.md +100 -0
- package/docs/commands/session/get-token.md +38 -0
- package/docs/commands/session/redeem-token.md +32 -0
- package/docs/commands/session.md +65 -0
- package/docs/commands/setting/update.md +37 -0
- package/docs/commands/setting.md +37 -0
- package/docs/commands/site/get.md +35 -0
- package/docs/commands/site/search.md +38 -0
- package/docs/commands/site.md +68 -0
- package/docs/commands/spot/check.md +32 -0
- package/docs/commands/spot/create.md +38 -0
- package/docs/commands/spot/delete.md +32 -0
- package/docs/commands/spot/list.md +43 -0
- package/docs/commands/spot/reset-version.md +32 -0
- package/docs/commands/spot/set-videos.md +35 -0
- package/docs/commands/spot/update.md +40 -0
- package/docs/commands/spot.md +222 -0
- package/docs/commands/tag/list.md +44 -0
- package/docs/commands/tag/related.md +32 -0
- package/docs/commands/tag.md +71 -0
- package/docs/commands/thumbnail/add.md +33 -0
- package/docs/commands/thumbnail/data.md +35 -0
- package/docs/commands/thumbnail/delete.md +32 -0
- package/docs/commands/thumbnail/duplicate.md +37 -0
- package/docs/commands/thumbnail/file.md +90 -0
- package/docs/commands/thumbnail/list.md +37 -0
- package/docs/commands/thumbnail/update.md +44 -0
- package/docs/commands/thumbnail.md +293 -0
- package/docs/commands/user/create.md +41 -0
- package/docs/commands/user/get-login-token.md +37 -0
- package/docs/commands/user/get.md +37 -0
- package/docs/commands/user/list.md +40 -0
- package/docs/commands/user/redeem-login-token.md +32 -0
- package/docs/commands/user/send-invitation.md +37 -0
- package/docs/commands/user/tokens.md +34 -0
- package/docs/commands/user/update.md +44 -0
- package/docs/commands/user.md +267 -0
- package/docs/commands/video/delete.md +32 -0
- package/docs/commands/video/frame.md +37 -0
- package/docs/commands/video/get.md +32 -0
- package/docs/commands/video/list.md +33 -0
- package/docs/commands/video/replace.md +37 -0
- package/docs/commands/video/section.md +177 -0
- package/docs/commands/video/subtitle.md +362 -0
- package/docs/commands/video/transcoding-progress.md +32 -0
- package/docs/commands/video/update.md +45 -0
- package/docs/commands/video/upload.md +44 -0
- package/docs/commands/video.md +801 -0
- package/docs/commands/webhook/events.md +34 -0
- package/docs/commands/webhook/list.md +29 -0
- package/docs/commands/webhook/sample.md +32 -0
- package/docs/commands/webhook/subscribe.md +33 -0
- package/docs/commands/webhook/unsubscribe.md +35 -0
- package/docs/commands/webhook.md +143 -0
- package/docs/commands/webinar/attachment.md +135 -0
- package/docs/commands/webinar/clips.md +32 -0
- package/docs/commands/webinar/create.md +40 -0
- package/docs/commands/webinar/delete.md +32 -0
- package/docs/commands/webinar/highlights.md +37 -0
- package/docs/commands/webinar/list-formats.md +29 -0
- package/docs/commands/webinar/list.md +41 -0
- package/docs/commands/webinar/log.md +32 -0
- package/docs/commands/webinar/mail.md +238 -0
- package/docs/commands/webinar/metrics.md +32 -0
- package/docs/commands/webinar/queued-video.md +65 -0
- package/docs/commands/webinar/recording.md +113 -0
- package/docs/commands/webinar/repeat.md +35 -0
- package/docs/commands/webinar/room.md +110 -0
- package/docs/commands/webinar/section.md +134 -0
- package/docs/commands/webinar/series.md +365 -0
- package/docs/commands/webinar/speaker.md +430 -0
- package/docs/commands/webinar/transcription.md +125 -0
- package/docs/commands/webinar/update.md +43 -0
- package/docs/commands/webinar/upload-image.md +42 -0
- package/docs/commands/webinar.md +2030 -0
- package/docs/commands/workspace/list.md +27 -0
- package/docs/commands/workspace/use.md +32 -0
- package/docs/commands/workspace.md +54 -0
- package/docs/guides/api-spec-upgrade.md +92 -0
- package/docs/guides/getting-started.md +66 -0
- package/oclif.manifest.json +21609 -0
- package/package.json +71 -0
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
`twentythree webinar:mail`
|
|
2
|
+
==========================
|
|
3
|
+
|
|
4
|
+
Add an email to a webinar
|
|
5
|
+
|
|
6
|
+
* [`twentythree webinar mail add [ID]`](#twentythree-webinar-mail-add-id)
|
|
7
|
+
* [`twentythree webinar mail list [ID]`](#twentythree-webinar-mail-list-id)
|
|
8
|
+
* [`twentythree webinar mail preview ID`](#twentythree-webinar-mail-preview-id)
|
|
9
|
+
* [`twentythree webinar mail remove ID`](#twentythree-webinar-mail-remove-id)
|
|
10
|
+
* [`twentythree webinar mail send ID`](#twentythree-webinar-mail-send-id)
|
|
11
|
+
* [`twentythree webinar mail test ID`](#twentythree-webinar-mail-test-id)
|
|
12
|
+
* [`twentythree webinar mail update ID`](#twentythree-webinar-mail-update-id)
|
|
13
|
+
|
|
14
|
+
## `twentythree webinar mail add [ID]`
|
|
15
|
+
|
|
16
|
+
Add an email to a webinar
|
|
17
|
+
|
|
18
|
+
```
|
|
19
|
+
USAGE
|
|
20
|
+
$ twentythree webinar mail add [ID] [--json] [-w <value>] [--series-id <value>] [--subject <value>] [--message
|
|
21
|
+
<value>]
|
|
22
|
+
|
|
23
|
+
ARGUMENTS
|
|
24
|
+
[ID] Webinar ID (omit when using --series-id)
|
|
25
|
+
|
|
26
|
+
FLAGS
|
|
27
|
+
--message=<value> Email message body
|
|
28
|
+
--series-id=<value> Series ID — add mail to a series instead of a webinar
|
|
29
|
+
--subject=<value> Email subject
|
|
30
|
+
|
|
31
|
+
GLOBAL FLAGS
|
|
32
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
33
|
+
--json Format output as json.
|
|
34
|
+
|
|
35
|
+
DESCRIPTION
|
|
36
|
+
Add an email to a webinar
|
|
37
|
+
|
|
38
|
+
EXAMPLES
|
|
39
|
+
$ twentythree webinar mail add 12345 --subject "Reminder" --message "Join us tomorrow!"
|
|
40
|
+
|
|
41
|
+
$ twentythree webinar mail add --series-id 67890 --subject "Reminder"
|
|
42
|
+
|
|
43
|
+
$ twentythree webinar mail add 12345 --subject "Reminder" --message "Join us!" --json
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
_See code: [src/commands/webinar/mail/add.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/mail/add.ts)_
|
|
47
|
+
|
|
48
|
+
## `twentythree webinar mail list [ID]`
|
|
49
|
+
|
|
50
|
+
List emails for a webinar
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
USAGE
|
|
54
|
+
$ twentythree webinar mail list [ID] [--json] [-w <value>] [--series-id <value>]
|
|
55
|
+
|
|
56
|
+
ARGUMENTS
|
|
57
|
+
[ID] Webinar ID (omit when using --series-id)
|
|
58
|
+
|
|
59
|
+
FLAGS
|
|
60
|
+
--series-id=<value> Series ID — list mails for a series instead of a webinar
|
|
61
|
+
|
|
62
|
+
GLOBAL FLAGS
|
|
63
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
64
|
+
--json Format output as json.
|
|
65
|
+
|
|
66
|
+
DESCRIPTION
|
|
67
|
+
List emails for a webinar
|
|
68
|
+
|
|
69
|
+
EXAMPLES
|
|
70
|
+
$ twentythree webinar mail list 12345
|
|
71
|
+
|
|
72
|
+
$ twentythree webinar mail list --series-id 67890
|
|
73
|
+
|
|
74
|
+
$ twentythree webinar mail list 12345 --json
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
_See code: [src/commands/webinar/mail/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/mail/list.ts)_
|
|
78
|
+
|
|
79
|
+
## `twentythree webinar mail preview ID`
|
|
80
|
+
|
|
81
|
+
Preview a webinar email as raw HTML
|
|
82
|
+
|
|
83
|
+
```
|
|
84
|
+
USAGE
|
|
85
|
+
$ twentythree webinar mail preview ID [--json] [-w <value>] [--webinar-id <value> | --series-id <value>]
|
|
86
|
+
|
|
87
|
+
ARGUMENTS
|
|
88
|
+
ID Mail ID
|
|
89
|
+
|
|
90
|
+
FLAGS
|
|
91
|
+
--series-id=<value> Series ID (mutually exclusive with --webinar-id)
|
|
92
|
+
--webinar-id=<value> Webinar ID (mutually exclusive with --series-id)
|
|
93
|
+
|
|
94
|
+
GLOBAL FLAGS
|
|
95
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
96
|
+
--json Format output as json.
|
|
97
|
+
|
|
98
|
+
DESCRIPTION
|
|
99
|
+
Preview a webinar email as raw HTML
|
|
100
|
+
|
|
101
|
+
EXAMPLES
|
|
102
|
+
$ twentythree webinar mail preview 555 --webinar-id 12345
|
|
103
|
+
|
|
104
|
+
$ twentythree webinar mail preview 555 --series-id 67890 > preview.html
|
|
105
|
+
|
|
106
|
+
$ twentythree webinar mail preview 555 --webinar-id 12345 --json
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
_See code: [src/commands/webinar/mail/preview.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/mail/preview.ts)_
|
|
110
|
+
|
|
111
|
+
## `twentythree webinar mail remove ID`
|
|
112
|
+
|
|
113
|
+
Remove an email from a webinar
|
|
114
|
+
|
|
115
|
+
```
|
|
116
|
+
USAGE
|
|
117
|
+
$ twentythree webinar mail remove ID [--json] [-w <value>] [--webinar-id <value> | --series-id <value>]
|
|
118
|
+
|
|
119
|
+
ARGUMENTS
|
|
120
|
+
ID Mail ID
|
|
121
|
+
|
|
122
|
+
FLAGS
|
|
123
|
+
--series-id=<value> Series ID (mutually exclusive with --webinar-id)
|
|
124
|
+
--webinar-id=<value> Webinar ID (mutually exclusive with --series-id)
|
|
125
|
+
|
|
126
|
+
GLOBAL FLAGS
|
|
127
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
128
|
+
--json Format output as json.
|
|
129
|
+
|
|
130
|
+
DESCRIPTION
|
|
131
|
+
Remove an email from a webinar
|
|
132
|
+
|
|
133
|
+
EXAMPLES
|
|
134
|
+
$ twentythree webinar mail remove 555 --webinar-id 12345
|
|
135
|
+
|
|
136
|
+
$ twentythree webinar mail remove 555 --series-id 67890 --json
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
_See code: [src/commands/webinar/mail/remove.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/mail/remove.ts)_
|
|
140
|
+
|
|
141
|
+
## `twentythree webinar mail send ID`
|
|
142
|
+
|
|
143
|
+
Send a webinar email
|
|
144
|
+
|
|
145
|
+
```
|
|
146
|
+
USAGE
|
|
147
|
+
$ twentythree webinar mail send ID [--json] [-w <value>] [--webinar-id <value> | --series-id <value>]
|
|
148
|
+
|
|
149
|
+
ARGUMENTS
|
|
150
|
+
ID Mail ID
|
|
151
|
+
|
|
152
|
+
FLAGS
|
|
153
|
+
--series-id=<value> Series ID (mutually exclusive with --webinar-id)
|
|
154
|
+
--webinar-id=<value> Webinar ID (mutually exclusive with --series-id)
|
|
155
|
+
|
|
156
|
+
GLOBAL FLAGS
|
|
157
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
158
|
+
--json Format output as json.
|
|
159
|
+
|
|
160
|
+
DESCRIPTION
|
|
161
|
+
Send a webinar email
|
|
162
|
+
|
|
163
|
+
EXAMPLES
|
|
164
|
+
$ twentythree webinar mail send 555 --webinar-id 12345
|
|
165
|
+
|
|
166
|
+
$ twentythree webinar mail send 555 --series-id 67890 --json
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
_See code: [src/commands/webinar/mail/send.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/mail/send.ts)_
|
|
170
|
+
|
|
171
|
+
## `twentythree webinar mail test ID`
|
|
172
|
+
|
|
173
|
+
Send a test email
|
|
174
|
+
|
|
175
|
+
```
|
|
176
|
+
USAGE
|
|
177
|
+
$ twentythree webinar mail test ID [--json] [-w <value>] [--webinar-id <value> | --series-id <value>] [--email
|
|
178
|
+
<value>]
|
|
179
|
+
|
|
180
|
+
ARGUMENTS
|
|
181
|
+
ID Mail ID
|
|
182
|
+
|
|
183
|
+
FLAGS
|
|
184
|
+
--email=<value> Recipient email for test
|
|
185
|
+
--series-id=<value> Series ID (mutually exclusive with --webinar-id)
|
|
186
|
+
--webinar-id=<value> Webinar ID (mutually exclusive with --series-id)
|
|
187
|
+
|
|
188
|
+
GLOBAL FLAGS
|
|
189
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
190
|
+
--json Format output as json.
|
|
191
|
+
|
|
192
|
+
DESCRIPTION
|
|
193
|
+
Send a test email
|
|
194
|
+
|
|
195
|
+
EXAMPLES
|
|
196
|
+
$ twentythree webinar mail test 555 --webinar-id 12345 --email me@example.com
|
|
197
|
+
|
|
198
|
+
$ twentythree webinar mail test 555 --series-id 67890
|
|
199
|
+
|
|
200
|
+
$ twentythree webinar mail test 555 --webinar-id 12345 --email me@example.com --json
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
_See code: [src/commands/webinar/mail/test.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/mail/test.ts)_
|
|
204
|
+
|
|
205
|
+
## `twentythree webinar mail update ID`
|
|
206
|
+
|
|
207
|
+
Update a webinar email
|
|
208
|
+
|
|
209
|
+
```
|
|
210
|
+
USAGE
|
|
211
|
+
$ twentythree webinar mail update ID [--json] [-w <value>] [--webinar-id <value> | --series-id <value>] [--subject
|
|
212
|
+
<value>] [--message <value>]
|
|
213
|
+
|
|
214
|
+
ARGUMENTS
|
|
215
|
+
ID Mail ID
|
|
216
|
+
|
|
217
|
+
FLAGS
|
|
218
|
+
--message=<value> Email message body
|
|
219
|
+
--series-id=<value> Series ID (mutually exclusive with --webinar-id)
|
|
220
|
+
--subject=<value> Email subject
|
|
221
|
+
--webinar-id=<value> Webinar ID (mutually exclusive with --series-id)
|
|
222
|
+
|
|
223
|
+
GLOBAL FLAGS
|
|
224
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
225
|
+
--json Format output as json.
|
|
226
|
+
|
|
227
|
+
DESCRIPTION
|
|
228
|
+
Update a webinar email
|
|
229
|
+
|
|
230
|
+
EXAMPLES
|
|
231
|
+
$ twentythree webinar mail update 555 --webinar-id 12345 --subject "Updated Subject"
|
|
232
|
+
|
|
233
|
+
$ twentythree webinar mail update 555 --series-id 67890 --message "New content"
|
|
234
|
+
|
|
235
|
+
$ twentythree webinar mail update 555 --webinar-id 12345 --subject "Updated" --json
|
|
236
|
+
```
|
|
237
|
+
|
|
238
|
+
_See code: [src/commands/webinar/mail/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/mail/update.ts)_
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
`twentythree webinar:metrics`
|
|
2
|
+
=============================
|
|
3
|
+
|
|
4
|
+
Retrieve metrics for a webinar
|
|
5
|
+
|
|
6
|
+
* [`twentythree webinar metrics ID`](#twentythree-webinar-metrics-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree webinar metrics ID`
|
|
9
|
+
|
|
10
|
+
Retrieve metrics for a webinar
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree webinar metrics ID [--json] [-w <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Webinar ID
|
|
18
|
+
|
|
19
|
+
GLOBAL FLAGS
|
|
20
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
21
|
+
--json Format output as json.
|
|
22
|
+
|
|
23
|
+
DESCRIPTION
|
|
24
|
+
Retrieve metrics for a webinar
|
|
25
|
+
|
|
26
|
+
EXAMPLES
|
|
27
|
+
$ twentythree webinar metrics 12345
|
|
28
|
+
|
|
29
|
+
$ twentythree webinar metrics 12345 --json
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
_See code: [src/commands/webinar/metrics.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/metrics.ts)_
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
`twentythree webinar:queued-video`
|
|
2
|
+
==================================
|
|
3
|
+
|
|
4
|
+
Add a queued video to a webinar
|
|
5
|
+
|
|
6
|
+
* [`twentythree webinar queued-video add ID`](#twentythree-webinar-queued-video-add-id)
|
|
7
|
+
* [`twentythree webinar queued-video remove ID`](#twentythree-webinar-queued-video-remove-id)
|
|
8
|
+
|
|
9
|
+
## `twentythree webinar queued-video add ID`
|
|
10
|
+
|
|
11
|
+
Add a queued video to a webinar
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
USAGE
|
|
15
|
+
$ twentythree webinar queued-video add ID [--json] [-w <value>] [--video-id <value>]
|
|
16
|
+
|
|
17
|
+
ARGUMENTS
|
|
18
|
+
ID Webinar ID
|
|
19
|
+
|
|
20
|
+
FLAGS
|
|
21
|
+
--video-id=<value> Video ID to queue
|
|
22
|
+
|
|
23
|
+
GLOBAL FLAGS
|
|
24
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
25
|
+
--json Format output as json.
|
|
26
|
+
|
|
27
|
+
DESCRIPTION
|
|
28
|
+
Add a queued video to a webinar
|
|
29
|
+
|
|
30
|
+
EXAMPLES
|
|
31
|
+
$ twentythree webinar queued-video add 12345 --video-id 67890
|
|
32
|
+
|
|
33
|
+
$ twentythree webinar queued-video add 12345 --video-id 67890 --json
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
_See code: [src/commands/webinar/queued-video/add.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/queued-video/add.ts)_
|
|
37
|
+
|
|
38
|
+
## `twentythree webinar queued-video remove ID`
|
|
39
|
+
|
|
40
|
+
Remove a queued video from a webinar
|
|
41
|
+
|
|
42
|
+
```
|
|
43
|
+
USAGE
|
|
44
|
+
$ twentythree webinar queued-video remove ID [--json] [-w <value>] [--video-id <value>]
|
|
45
|
+
|
|
46
|
+
ARGUMENTS
|
|
47
|
+
ID Webinar ID
|
|
48
|
+
|
|
49
|
+
FLAGS
|
|
50
|
+
--video-id=<value> Video ID to remove from queue
|
|
51
|
+
|
|
52
|
+
GLOBAL FLAGS
|
|
53
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
54
|
+
--json Format output as json.
|
|
55
|
+
|
|
56
|
+
DESCRIPTION
|
|
57
|
+
Remove a queued video from a webinar
|
|
58
|
+
|
|
59
|
+
EXAMPLES
|
|
60
|
+
$ twentythree webinar queued-video remove 12345 --video-id 67890
|
|
61
|
+
|
|
62
|
+
$ twentythree webinar queued-video remove 12345 --video-id 67890 --json
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
_See code: [src/commands/webinar/queued-video/remove.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/queued-video/remove.ts)_
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
`twentythree webinar:recording`
|
|
2
|
+
===============================
|
|
3
|
+
|
|
4
|
+
Split the current recording into a new segment
|
|
5
|
+
|
|
6
|
+
* [`twentythree webinar recording split ID`](#twentythree-webinar-recording-split-id)
|
|
7
|
+
* [`twentythree webinar recording start ID`](#twentythree-webinar-recording-start-id)
|
|
8
|
+
* [`twentythree webinar recording status ID`](#twentythree-webinar-recording-status-id)
|
|
9
|
+
* [`twentythree webinar recording stop ID`](#twentythree-webinar-recording-stop-id)
|
|
10
|
+
|
|
11
|
+
## `twentythree webinar recording split ID`
|
|
12
|
+
|
|
13
|
+
Split the current recording into a new segment
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
USAGE
|
|
17
|
+
$ twentythree webinar recording split ID [--json] [-w <value>]
|
|
18
|
+
|
|
19
|
+
ARGUMENTS
|
|
20
|
+
ID Webinar ID
|
|
21
|
+
|
|
22
|
+
GLOBAL FLAGS
|
|
23
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
24
|
+
--json Format output as json.
|
|
25
|
+
|
|
26
|
+
DESCRIPTION
|
|
27
|
+
Split the current recording into a new segment
|
|
28
|
+
|
|
29
|
+
EXAMPLES
|
|
30
|
+
$ twentythree webinar recording split 12345
|
|
31
|
+
|
|
32
|
+
$ twentythree webinar recording split 12345 --json
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
_See code: [src/commands/webinar/recording/split.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/recording/split.ts)_
|
|
36
|
+
|
|
37
|
+
## `twentythree webinar recording start ID`
|
|
38
|
+
|
|
39
|
+
Start recording a webinar
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
USAGE
|
|
43
|
+
$ twentythree webinar recording start ID [--json] [-w <value>]
|
|
44
|
+
|
|
45
|
+
ARGUMENTS
|
|
46
|
+
ID Webinar ID
|
|
47
|
+
|
|
48
|
+
GLOBAL FLAGS
|
|
49
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
50
|
+
--json Format output as json.
|
|
51
|
+
|
|
52
|
+
DESCRIPTION
|
|
53
|
+
Start recording a webinar
|
|
54
|
+
|
|
55
|
+
EXAMPLES
|
|
56
|
+
$ twentythree webinar recording start 12345
|
|
57
|
+
|
|
58
|
+
$ twentythree webinar recording start 12345 --json
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
_See code: [src/commands/webinar/recording/start.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/recording/start.ts)_
|
|
62
|
+
|
|
63
|
+
## `twentythree webinar recording status ID`
|
|
64
|
+
|
|
65
|
+
Get recording status for a webinar
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
USAGE
|
|
69
|
+
$ twentythree webinar recording status ID [--json] [-w <value>]
|
|
70
|
+
|
|
71
|
+
ARGUMENTS
|
|
72
|
+
ID Webinar ID
|
|
73
|
+
|
|
74
|
+
GLOBAL FLAGS
|
|
75
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
76
|
+
--json Format output as json.
|
|
77
|
+
|
|
78
|
+
DESCRIPTION
|
|
79
|
+
Get recording status for a webinar
|
|
80
|
+
|
|
81
|
+
EXAMPLES
|
|
82
|
+
$ twentythree webinar recording status 12345
|
|
83
|
+
|
|
84
|
+
$ twentythree webinar recording status 12345 --json
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
_See code: [src/commands/webinar/recording/status.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/recording/status.ts)_
|
|
88
|
+
|
|
89
|
+
## `twentythree webinar recording stop ID`
|
|
90
|
+
|
|
91
|
+
Stop recording a webinar
|
|
92
|
+
|
|
93
|
+
```
|
|
94
|
+
USAGE
|
|
95
|
+
$ twentythree webinar recording stop ID [--json] [-w <value>]
|
|
96
|
+
|
|
97
|
+
ARGUMENTS
|
|
98
|
+
ID Webinar ID
|
|
99
|
+
|
|
100
|
+
GLOBAL FLAGS
|
|
101
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
102
|
+
--json Format output as json.
|
|
103
|
+
|
|
104
|
+
DESCRIPTION
|
|
105
|
+
Stop recording a webinar
|
|
106
|
+
|
|
107
|
+
EXAMPLES
|
|
108
|
+
$ twentythree webinar recording stop 12345
|
|
109
|
+
|
|
110
|
+
$ twentythree webinar recording stop 12345 --json
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
_See code: [src/commands/webinar/recording/stop.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/recording/stop.ts)_
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
`twentythree webinar:repeat`
|
|
2
|
+
============================
|
|
3
|
+
|
|
4
|
+
Duplicate a webinar and schedule the copy at a new date/time
|
|
5
|
+
|
|
6
|
+
* [`twentythree webinar repeat ID`](#twentythree-webinar-repeat-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree webinar repeat ID`
|
|
9
|
+
|
|
10
|
+
Duplicate a webinar and schedule the copy at a new date/time
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree webinar repeat ID --date <value> [--json] [-w <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Webinar ID
|
|
18
|
+
|
|
19
|
+
FLAGS
|
|
20
|
+
--date=<value> (required) Schedule date/time for the new webinar (ISO 8601)
|
|
21
|
+
|
|
22
|
+
GLOBAL FLAGS
|
|
23
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
24
|
+
--json Format output as json.
|
|
25
|
+
|
|
26
|
+
DESCRIPTION
|
|
27
|
+
Duplicate a webinar and schedule the copy at a new date/time
|
|
28
|
+
|
|
29
|
+
EXAMPLES
|
|
30
|
+
$ twentythree webinar repeat 12345 --date "2024-12-01T14:00:00Z"
|
|
31
|
+
|
|
32
|
+
$ twentythree webinar repeat 12345 --date "2024-12-01T14:00:00Z" --json
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
_See code: [src/commands/webinar/repeat.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/repeat.ts)_
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
`twentythree webinar:room`
|
|
2
|
+
==========================
|
|
3
|
+
|
|
4
|
+
Get connection info for a webinar room
|
|
5
|
+
|
|
6
|
+
* [`twentythree webinar room connect ID`](#twentythree-webinar-room-connect-id)
|
|
7
|
+
* [`twentythree webinar room info ID`](#twentythree-webinar-room-info-id)
|
|
8
|
+
* [`twentythree webinar room send-recording ID`](#twentythree-webinar-room-send-recording-id)
|
|
9
|
+
* [`twentythree webinar room themes`](#twentythree-webinar-room-themes)
|
|
10
|
+
|
|
11
|
+
## `twentythree webinar room connect ID`
|
|
12
|
+
|
|
13
|
+
Get connection info for a webinar room
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
USAGE
|
|
17
|
+
$ twentythree webinar room connect ID [--json] [-w <value>]
|
|
18
|
+
|
|
19
|
+
ARGUMENTS
|
|
20
|
+
ID Webinar ID
|
|
21
|
+
|
|
22
|
+
GLOBAL FLAGS
|
|
23
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
24
|
+
--json Format output as json.
|
|
25
|
+
|
|
26
|
+
DESCRIPTION
|
|
27
|
+
Get connection info for a webinar room
|
|
28
|
+
|
|
29
|
+
EXAMPLES
|
|
30
|
+
$ twentythree webinar room connect 12345
|
|
31
|
+
|
|
32
|
+
$ twentythree webinar room connect 12345 --json
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
_See code: [src/commands/webinar/room/connect.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/room/connect.ts)_
|
|
36
|
+
|
|
37
|
+
## `twentythree webinar room info ID`
|
|
38
|
+
|
|
39
|
+
Get room information for a webinar
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
USAGE
|
|
43
|
+
$ twentythree webinar room info ID [--json] [-w <value>]
|
|
44
|
+
|
|
45
|
+
ARGUMENTS
|
|
46
|
+
ID Webinar ID
|
|
47
|
+
|
|
48
|
+
GLOBAL FLAGS
|
|
49
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
50
|
+
--json Format output as json.
|
|
51
|
+
|
|
52
|
+
DESCRIPTION
|
|
53
|
+
Get room information for a webinar
|
|
54
|
+
|
|
55
|
+
EXAMPLES
|
|
56
|
+
$ twentythree webinar room info 12345
|
|
57
|
+
|
|
58
|
+
$ twentythree webinar room info 12345 --json
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
_See code: [src/commands/webinar/room/info.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/room/info.ts)_
|
|
62
|
+
|
|
63
|
+
## `twentythree webinar room send-recording ID`
|
|
64
|
+
|
|
65
|
+
Send a recording from the webinar room
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
USAGE
|
|
69
|
+
$ twentythree webinar room send-recording ID [--json] [-w <value>]
|
|
70
|
+
|
|
71
|
+
ARGUMENTS
|
|
72
|
+
ID Webinar ID
|
|
73
|
+
|
|
74
|
+
GLOBAL FLAGS
|
|
75
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
76
|
+
--json Format output as json.
|
|
77
|
+
|
|
78
|
+
DESCRIPTION
|
|
79
|
+
Send a recording from the webinar room
|
|
80
|
+
|
|
81
|
+
EXAMPLES
|
|
82
|
+
$ twentythree webinar room send-recording 12345
|
|
83
|
+
|
|
84
|
+
$ twentythree webinar room send-recording 12345 --json
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
_See code: [src/commands/webinar/room/send-recording.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/room/send-recording.ts)_
|
|
88
|
+
|
|
89
|
+
## `twentythree webinar room themes`
|
|
90
|
+
|
|
91
|
+
List available room themes
|
|
92
|
+
|
|
93
|
+
```
|
|
94
|
+
USAGE
|
|
95
|
+
$ twentythree webinar room themes [--json] [-w <value>]
|
|
96
|
+
|
|
97
|
+
GLOBAL FLAGS
|
|
98
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
99
|
+
--json Format output as json.
|
|
100
|
+
|
|
101
|
+
DESCRIPTION
|
|
102
|
+
List available room themes
|
|
103
|
+
|
|
104
|
+
EXAMPLES
|
|
105
|
+
$ twentythree webinar room themes
|
|
106
|
+
|
|
107
|
+
$ twentythree webinar room themes --json
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
_See code: [src/commands/webinar/room/themes.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/room/themes.ts)_
|