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,430 @@
|
|
|
1
|
+
`twentythree webinar:speaker`
|
|
2
|
+
=============================
|
|
3
|
+
|
|
4
|
+
Add a speaker to a webinar
|
|
5
|
+
|
|
6
|
+
* [`twentythree webinar speaker add ID`](#twentythree-webinar-speaker-add-id)
|
|
7
|
+
* [`twentythree webinar speaker add-from-speaker ID`](#twentythree-webinar-speaker-add-from-speaker-id)
|
|
8
|
+
* [`twentythree webinar speaker add-from-user ID`](#twentythree-webinar-speaker-add-from-user-id)
|
|
9
|
+
* [`twentythree webinar speaker cancel-guest-request WEBINARID ID`](#twentythree-webinar-speaker-cancel-guest-request-webinarid-id)
|
|
10
|
+
* [`twentythree webinar speaker connection-types ID`](#twentythree-webinar-speaker-connection-types-id)
|
|
11
|
+
* [`twentythree webinar speaker library`](#twentythree-webinar-speaker-library)
|
|
12
|
+
* [`twentythree webinar speaker list ID`](#twentythree-webinar-speaker-list-id)
|
|
13
|
+
* [`twentythree webinar speaker remove WEBINARID ID`](#twentythree-webinar-speaker-remove-webinarid-id)
|
|
14
|
+
* [`twentythree webinar speaker remove-avatar WEBINARID ID`](#twentythree-webinar-speaker-remove-avatar-webinarid-id)
|
|
15
|
+
* [`twentythree webinar speaker request-guest WEBINARID ID`](#twentythree-webinar-speaker-request-guest-webinarid-id)
|
|
16
|
+
* [`twentythree webinar speaker send-invitation WEBINARID ID`](#twentythree-webinar-speaker-send-invitation-webinarid-id)
|
|
17
|
+
* [`twentythree webinar speaker set-avatar WEBINARID ID FILE`](#twentythree-webinar-speaker-set-avatar-webinarid-id-file)
|
|
18
|
+
* [`twentythree webinar speaker set-order ID`](#twentythree-webinar-speaker-set-order-id)
|
|
19
|
+
* [`twentythree webinar speaker update WEBINARID ID`](#twentythree-webinar-speaker-update-webinarid-id)
|
|
20
|
+
|
|
21
|
+
## `twentythree webinar speaker add ID`
|
|
22
|
+
|
|
23
|
+
Add a speaker to a webinar
|
|
24
|
+
|
|
25
|
+
```
|
|
26
|
+
USAGE
|
|
27
|
+
$ twentythree webinar speaker add ID [--json] [-w <value>] [--name <value>] [--email <value>] [--title <value>]
|
|
28
|
+
[--description <value>]
|
|
29
|
+
|
|
30
|
+
ARGUMENTS
|
|
31
|
+
ID Webinar ID
|
|
32
|
+
|
|
33
|
+
FLAGS
|
|
34
|
+
--description=<value> Speaker bio or description
|
|
35
|
+
--email=<value> Speaker email
|
|
36
|
+
--name=<value> Speaker name
|
|
37
|
+
--title=<value> Speaker title or job title
|
|
38
|
+
|
|
39
|
+
GLOBAL FLAGS
|
|
40
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
41
|
+
--json Format output as json.
|
|
42
|
+
|
|
43
|
+
DESCRIPTION
|
|
44
|
+
Add a speaker to a webinar
|
|
45
|
+
|
|
46
|
+
EXAMPLES
|
|
47
|
+
$ twentythree webinar speaker add 12345 --name "Jane Doe" --email jane@example.com
|
|
48
|
+
|
|
49
|
+
$ twentythree webinar speaker add 12345
|
|
50
|
+
|
|
51
|
+
$ twentythree webinar speaker add 12345 --name "Jane Doe" --email jane@example.com --json
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
_See code: [src/commands/webinar/speaker/add.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/add.ts)_
|
|
55
|
+
|
|
56
|
+
## `twentythree webinar speaker add-from-speaker ID`
|
|
57
|
+
|
|
58
|
+
Add a speaker from the workspace speaker library
|
|
59
|
+
|
|
60
|
+
```
|
|
61
|
+
USAGE
|
|
62
|
+
$ twentythree webinar speaker add-from-speaker ID [--json] [-w <value>] [--speaker-id <value>]
|
|
63
|
+
|
|
64
|
+
ARGUMENTS
|
|
65
|
+
ID Webinar ID
|
|
66
|
+
|
|
67
|
+
FLAGS
|
|
68
|
+
--speaker-id=<value> Library speaker ID to add
|
|
69
|
+
|
|
70
|
+
GLOBAL FLAGS
|
|
71
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
72
|
+
--json Format output as json.
|
|
73
|
+
|
|
74
|
+
DESCRIPTION
|
|
75
|
+
Add a speaker from the workspace speaker library
|
|
76
|
+
|
|
77
|
+
EXAMPLES
|
|
78
|
+
$ twentythree webinar speaker add-from-speaker 12345 --speaker-id 99
|
|
79
|
+
|
|
80
|
+
$ twentythree webinar speaker add-from-speaker 12345
|
|
81
|
+
|
|
82
|
+
$ twentythree webinar speaker add-from-speaker 12345 --speaker-id 99 --json
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
_See code: [src/commands/webinar/speaker/add-from-speaker.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/add-from-speaker.ts)_
|
|
86
|
+
|
|
87
|
+
## `twentythree webinar speaker add-from-user ID`
|
|
88
|
+
|
|
89
|
+
Add a workspace user as a speaker on a webinar
|
|
90
|
+
|
|
91
|
+
```
|
|
92
|
+
USAGE
|
|
93
|
+
$ twentythree webinar speaker add-from-user ID [--json] [-w <value>] [--user-id <value>]
|
|
94
|
+
|
|
95
|
+
ARGUMENTS
|
|
96
|
+
ID Webinar ID
|
|
97
|
+
|
|
98
|
+
FLAGS
|
|
99
|
+
--user-id=<value> User ID to add as speaker
|
|
100
|
+
|
|
101
|
+
GLOBAL FLAGS
|
|
102
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
103
|
+
--json Format output as json.
|
|
104
|
+
|
|
105
|
+
DESCRIPTION
|
|
106
|
+
Add a workspace user as a speaker on a webinar
|
|
107
|
+
|
|
108
|
+
EXAMPLES
|
|
109
|
+
$ twentythree webinar speaker add-from-user 12345 --user-id 42
|
|
110
|
+
|
|
111
|
+
$ twentythree webinar speaker add-from-user 12345
|
|
112
|
+
|
|
113
|
+
$ twentythree webinar speaker add-from-user 12345 --user-id 42 --json
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
_See code: [src/commands/webinar/speaker/add-from-user.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/add-from-user.ts)_
|
|
117
|
+
|
|
118
|
+
## `twentythree webinar speaker cancel-guest-request WEBINARID ID`
|
|
119
|
+
|
|
120
|
+
Cancel a guest request for a speaker
|
|
121
|
+
|
|
122
|
+
```
|
|
123
|
+
USAGE
|
|
124
|
+
$ twentythree webinar speaker cancel-guest-request WEBINARID ID [--json] [-w <value>]
|
|
125
|
+
|
|
126
|
+
ARGUMENTS
|
|
127
|
+
WEBINARID Webinar ID
|
|
128
|
+
ID Speaker ID
|
|
129
|
+
|
|
130
|
+
GLOBAL FLAGS
|
|
131
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
132
|
+
--json Format output as json.
|
|
133
|
+
|
|
134
|
+
DESCRIPTION
|
|
135
|
+
Cancel a guest request for a speaker
|
|
136
|
+
|
|
137
|
+
EXAMPLES
|
|
138
|
+
$ twentythree webinar speaker cancel-guest-request 12345 9900
|
|
139
|
+
|
|
140
|
+
$ twentythree webinar speaker cancel-guest-request 12345 9900 --json
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
_See code: [src/commands/webinar/speaker/cancel-guest-request.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/cancel-guest-request.ts)_
|
|
144
|
+
|
|
145
|
+
## `twentythree webinar speaker connection-types ID`
|
|
146
|
+
|
|
147
|
+
List available speaker connection types
|
|
148
|
+
|
|
149
|
+
```
|
|
150
|
+
USAGE
|
|
151
|
+
$ twentythree webinar speaker connection-types ID [--json] [-w <value>]
|
|
152
|
+
|
|
153
|
+
ARGUMENTS
|
|
154
|
+
ID Webinar 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
|
+
List available speaker connection types
|
|
162
|
+
|
|
163
|
+
EXAMPLES
|
|
164
|
+
$ twentythree webinar speaker connection-types 12345
|
|
165
|
+
|
|
166
|
+
$ twentythree webinar speaker connection-types 12345 --json
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
_See code: [src/commands/webinar/speaker/connection-types.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/connection-types.ts)_
|
|
170
|
+
|
|
171
|
+
## `twentythree webinar speaker library`
|
|
172
|
+
|
|
173
|
+
List speakers in the workspace library
|
|
174
|
+
|
|
175
|
+
```
|
|
176
|
+
USAGE
|
|
177
|
+
$ twentythree webinar speaker library [--json] [-w <value>]
|
|
178
|
+
|
|
179
|
+
GLOBAL FLAGS
|
|
180
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
181
|
+
--json Format output as json.
|
|
182
|
+
|
|
183
|
+
DESCRIPTION
|
|
184
|
+
List speakers in the workspace library
|
|
185
|
+
|
|
186
|
+
EXAMPLES
|
|
187
|
+
$ twentythree webinar speaker library
|
|
188
|
+
|
|
189
|
+
$ twentythree webinar speaker library --json
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
_See code: [src/commands/webinar/speaker/library.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/library.ts)_
|
|
193
|
+
|
|
194
|
+
## `twentythree webinar speaker list ID`
|
|
195
|
+
|
|
196
|
+
List speakers for a webinar
|
|
197
|
+
|
|
198
|
+
```
|
|
199
|
+
USAGE
|
|
200
|
+
$ twentythree webinar speaker list ID [--json] [-w <value>] [--token <value>]
|
|
201
|
+
|
|
202
|
+
ARGUMENTS
|
|
203
|
+
ID Webinar ID
|
|
204
|
+
|
|
205
|
+
FLAGS
|
|
206
|
+
--token=<value> Webinar token (auto-looked up if omitted)
|
|
207
|
+
|
|
208
|
+
GLOBAL FLAGS
|
|
209
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
210
|
+
--json Format output as json.
|
|
211
|
+
|
|
212
|
+
DESCRIPTION
|
|
213
|
+
List speakers for a webinar
|
|
214
|
+
|
|
215
|
+
EXAMPLES
|
|
216
|
+
$ twentythree webinar speaker list 12345
|
|
217
|
+
|
|
218
|
+
$ twentythree webinar speaker list 12345 --json
|
|
219
|
+
```
|
|
220
|
+
|
|
221
|
+
_See code: [src/commands/webinar/speaker/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/list.ts)_
|
|
222
|
+
|
|
223
|
+
## `twentythree webinar speaker remove WEBINARID ID`
|
|
224
|
+
|
|
225
|
+
Remove a speaker from a webinar
|
|
226
|
+
|
|
227
|
+
```
|
|
228
|
+
USAGE
|
|
229
|
+
$ twentythree webinar speaker remove WEBINARID ID [--json] [-w <value>]
|
|
230
|
+
|
|
231
|
+
ARGUMENTS
|
|
232
|
+
WEBINARID Webinar ID
|
|
233
|
+
ID Speaker ID
|
|
234
|
+
|
|
235
|
+
GLOBAL FLAGS
|
|
236
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
237
|
+
--json Format output as json.
|
|
238
|
+
|
|
239
|
+
DESCRIPTION
|
|
240
|
+
Remove a speaker from a webinar
|
|
241
|
+
|
|
242
|
+
EXAMPLES
|
|
243
|
+
$ twentythree webinar speaker remove 12345 9900
|
|
244
|
+
|
|
245
|
+
$ twentythree webinar speaker remove 12345 9900 --json
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
_See code: [src/commands/webinar/speaker/remove.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/remove.ts)_
|
|
249
|
+
|
|
250
|
+
## `twentythree webinar speaker remove-avatar WEBINARID ID`
|
|
251
|
+
|
|
252
|
+
Remove the avatar image from a speaker
|
|
253
|
+
|
|
254
|
+
```
|
|
255
|
+
USAGE
|
|
256
|
+
$ twentythree webinar speaker remove-avatar WEBINARID ID [--json] [-w <value>]
|
|
257
|
+
|
|
258
|
+
ARGUMENTS
|
|
259
|
+
WEBINARID Webinar ID
|
|
260
|
+
ID Speaker ID
|
|
261
|
+
|
|
262
|
+
GLOBAL FLAGS
|
|
263
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
264
|
+
--json Format output as json.
|
|
265
|
+
|
|
266
|
+
DESCRIPTION
|
|
267
|
+
Remove the avatar image from a speaker
|
|
268
|
+
|
|
269
|
+
EXAMPLES
|
|
270
|
+
$ twentythree webinar speaker remove-avatar 12345 9900
|
|
271
|
+
|
|
272
|
+
$ twentythree webinar speaker remove-avatar 12345 9900 --json
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
_See code: [src/commands/webinar/speaker/remove-avatar.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/remove-avatar.ts)_
|
|
276
|
+
|
|
277
|
+
## `twentythree webinar speaker request-guest WEBINARID ID`
|
|
278
|
+
|
|
279
|
+
Request a speaker as a guest
|
|
280
|
+
|
|
281
|
+
```
|
|
282
|
+
USAGE
|
|
283
|
+
$ twentythree webinar speaker request-guest WEBINARID ID [--json] [-w <value>]
|
|
284
|
+
|
|
285
|
+
ARGUMENTS
|
|
286
|
+
WEBINARID Webinar ID
|
|
287
|
+
ID Speaker ID
|
|
288
|
+
|
|
289
|
+
GLOBAL FLAGS
|
|
290
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
291
|
+
--json Format output as json.
|
|
292
|
+
|
|
293
|
+
DESCRIPTION
|
|
294
|
+
Request a speaker as a guest
|
|
295
|
+
|
|
296
|
+
EXAMPLES
|
|
297
|
+
$ twentythree webinar speaker request-guest 12345 9900
|
|
298
|
+
|
|
299
|
+
$ twentythree webinar speaker request-guest 12345 9900 --json
|
|
300
|
+
```
|
|
301
|
+
|
|
302
|
+
_See code: [src/commands/webinar/speaker/request-guest.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/request-guest.ts)_
|
|
303
|
+
|
|
304
|
+
## `twentythree webinar speaker send-invitation WEBINARID ID`
|
|
305
|
+
|
|
306
|
+
Send an invitation to a speaker
|
|
307
|
+
|
|
308
|
+
```
|
|
309
|
+
USAGE
|
|
310
|
+
$ twentythree webinar speaker send-invitation WEBINARID ID [--json] [-w <value>]
|
|
311
|
+
|
|
312
|
+
ARGUMENTS
|
|
313
|
+
WEBINARID Webinar ID
|
|
314
|
+
ID Speaker ID
|
|
315
|
+
|
|
316
|
+
GLOBAL FLAGS
|
|
317
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
318
|
+
--json Format output as json.
|
|
319
|
+
|
|
320
|
+
DESCRIPTION
|
|
321
|
+
Send an invitation to a speaker
|
|
322
|
+
|
|
323
|
+
EXAMPLES
|
|
324
|
+
$ twentythree webinar speaker send-invitation 12345 9900
|
|
325
|
+
|
|
326
|
+
$ twentythree webinar speaker send-invitation 12345 9900 --json
|
|
327
|
+
```
|
|
328
|
+
|
|
329
|
+
_See code: [src/commands/webinar/speaker/send-invitation.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/send-invitation.ts)_
|
|
330
|
+
|
|
331
|
+
## `twentythree webinar speaker set-avatar WEBINARID ID FILE`
|
|
332
|
+
|
|
333
|
+
Upload an avatar image for a speaker
|
|
334
|
+
|
|
335
|
+
```
|
|
336
|
+
USAGE
|
|
337
|
+
$ twentythree webinar speaker set-avatar WEBINARID ID FILE [--json] [-w <value>] [--chunk-size <value>] [--concurrency
|
|
338
|
+
<value>]
|
|
339
|
+
|
|
340
|
+
ARGUMENTS
|
|
341
|
+
WEBINARID Webinar ID
|
|
342
|
+
ID Speaker ID
|
|
343
|
+
FILE Path to image file
|
|
344
|
+
|
|
345
|
+
FLAGS
|
|
346
|
+
--chunk-size=<value> [default: 5242880] Chunk size in bytes (default: 5242880)
|
|
347
|
+
--concurrency=<value> [default: 5] Number of chunks to upload in parallel (default: 5)
|
|
348
|
+
|
|
349
|
+
GLOBAL FLAGS
|
|
350
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
351
|
+
--json Format output as json.
|
|
352
|
+
|
|
353
|
+
DESCRIPTION
|
|
354
|
+
Upload an avatar image for a speaker
|
|
355
|
+
|
|
356
|
+
EXAMPLES
|
|
357
|
+
$ twentythree webinar speaker set-avatar 12345 9900 ./avatar.jpg
|
|
358
|
+
|
|
359
|
+
$ twentythree webinar speaker set-avatar 12345 9900 ./avatar.png --chunk-size 524288
|
|
360
|
+
```
|
|
361
|
+
|
|
362
|
+
_See code: [src/commands/webinar/speaker/set-avatar.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/set-avatar.ts)_
|
|
363
|
+
|
|
364
|
+
## `twentythree webinar speaker set-order ID`
|
|
365
|
+
|
|
366
|
+
Set the display order of a speaker on a webinar
|
|
367
|
+
|
|
368
|
+
```
|
|
369
|
+
USAGE
|
|
370
|
+
$ twentythree webinar speaker set-order ID [--json] [-w <value>] [--speaker-id <value>] [--order <value>]
|
|
371
|
+
|
|
372
|
+
ARGUMENTS
|
|
373
|
+
ID Webinar ID
|
|
374
|
+
|
|
375
|
+
FLAGS
|
|
376
|
+
--order=<value> New display order (1-based)
|
|
377
|
+
--speaker-id=<value> Speaker ID
|
|
378
|
+
|
|
379
|
+
GLOBAL FLAGS
|
|
380
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
381
|
+
--json Format output as json.
|
|
382
|
+
|
|
383
|
+
DESCRIPTION
|
|
384
|
+
Set the display order of a speaker on a webinar
|
|
385
|
+
|
|
386
|
+
EXAMPLES
|
|
387
|
+
$ twentythree webinar speaker set-order 12345 --speaker-id 9900 --order 1
|
|
388
|
+
|
|
389
|
+
$ twentythree webinar speaker set-order 12345
|
|
390
|
+
|
|
391
|
+
$ twentythree webinar speaker set-order 12345 --speaker-id 9900 --order 1 --json
|
|
392
|
+
```
|
|
393
|
+
|
|
394
|
+
_See code: [src/commands/webinar/speaker/set-order.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/set-order.ts)_
|
|
395
|
+
|
|
396
|
+
## `twentythree webinar speaker update WEBINARID ID`
|
|
397
|
+
|
|
398
|
+
Update a speaker on a webinar
|
|
399
|
+
|
|
400
|
+
```
|
|
401
|
+
USAGE
|
|
402
|
+
$ twentythree webinar speaker update WEBINARID ID [--json] [-w <value>] [--name <value>] [--email <value>] [--title
|
|
403
|
+
<value>] [--description <value>]
|
|
404
|
+
|
|
405
|
+
ARGUMENTS
|
|
406
|
+
WEBINARID Webinar ID
|
|
407
|
+
ID Speaker ID
|
|
408
|
+
|
|
409
|
+
FLAGS
|
|
410
|
+
--description=<value> Speaker bio or description
|
|
411
|
+
--email=<value> Speaker email
|
|
412
|
+
--name=<value> Speaker name
|
|
413
|
+
--title=<value> Speaker title or job title
|
|
414
|
+
|
|
415
|
+
GLOBAL FLAGS
|
|
416
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
417
|
+
--json Format output as json.
|
|
418
|
+
|
|
419
|
+
DESCRIPTION
|
|
420
|
+
Update a speaker on a webinar
|
|
421
|
+
|
|
422
|
+
EXAMPLES
|
|
423
|
+
$ twentythree webinar speaker update 12345 9900 --name "Jane Doe"
|
|
424
|
+
|
|
425
|
+
$ twentythree webinar speaker update 12345 9900 --email jane@example.com --title "CTO"
|
|
426
|
+
|
|
427
|
+
$ twentythree webinar speaker update 12345 9900 --name "Jane Doe" --json
|
|
428
|
+
```
|
|
429
|
+
|
|
430
|
+
_See code: [src/commands/webinar/speaker/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/update.ts)_
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
`twentythree webinar:transcription`
|
|
2
|
+
===================================
|
|
3
|
+
|
|
4
|
+
Connect a transcription to a webinar
|
|
5
|
+
|
|
6
|
+
* [`twentythree webinar transcription connect ID`](#twentythree-webinar-transcription-connect-id)
|
|
7
|
+
* [`twentythree webinar transcription list ID`](#twentythree-webinar-transcription-list-id)
|
|
8
|
+
* [`twentythree webinar transcription locales ID`](#twentythree-webinar-transcription-locales-id)
|
|
9
|
+
* [`twentythree webinar transcription transcriptionlist`](#twentythree-webinar-transcription-transcriptionlist)
|
|
10
|
+
|
|
11
|
+
## `twentythree webinar transcription connect ID`
|
|
12
|
+
|
|
13
|
+
Connect a transcription to a webinar
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
USAGE
|
|
17
|
+
$ twentythree webinar transcription connect ID [--json] [-w <value>] [--presenter-token <value>]
|
|
18
|
+
|
|
19
|
+
ARGUMENTS
|
|
20
|
+
ID Webinar ID
|
|
21
|
+
|
|
22
|
+
FLAGS
|
|
23
|
+
--presenter-token=<value> Presenter token
|
|
24
|
+
|
|
25
|
+
GLOBAL FLAGS
|
|
26
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
27
|
+
--json Format output as json.
|
|
28
|
+
|
|
29
|
+
DESCRIPTION
|
|
30
|
+
Connect a transcription to a webinar
|
|
31
|
+
|
|
32
|
+
EXAMPLES
|
|
33
|
+
$ twentythree webinar transcription connect 12345
|
|
34
|
+
|
|
35
|
+
$ twentythree webinar transcription connect 12345 --presenter-token abc123
|
|
36
|
+
|
|
37
|
+
$ twentythree webinar transcription connect 12345 --json
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
_See code: [src/commands/webinar/transcription/connect.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/transcription/connect.ts)_
|
|
41
|
+
|
|
42
|
+
## `twentythree webinar transcription list ID`
|
|
43
|
+
|
|
44
|
+
List transcriptions for a webinar
|
|
45
|
+
|
|
46
|
+
```
|
|
47
|
+
USAGE
|
|
48
|
+
$ twentythree webinar transcription list ID [--json] [-w <value>] [--token <value>]
|
|
49
|
+
|
|
50
|
+
ARGUMENTS
|
|
51
|
+
ID Webinar ID
|
|
52
|
+
|
|
53
|
+
FLAGS
|
|
54
|
+
--token=<value> Webinar token (auto-looked up if not provided)
|
|
55
|
+
|
|
56
|
+
GLOBAL FLAGS
|
|
57
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
58
|
+
--json Format output as json.
|
|
59
|
+
|
|
60
|
+
DESCRIPTION
|
|
61
|
+
List transcriptions for a webinar
|
|
62
|
+
|
|
63
|
+
EXAMPLES
|
|
64
|
+
$ twentythree webinar transcription list 12345
|
|
65
|
+
|
|
66
|
+
$ twentythree webinar transcription list 12345 --json
|
|
67
|
+
|
|
68
|
+
$ twentythree webinar transcription list 12345 --token mytoken
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
_See code: [src/commands/webinar/transcription/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/transcription/list.ts)_
|
|
72
|
+
|
|
73
|
+
## `twentythree webinar transcription locales ID`
|
|
74
|
+
|
|
75
|
+
List available transcription locales for a webinar
|
|
76
|
+
|
|
77
|
+
```
|
|
78
|
+
USAGE
|
|
79
|
+
$ twentythree webinar transcription locales ID [--json] [-w <value>] [--token <value>]
|
|
80
|
+
|
|
81
|
+
ARGUMENTS
|
|
82
|
+
ID Webinar ID
|
|
83
|
+
|
|
84
|
+
FLAGS
|
|
85
|
+
--token=<value> Webinar token (auto-looked up if not provided)
|
|
86
|
+
|
|
87
|
+
GLOBAL FLAGS
|
|
88
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
89
|
+
--json Format output as json.
|
|
90
|
+
|
|
91
|
+
DESCRIPTION
|
|
92
|
+
List available transcription locales for a webinar
|
|
93
|
+
|
|
94
|
+
EXAMPLES
|
|
95
|
+
$ twentythree webinar transcription locales 12345
|
|
96
|
+
|
|
97
|
+
$ twentythree webinar transcription locales 12345 --json
|
|
98
|
+
|
|
99
|
+
$ twentythree webinar transcription locales 12345 --token mytoken
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
_See code: [src/commands/webinar/transcription/locales.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/transcription/locales.ts)_
|
|
103
|
+
|
|
104
|
+
## `twentythree webinar transcription transcriptionlist`
|
|
105
|
+
|
|
106
|
+
List all transcriptions in the workspace
|
|
107
|
+
|
|
108
|
+
```
|
|
109
|
+
USAGE
|
|
110
|
+
$ twentythree webinar transcription transcriptionlist [--json] [-w <value>]
|
|
111
|
+
|
|
112
|
+
GLOBAL FLAGS
|
|
113
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
114
|
+
--json Format output as json.
|
|
115
|
+
|
|
116
|
+
DESCRIPTION
|
|
117
|
+
List all transcriptions in the workspace
|
|
118
|
+
|
|
119
|
+
EXAMPLES
|
|
120
|
+
$ twentythree webinar transcription transcriptionlist
|
|
121
|
+
|
|
122
|
+
$ twentythree webinar transcription transcriptionlist --json
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
_See code: [src/commands/webinar/transcription/transcriptionlist.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/transcription/transcriptionlist.ts)_
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
`twentythree webinar:update`
|
|
2
|
+
============================
|
|
3
|
+
|
|
4
|
+
Update details for a webinar
|
|
5
|
+
|
|
6
|
+
* [`twentythree webinar update ID`](#twentythree-webinar-update-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree webinar update ID`
|
|
9
|
+
|
|
10
|
+
Update details for a webinar
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree webinar update ID [--json] [-w <value>] [--title <value>] [--description <value>] [--status <value>]
|
|
15
|
+
[--live-date <value>] [--draft] [--publish]
|
|
16
|
+
|
|
17
|
+
ARGUMENTS
|
|
18
|
+
ID Webinar ID
|
|
19
|
+
|
|
20
|
+
FLAGS
|
|
21
|
+
--description=<value> New description for the webinar
|
|
22
|
+
--[no-]draft Set as draft
|
|
23
|
+
--live-date=<value> Schedule date/time (ISO 8601)
|
|
24
|
+
--[no-]publish Publish or unpublish the webinar
|
|
25
|
+
--status=<value> Webinar status: upcoming, live, or previous
|
|
26
|
+
--title=<value> New title for the webinar
|
|
27
|
+
|
|
28
|
+
GLOBAL FLAGS
|
|
29
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
30
|
+
--json Format output as json.
|
|
31
|
+
|
|
32
|
+
DESCRIPTION
|
|
33
|
+
Update details for a webinar
|
|
34
|
+
|
|
35
|
+
EXAMPLES
|
|
36
|
+
$ twentythree webinar update 12345 --title "New Title"
|
|
37
|
+
|
|
38
|
+
$ twentythree webinar update 12345 --status upcoming
|
|
39
|
+
|
|
40
|
+
$ twentythree webinar update 12345
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
_See code: [src/commands/webinar/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/update.ts)_
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
`twentythree webinar:upload-image`
|
|
2
|
+
==================================
|
|
3
|
+
|
|
4
|
+
Upload an image for a webinar (thumbnail, preview, or before-webinar)
|
|
5
|
+
|
|
6
|
+
* [`twentythree webinar upload-image ID FILE`](#twentythree-webinar-upload-image-id-file)
|
|
7
|
+
|
|
8
|
+
## `twentythree webinar upload-image ID FILE`
|
|
9
|
+
|
|
10
|
+
Upload an image for a webinar (thumbnail, preview, or before-webinar)
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree webinar upload-image ID FILE [--json] [-w <value>] [--type thumbnail|preview|before_webinar] [--chunk-size
|
|
15
|
+
<value>] [--concurrency <value>]
|
|
16
|
+
|
|
17
|
+
ARGUMENTS
|
|
18
|
+
ID Webinar ID
|
|
19
|
+
FILE Path to the image file to upload
|
|
20
|
+
|
|
21
|
+
FLAGS
|
|
22
|
+
--chunk-size=<value> [default: 5242880] Chunk size in bytes (default: 5242880)
|
|
23
|
+
--concurrency=<value> [default: 5] Number of chunks to upload in parallel (default: 5)
|
|
24
|
+
--type=<option> [default: thumbnail] Image type
|
|
25
|
+
<options: thumbnail|preview|before_webinar>
|
|
26
|
+
|
|
27
|
+
GLOBAL FLAGS
|
|
28
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
29
|
+
--json Format output as json.
|
|
30
|
+
|
|
31
|
+
DESCRIPTION
|
|
32
|
+
Upload an image for a webinar (thumbnail, preview, or before-webinar)
|
|
33
|
+
|
|
34
|
+
EXAMPLES
|
|
35
|
+
$ twentythree webinar upload-image 12345 ./thumb.jpg
|
|
36
|
+
|
|
37
|
+
$ twentythree webinar upload-image 12345 ./preview.png --type preview
|
|
38
|
+
|
|
39
|
+
$ twentythree webinar upload-image 12345 ./before.jpg --type before_webinar
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
_See code: [src/commands/webinar/upload-image.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/upload-image.ts)_
|