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,134 @@
|
|
|
1
|
+
`twentythree webinar:section`
|
|
2
|
+
=============================
|
|
3
|
+
|
|
4
|
+
Add an agenda section to a webinar
|
|
5
|
+
|
|
6
|
+
* [`twentythree webinar section add ID`](#twentythree-webinar-section-add-id)
|
|
7
|
+
* [`twentythree webinar section list ID`](#twentythree-webinar-section-list-id)
|
|
8
|
+
* [`twentythree webinar section remove WEBINARID ID`](#twentythree-webinar-section-remove-webinarid-id)
|
|
9
|
+
* [`twentythree webinar section update WEBINARID ID`](#twentythree-webinar-section-update-webinarid-id)
|
|
10
|
+
|
|
11
|
+
## `twentythree webinar section add ID`
|
|
12
|
+
|
|
13
|
+
Add an agenda section to a webinar
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
USAGE
|
|
17
|
+
$ twentythree webinar section add ID [--json] [-w <value>] [--title <value>] [--description <value>] [--start-time
|
|
18
|
+
<value>]
|
|
19
|
+
|
|
20
|
+
ARGUMENTS
|
|
21
|
+
ID Webinar ID
|
|
22
|
+
|
|
23
|
+
FLAGS
|
|
24
|
+
--description=<value> Section description
|
|
25
|
+
--start-time=<value> Start time in seconds
|
|
26
|
+
--title=<value> Section title
|
|
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
|
+
Add an agenda section to a webinar
|
|
34
|
+
|
|
35
|
+
EXAMPLES
|
|
36
|
+
$ twentythree webinar section add 12345 --title "Introduction"
|
|
37
|
+
|
|
38
|
+
$ twentythree webinar section add 12345 --title "Q&A" --start-time 3600
|
|
39
|
+
|
|
40
|
+
$ twentythree webinar section add 12345 --title "Welcome" --description "Opening remarks" --json
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
_See code: [src/commands/webinar/section/add.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/section/add.ts)_
|
|
44
|
+
|
|
45
|
+
## `twentythree webinar section list ID`
|
|
46
|
+
|
|
47
|
+
List agenda sections for a webinar
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
USAGE
|
|
51
|
+
$ twentythree webinar section list ID [--json] [-w <value>] [--token <value>]
|
|
52
|
+
|
|
53
|
+
ARGUMENTS
|
|
54
|
+
ID Webinar ID
|
|
55
|
+
|
|
56
|
+
FLAGS
|
|
57
|
+
--token=<value> Webinar token (auto-looked up if omitted)
|
|
58
|
+
|
|
59
|
+
GLOBAL FLAGS
|
|
60
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
61
|
+
--json Format output as json.
|
|
62
|
+
|
|
63
|
+
DESCRIPTION
|
|
64
|
+
List agenda sections for a webinar
|
|
65
|
+
|
|
66
|
+
EXAMPLES
|
|
67
|
+
$ twentythree webinar section list 12345
|
|
68
|
+
|
|
69
|
+
$ twentythree webinar section list 12345 --json
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
_See code: [src/commands/webinar/section/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/section/list.ts)_
|
|
73
|
+
|
|
74
|
+
## `twentythree webinar section remove WEBINARID ID`
|
|
75
|
+
|
|
76
|
+
Remove an agenda section from a webinar
|
|
77
|
+
|
|
78
|
+
```
|
|
79
|
+
USAGE
|
|
80
|
+
$ twentythree webinar section remove WEBINARID ID [--json] [-w <value>]
|
|
81
|
+
|
|
82
|
+
ARGUMENTS
|
|
83
|
+
WEBINARID Webinar ID
|
|
84
|
+
ID Section ID
|
|
85
|
+
|
|
86
|
+
GLOBAL FLAGS
|
|
87
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
88
|
+
--json Format output as json.
|
|
89
|
+
|
|
90
|
+
DESCRIPTION
|
|
91
|
+
Remove an agenda section from a webinar
|
|
92
|
+
|
|
93
|
+
EXAMPLES
|
|
94
|
+
$ twentythree webinar section remove 12345 99
|
|
95
|
+
|
|
96
|
+
$ twentythree webinar section remove 12345 99 --json
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
_See code: [src/commands/webinar/section/remove.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/section/remove.ts)_
|
|
100
|
+
|
|
101
|
+
## `twentythree webinar section update WEBINARID ID`
|
|
102
|
+
|
|
103
|
+
Update an agenda section
|
|
104
|
+
|
|
105
|
+
```
|
|
106
|
+
USAGE
|
|
107
|
+
$ twentythree webinar section update WEBINARID ID [--json] [-w <value>] [--title <value>] [--description <value>]
|
|
108
|
+
[--start-time <value>]
|
|
109
|
+
|
|
110
|
+
ARGUMENTS
|
|
111
|
+
WEBINARID Webinar ID
|
|
112
|
+
ID Section ID
|
|
113
|
+
|
|
114
|
+
FLAGS
|
|
115
|
+
--description=<value> New section description
|
|
116
|
+
--start-time=<value> New start time in seconds
|
|
117
|
+
--title=<value> New section title
|
|
118
|
+
|
|
119
|
+
GLOBAL FLAGS
|
|
120
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
121
|
+
--json Format output as json.
|
|
122
|
+
|
|
123
|
+
DESCRIPTION
|
|
124
|
+
Update an agenda section
|
|
125
|
+
|
|
126
|
+
EXAMPLES
|
|
127
|
+
$ twentythree webinar section update 12345 99 --title "Updated Title"
|
|
128
|
+
|
|
129
|
+
$ twentythree webinar section update 12345 99 --start-time 1800
|
|
130
|
+
|
|
131
|
+
$ twentythree webinar section update 12345 99 --title "Q&A" --description "Audience questions" --json
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
_See code: [src/commands/webinar/section/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/section/update.ts)_
|
|
@@ -0,0 +1,365 @@
|
|
|
1
|
+
`twentythree webinar:series`
|
|
2
|
+
============================
|
|
3
|
+
|
|
4
|
+
Apply a recurrence to a webinar series
|
|
5
|
+
|
|
6
|
+
* [`twentythree webinar series apply-recurrence ID`](#twentythree-webinar-series-apply-recurrence-id)
|
|
7
|
+
* [`twentythree webinar series cancel ID`](#twentythree-webinar-series-cancel-id)
|
|
8
|
+
* [`twentythree webinar series create`](#twentythree-webinar-series-create)
|
|
9
|
+
* [`twentythree webinar series delete ID`](#twentythree-webinar-series-delete-id)
|
|
10
|
+
* [`twentythree webinar series list`](#twentythree-webinar-series-list)
|
|
11
|
+
* [`twentythree webinar series mapped-objects ID`](#twentythree-webinar-series-mapped-objects-id)
|
|
12
|
+
* [`twentythree webinar series metrics ID`](#twentythree-webinar-series-metrics-id)
|
|
13
|
+
* [`twentythree webinar series recurrences ID`](#twentythree-webinar-series-recurrences-id)
|
|
14
|
+
* [`twentythree webinar series set-ondemand ID`](#twentythree-webinar-series-set-ondemand-id)
|
|
15
|
+
* [`twentythree webinar series skip-recurrence ID`](#twentythree-webinar-series-skip-recurrence-id)
|
|
16
|
+
* [`twentythree webinar series update ID`](#twentythree-webinar-series-update-id)
|
|
17
|
+
* [`twentythree webinar series upload-thumbnail ID FILE`](#twentythree-webinar-series-upload-thumbnail-id-file)
|
|
18
|
+
|
|
19
|
+
## `twentythree webinar series apply-recurrence ID`
|
|
20
|
+
|
|
21
|
+
Apply a recurrence to a webinar series
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
USAGE
|
|
25
|
+
$ twentythree webinar series apply-recurrence ID [--json] [-w <value>] [--recurrence-id <value>]
|
|
26
|
+
|
|
27
|
+
ARGUMENTS
|
|
28
|
+
ID Series ID
|
|
29
|
+
|
|
30
|
+
FLAGS
|
|
31
|
+
--recurrence-id=<value> Recurrence ID
|
|
32
|
+
|
|
33
|
+
GLOBAL FLAGS
|
|
34
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
35
|
+
--json Format output as json.
|
|
36
|
+
|
|
37
|
+
DESCRIPTION
|
|
38
|
+
Apply a recurrence to a webinar series
|
|
39
|
+
|
|
40
|
+
EXAMPLES
|
|
41
|
+
$ twentythree webinar series apply-recurrence 42 --recurrence-id 7
|
|
42
|
+
|
|
43
|
+
$ twentythree webinar series apply-recurrence 42 --recurrence-id 7 --json
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
_See code: [src/commands/webinar/series/apply-recurrence.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/apply-recurrence.ts)_
|
|
47
|
+
|
|
48
|
+
## `twentythree webinar series cancel ID`
|
|
49
|
+
|
|
50
|
+
Cancel a webinar series
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
USAGE
|
|
54
|
+
$ twentythree webinar series cancel ID [--json] [-w <value>] [--cancel-associations]
|
|
55
|
+
|
|
56
|
+
ARGUMENTS
|
|
57
|
+
ID Series ID
|
|
58
|
+
|
|
59
|
+
FLAGS
|
|
60
|
+
--[no-]cancel-associations Also cancel associated webinars
|
|
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
|
+
Cancel a webinar series
|
|
68
|
+
|
|
69
|
+
EXAMPLES
|
|
70
|
+
$ twentythree webinar series cancel 42
|
|
71
|
+
|
|
72
|
+
$ twentythree webinar series cancel 42 --cancel-associations
|
|
73
|
+
|
|
74
|
+
$ twentythree webinar series cancel 42 --json
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
_See code: [src/commands/webinar/series/cancel.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/cancel.ts)_
|
|
78
|
+
|
|
79
|
+
## `twentythree webinar series create`
|
|
80
|
+
|
|
81
|
+
Create a webinar series
|
|
82
|
+
|
|
83
|
+
```
|
|
84
|
+
USAGE
|
|
85
|
+
$ twentythree webinar series create [--json] [-w <value>] [--name <value>] [--description <value>]
|
|
86
|
+
|
|
87
|
+
FLAGS
|
|
88
|
+
--description=<value> Series description
|
|
89
|
+
--name=<value> Series name
|
|
90
|
+
|
|
91
|
+
GLOBAL FLAGS
|
|
92
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
93
|
+
--json Format output as json.
|
|
94
|
+
|
|
95
|
+
DESCRIPTION
|
|
96
|
+
Create a webinar series
|
|
97
|
+
|
|
98
|
+
EXAMPLES
|
|
99
|
+
$ twentythree webinar series create --name "My Series"
|
|
100
|
+
|
|
101
|
+
$ twentythree webinar series create --name "My Series" --description "Weekly sessions"
|
|
102
|
+
|
|
103
|
+
$ twentythree webinar series create --name "My Series" --json
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
_See code: [src/commands/webinar/series/create.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/create.ts)_
|
|
107
|
+
|
|
108
|
+
## `twentythree webinar series delete ID`
|
|
109
|
+
|
|
110
|
+
Delete a webinar series
|
|
111
|
+
|
|
112
|
+
```
|
|
113
|
+
USAGE
|
|
114
|
+
$ twentythree webinar series delete ID [--json] [-w <value>] [--delete-associations]
|
|
115
|
+
|
|
116
|
+
ARGUMENTS
|
|
117
|
+
ID Series ID
|
|
118
|
+
|
|
119
|
+
FLAGS
|
|
120
|
+
--[no-]delete-associations Also delete associated webinars
|
|
121
|
+
|
|
122
|
+
GLOBAL FLAGS
|
|
123
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
124
|
+
--json Format output as json.
|
|
125
|
+
|
|
126
|
+
DESCRIPTION
|
|
127
|
+
Delete a webinar series
|
|
128
|
+
|
|
129
|
+
EXAMPLES
|
|
130
|
+
$ twentythree webinar series delete 42
|
|
131
|
+
|
|
132
|
+
$ twentythree webinar series delete 42 --delete-associations
|
|
133
|
+
|
|
134
|
+
$ twentythree webinar series delete 42 --json
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
_See code: [src/commands/webinar/series/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/delete.ts)_
|
|
138
|
+
|
|
139
|
+
## `twentythree webinar series list`
|
|
140
|
+
|
|
141
|
+
List webinar series
|
|
142
|
+
|
|
143
|
+
```
|
|
144
|
+
USAGE
|
|
145
|
+
$ twentythree webinar series list [--json] [-w <value>]
|
|
146
|
+
|
|
147
|
+
GLOBAL FLAGS
|
|
148
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
149
|
+
--json Format output as json.
|
|
150
|
+
|
|
151
|
+
DESCRIPTION
|
|
152
|
+
List webinar series
|
|
153
|
+
|
|
154
|
+
EXAMPLES
|
|
155
|
+
$ twentythree webinar series list
|
|
156
|
+
|
|
157
|
+
$ twentythree webinar series list --json
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
_See code: [src/commands/webinar/series/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/list.ts)_
|
|
161
|
+
|
|
162
|
+
## `twentythree webinar series mapped-objects ID`
|
|
163
|
+
|
|
164
|
+
List mapped objects for a webinar series
|
|
165
|
+
|
|
166
|
+
```
|
|
167
|
+
USAGE
|
|
168
|
+
$ twentythree webinar series mapped-objects ID [--json] [-w <value>]
|
|
169
|
+
|
|
170
|
+
ARGUMENTS
|
|
171
|
+
ID Series ID
|
|
172
|
+
|
|
173
|
+
GLOBAL FLAGS
|
|
174
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
175
|
+
--json Format output as json.
|
|
176
|
+
|
|
177
|
+
DESCRIPTION
|
|
178
|
+
List mapped objects for a webinar series
|
|
179
|
+
|
|
180
|
+
EXAMPLES
|
|
181
|
+
$ twentythree webinar series mapped-objects 42
|
|
182
|
+
|
|
183
|
+
$ twentythree webinar series mapped-objects 42 --json
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
_See code: [src/commands/webinar/series/mapped-objects.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/mapped-objects.ts)_
|
|
187
|
+
|
|
188
|
+
## `twentythree webinar series metrics ID`
|
|
189
|
+
|
|
190
|
+
Get metrics for a webinar series
|
|
191
|
+
|
|
192
|
+
```
|
|
193
|
+
USAGE
|
|
194
|
+
$ twentythree webinar series metrics ID [--json] [-w <value>]
|
|
195
|
+
|
|
196
|
+
ARGUMENTS
|
|
197
|
+
ID Series ID
|
|
198
|
+
|
|
199
|
+
GLOBAL FLAGS
|
|
200
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
201
|
+
--json Format output as json.
|
|
202
|
+
|
|
203
|
+
DESCRIPTION
|
|
204
|
+
Get metrics for a webinar series
|
|
205
|
+
|
|
206
|
+
EXAMPLES
|
|
207
|
+
$ twentythree webinar series metrics 42
|
|
208
|
+
|
|
209
|
+
$ twentythree webinar series metrics 42 --json
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
_See code: [src/commands/webinar/series/metrics.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/metrics.ts)_
|
|
213
|
+
|
|
214
|
+
## `twentythree webinar series recurrences ID`
|
|
215
|
+
|
|
216
|
+
List recurrences for a webinar series
|
|
217
|
+
|
|
218
|
+
```
|
|
219
|
+
USAGE
|
|
220
|
+
$ twentythree webinar series recurrences ID [--json] [-w <value>]
|
|
221
|
+
|
|
222
|
+
ARGUMENTS
|
|
223
|
+
ID Series ID
|
|
224
|
+
|
|
225
|
+
GLOBAL FLAGS
|
|
226
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
227
|
+
--json Format output as json.
|
|
228
|
+
|
|
229
|
+
DESCRIPTION
|
|
230
|
+
List recurrences for a webinar series
|
|
231
|
+
|
|
232
|
+
EXAMPLES
|
|
233
|
+
$ twentythree webinar series recurrences 42
|
|
234
|
+
|
|
235
|
+
$ twentythree webinar series recurrences 42 --json
|
|
236
|
+
```
|
|
237
|
+
|
|
238
|
+
_See code: [src/commands/webinar/series/recurrences.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/recurrences.ts)_
|
|
239
|
+
|
|
240
|
+
## `twentythree webinar series set-ondemand ID`
|
|
241
|
+
|
|
242
|
+
Set a webinar series to on-demand
|
|
243
|
+
|
|
244
|
+
```
|
|
245
|
+
USAGE
|
|
246
|
+
$ twentythree webinar series set-ondemand ID [--json] [-w <value>] [--update-associations]
|
|
247
|
+
|
|
248
|
+
ARGUMENTS
|
|
249
|
+
ID Series ID
|
|
250
|
+
|
|
251
|
+
FLAGS
|
|
252
|
+
--[no-]update-associations Also update associated webinars
|
|
253
|
+
|
|
254
|
+
GLOBAL FLAGS
|
|
255
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
256
|
+
--json Format output as json.
|
|
257
|
+
|
|
258
|
+
DESCRIPTION
|
|
259
|
+
Set a webinar series to on-demand
|
|
260
|
+
|
|
261
|
+
EXAMPLES
|
|
262
|
+
$ twentythree webinar series set-ondemand 42
|
|
263
|
+
|
|
264
|
+
$ twentythree webinar series set-ondemand 42 --update-associations
|
|
265
|
+
|
|
266
|
+
$ twentythree webinar series set-ondemand 42 --json
|
|
267
|
+
```
|
|
268
|
+
|
|
269
|
+
_See code: [src/commands/webinar/series/set-ondemand.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/set-ondemand.ts)_
|
|
270
|
+
|
|
271
|
+
## `twentythree webinar series skip-recurrence ID`
|
|
272
|
+
|
|
273
|
+
Skip or unskip a recurrence for a webinar series
|
|
274
|
+
|
|
275
|
+
```
|
|
276
|
+
USAGE
|
|
277
|
+
$ twentythree webinar series skip-recurrence ID [--json] [-w <value>] [--recurrence-id <value>] [--skipped]
|
|
278
|
+
|
|
279
|
+
ARGUMENTS
|
|
280
|
+
ID Series ID
|
|
281
|
+
|
|
282
|
+
FLAGS
|
|
283
|
+
--recurrence-id=<value> Recurrence ID
|
|
284
|
+
--[no-]skipped Set skipped (--skipped) or unskipped (--no-skipped)
|
|
285
|
+
|
|
286
|
+
GLOBAL FLAGS
|
|
287
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
288
|
+
--json Format output as json.
|
|
289
|
+
|
|
290
|
+
DESCRIPTION
|
|
291
|
+
Skip or unskip a recurrence for a webinar series
|
|
292
|
+
|
|
293
|
+
EXAMPLES
|
|
294
|
+
$ twentythree webinar series skip-recurrence 42 --recurrence-id 7 --skipped
|
|
295
|
+
|
|
296
|
+
$ twentythree webinar series skip-recurrence 42 --recurrence-id 7 --no-skipped
|
|
297
|
+
|
|
298
|
+
$ twentythree webinar series skip-recurrence 42 --recurrence-id 7 --skipped --json
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
_See code: [src/commands/webinar/series/skip-recurrence.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/skip-recurrence.ts)_
|
|
302
|
+
|
|
303
|
+
## `twentythree webinar series update ID`
|
|
304
|
+
|
|
305
|
+
Update a webinar series
|
|
306
|
+
|
|
307
|
+
```
|
|
308
|
+
USAGE
|
|
309
|
+
$ twentythree webinar series update ID [--json] [-w <value>] [--name <value>] [--description <value>]
|
|
310
|
+
|
|
311
|
+
ARGUMENTS
|
|
312
|
+
ID Series ID
|
|
313
|
+
|
|
314
|
+
FLAGS
|
|
315
|
+
--description=<value> Series description
|
|
316
|
+
--name=<value> Series name
|
|
317
|
+
|
|
318
|
+
GLOBAL FLAGS
|
|
319
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
320
|
+
--json Format output as json.
|
|
321
|
+
|
|
322
|
+
DESCRIPTION
|
|
323
|
+
Update a webinar series
|
|
324
|
+
|
|
325
|
+
EXAMPLES
|
|
326
|
+
$ twentythree webinar series update 42 --name "Updated Series"
|
|
327
|
+
|
|
328
|
+
$ twentythree webinar series update 42 --description "New description"
|
|
329
|
+
|
|
330
|
+
$ twentythree webinar series update 42 --name "Updated" --json
|
|
331
|
+
```
|
|
332
|
+
|
|
333
|
+
_See code: [src/commands/webinar/series/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/update.ts)_
|
|
334
|
+
|
|
335
|
+
## `twentythree webinar series upload-thumbnail ID FILE`
|
|
336
|
+
|
|
337
|
+
Upload a thumbnail for a webinar series
|
|
338
|
+
|
|
339
|
+
```
|
|
340
|
+
USAGE
|
|
341
|
+
$ twentythree webinar series upload-thumbnail ID FILE [--json] [-w <value>] [--chunk-size <value>] [--concurrency
|
|
342
|
+
<value>]
|
|
343
|
+
|
|
344
|
+
ARGUMENTS
|
|
345
|
+
ID Series ID
|
|
346
|
+
FILE Path to the image file to upload
|
|
347
|
+
|
|
348
|
+
FLAGS
|
|
349
|
+
--chunk-size=<value> [default: 5242880] Chunk size in bytes (default: 5242880)
|
|
350
|
+
--concurrency=<value> [default: 5] Number of chunks to upload in parallel (default: 5)
|
|
351
|
+
|
|
352
|
+
GLOBAL FLAGS
|
|
353
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
354
|
+
--json Format output as json.
|
|
355
|
+
|
|
356
|
+
DESCRIPTION
|
|
357
|
+
Upload a thumbnail for a webinar series
|
|
358
|
+
|
|
359
|
+
EXAMPLES
|
|
360
|
+
$ twentythree webinar series upload-thumbnail 42 ./thumb.jpg
|
|
361
|
+
|
|
362
|
+
$ twentythree webinar series upload-thumbnail 42 ./thumbnail.png --json
|
|
363
|
+
```
|
|
364
|
+
|
|
365
|
+
_See code: [src/commands/webinar/series/upload-thumbnail.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/upload-thumbnail.ts)_
|