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,105 @@
|
|
|
1
|
+
`twentythree openupload`
|
|
2
|
+
========================
|
|
3
|
+
|
|
4
|
+
List open upload tokens in the active workspace
|
|
5
|
+
|
|
6
|
+
* [`twentythree openupload list`](#twentythree-openupload-list)
|
|
7
|
+
* [`twentythree openupload update-file`](#twentythree-openupload-update-file)
|
|
8
|
+
* [`twentythree openupload upload-file`](#twentythree-openupload-upload-file)
|
|
9
|
+
|
|
10
|
+
## `twentythree openupload list`
|
|
11
|
+
|
|
12
|
+
List open upload tokens in the active workspace
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
USAGE
|
|
16
|
+
$ twentythree openupload list [--json] [-w <value>] [--token-upload-id <value>] [--token <value>] [--app]
|
|
17
|
+
|
|
18
|
+
FLAGS
|
|
19
|
+
--app Filter by app open uploads
|
|
20
|
+
--token=<value> Filter by open upload token
|
|
21
|
+
--token-upload-id=<value> Filter by open upload token upload ID
|
|
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
|
+
List open upload tokens in the active workspace
|
|
29
|
+
|
|
30
|
+
EXAMPLES
|
|
31
|
+
$ twentythree openupload list
|
|
32
|
+
|
|
33
|
+
$ twentythree openupload list --token-upload-id 123
|
|
34
|
+
|
|
35
|
+
$ twentythree openupload list --json
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
_See code: [src/commands/openupload/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/openupload/list.ts)_
|
|
39
|
+
|
|
40
|
+
## `twentythree openupload update-file`
|
|
41
|
+
|
|
42
|
+
Update metadata for an open upload entry
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
USAGE
|
|
46
|
+
$ twentythree openupload update-file --token-upload-id <value> --token <value> --upload-key <value> [--json] [-w <value>]
|
|
47
|
+
[--title <value>] [--description <value>] [--tags <value>]
|
|
48
|
+
|
|
49
|
+
FLAGS
|
|
50
|
+
--description=<value> New description for the uploaded file
|
|
51
|
+
--tags=<value> Tags for the uploaded file (space-separated)
|
|
52
|
+
--title=<value> New title for the uploaded file
|
|
53
|
+
--token=<value> (required) Open upload token
|
|
54
|
+
--token-upload-id=<value> (required) Open upload token upload ID
|
|
55
|
+
--upload-key=<value> (required) Upload key identifying the uploaded file
|
|
56
|
+
|
|
57
|
+
GLOBAL FLAGS
|
|
58
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
59
|
+
--json Format output as json.
|
|
60
|
+
|
|
61
|
+
DESCRIPTION
|
|
62
|
+
Update metadata for an open upload entry
|
|
63
|
+
|
|
64
|
+
EXAMPLES
|
|
65
|
+
$ twentythree openupload update-file --token-upload-id 123 --token abc123 --upload-key key456 --title "My Video"
|
|
66
|
+
|
|
67
|
+
$ twentythree openupload update-file --token-upload-id 123 --token abc123 --upload-key key456 --tags "demo tutorial"
|
|
68
|
+
|
|
69
|
+
$ twentythree openupload update-file --token-upload-id 123 --token abc123 --upload-key key456 --json
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
_See code: [src/commands/openupload/update-file.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/openupload/update-file.ts)_
|
|
73
|
+
|
|
74
|
+
## `twentythree openupload upload-file`
|
|
75
|
+
|
|
76
|
+
Upload a file via an open upload token using the chunked upload engine
|
|
77
|
+
|
|
78
|
+
```
|
|
79
|
+
USAGE
|
|
80
|
+
$ twentythree openupload upload-file --file-path <value> --token-upload-id <value> --token <value> [--json] [-w <value>]
|
|
81
|
+
[--chunk-size <value>] [--concurrency <value>]
|
|
82
|
+
|
|
83
|
+
FLAGS
|
|
84
|
+
--chunk-size=<value> [default: 5242880] Chunk size in bytes (default: 5242880 = 100MB)
|
|
85
|
+
--concurrency=<value> [default: 5] Number of chunks to upload in parallel (default: 5)
|
|
86
|
+
--file-path=<value> (required) Path to the file to upload
|
|
87
|
+
--token=<value> (required) Open upload token
|
|
88
|
+
--token-upload-id=<value> (required) Open upload token upload ID
|
|
89
|
+
|
|
90
|
+
GLOBAL FLAGS
|
|
91
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
92
|
+
--json Format output as json.
|
|
93
|
+
|
|
94
|
+
DESCRIPTION
|
|
95
|
+
Upload a file via an open upload token using the chunked upload engine
|
|
96
|
+
|
|
97
|
+
EXAMPLES
|
|
98
|
+
$ twentythree openupload upload-file --file-path ./video.mp4 --token-upload-id 123 --token abc123
|
|
99
|
+
|
|
100
|
+
$ twentythree openupload upload-file --file-path ./video.mp4 --token-upload-id 123 --token abc123 --chunk-size 52428800
|
|
101
|
+
|
|
102
|
+
$ twentythree openupload upload-file --file-path ./video.mp4 --token-upload-id 123 --token abc123 --json
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
_See code: [src/commands/openupload/upload-file.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/openupload/upload-file.ts)_
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
`twentythree player:delete`
|
|
2
|
+
===========================
|
|
3
|
+
|
|
4
|
+
Delete a player from the active workspace
|
|
5
|
+
|
|
6
|
+
* [`twentythree player delete ID`](#twentythree-player-delete-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree player delete ID`
|
|
9
|
+
|
|
10
|
+
Delete a player from the active workspace
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree player delete ID [--json] [-w <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Player 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
|
+
Delete a player from the active workspace
|
|
25
|
+
|
|
26
|
+
EXAMPLES
|
|
27
|
+
$ twentythree player delete 42
|
|
28
|
+
|
|
29
|
+
$ twentythree player delete 42 --json
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
_See code: [src/commands/player/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/player/delete.ts)_
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
`twentythree player:embed-versions`
|
|
2
|
+
===================================
|
|
3
|
+
|
|
4
|
+
List available embed versions for an object
|
|
5
|
+
|
|
6
|
+
* [`twentythree player embed-versions`](#twentythree-player-embed-versions)
|
|
7
|
+
|
|
8
|
+
## `twentythree player embed-versions`
|
|
9
|
+
|
|
10
|
+
List available embed versions for an object
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree player embed-versions --object-type <value> --object-id <value> [--json] [-w <value>] [--source <value>]
|
|
15
|
+
|
|
16
|
+
FLAGS
|
|
17
|
+
--object-id=<value> (required) Object ID
|
|
18
|
+
--object-type=<value> (required) Object type: photo, live, album, or site
|
|
19
|
+
--source=<value> Embed source parameter (e.g. embed, share)
|
|
20
|
+
|
|
21
|
+
GLOBAL FLAGS
|
|
22
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
23
|
+
--json Format output as json.
|
|
24
|
+
|
|
25
|
+
DESCRIPTION
|
|
26
|
+
List available embed versions for an object
|
|
27
|
+
|
|
28
|
+
EXAMPLES
|
|
29
|
+
$ twentythree player embed-versions --object-type photo --object-id 123
|
|
30
|
+
|
|
31
|
+
$ twentythree player embed-versions --object-type live --object-id 456 --json
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
_See code: [src/commands/player/embed-versions.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/player/embed-versions.ts)_
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
`twentythree player:embed`
|
|
2
|
+
==========================
|
|
3
|
+
|
|
4
|
+
Generate embed code for a video, webinar, or category
|
|
5
|
+
|
|
6
|
+
* [`twentythree player embed`](#twentythree-player-embed)
|
|
7
|
+
|
|
8
|
+
## `twentythree player embed`
|
|
9
|
+
|
|
10
|
+
Generate embed code for a video, webinar, or category
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree player embed [--json] [-w <value>] [--video-id <value>] [--webinar-id <value>] [--category-id
|
|
15
|
+
<value>] [--player-id <value>] [--url <value>] [--width <value>] [--height <value>] [--responsive] [--autoplay]
|
|
16
|
+
[--iframe] [--start <value>] [--include-unpublished] [--token <value>] [--source <value>]
|
|
17
|
+
|
|
18
|
+
FLAGS
|
|
19
|
+
--[no-]autoplay Enable auto-play in the embed code (maps to autoplay_p)
|
|
20
|
+
--category-id=<value> Category ID to embed (maps to album_id)
|
|
21
|
+
--height=<value> Desired embed height in pixels
|
|
22
|
+
--[no-]iframe Return an iframe-based embed code (maps to iframe_p)
|
|
23
|
+
--[no-]include-unpublished Include unpublished content in player parameters (maps to include_unpublished_p)
|
|
24
|
+
--player-id=<value> Player ID to use (default: workspace default)
|
|
25
|
+
--[no-]responsive Return a responsive embed code (maps to responsive_p)
|
|
26
|
+
--source=<value> Analytics source tag
|
|
27
|
+
--start=<value> Start position in seconds
|
|
28
|
+
--token=<value> Video token for private or token-protected videos
|
|
29
|
+
--url=<value> Workspace URL to resolve to an embed code
|
|
30
|
+
--video-id=<value> Video ID to embed (maps to photo_id)
|
|
31
|
+
--webinar-id=<value> Webinar ID to embed (maps to live_id)
|
|
32
|
+
--width=<value> Desired embed width in pixels
|
|
33
|
+
|
|
34
|
+
GLOBAL FLAGS
|
|
35
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
36
|
+
--json Format output as json.
|
|
37
|
+
|
|
38
|
+
DESCRIPTION
|
|
39
|
+
Generate embed code for a video, webinar, or category
|
|
40
|
+
|
|
41
|
+
EXAMPLES
|
|
42
|
+
$ twentythree player embed --video-id 123
|
|
43
|
+
|
|
44
|
+
$ twentythree player embed --video-id 123 --responsive > embed.html
|
|
45
|
+
|
|
46
|
+
$ twentythree player embed --webinar-id 456 --iframe
|
|
47
|
+
|
|
48
|
+
$ twentythree player embed --video-id 123 --json
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
_See code: [src/commands/player/embed.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/player/embed.ts)_
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
`twentythree player:list`
|
|
2
|
+
=========================
|
|
3
|
+
|
|
4
|
+
List players in the active workspace
|
|
5
|
+
|
|
6
|
+
* [`twentythree player list`](#twentythree-player-list)
|
|
7
|
+
|
|
8
|
+
## `twentythree player list`
|
|
9
|
+
|
|
10
|
+
List players in the active workspace
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree player list [--json] [-w <value>] [--source <value>]
|
|
15
|
+
|
|
16
|
+
FLAGS
|
|
17
|
+
--source=<value> Analytics source tag
|
|
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
|
+
List players in the active workspace
|
|
25
|
+
|
|
26
|
+
EXAMPLES
|
|
27
|
+
$ twentythree player list
|
|
28
|
+
|
|
29
|
+
$ twentythree player list --json
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
_See code: [src/commands/player/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/player/list.ts)_
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
`twentythree player:styles`
|
|
2
|
+
===========================
|
|
3
|
+
|
|
4
|
+
List available player visual styles
|
|
5
|
+
|
|
6
|
+
* [`twentythree player styles`](#twentythree-player-styles)
|
|
7
|
+
|
|
8
|
+
## `twentythree player styles`
|
|
9
|
+
|
|
10
|
+
List available player visual styles
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree player styles [--json] [-w <value>] [--fields <value>]
|
|
15
|
+
|
|
16
|
+
FLAGS
|
|
17
|
+
--fields=<value> Comma-separated list of fields to return
|
|
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
|
+
List available player visual styles
|
|
25
|
+
|
|
26
|
+
EXAMPLES
|
|
27
|
+
$ twentythree player styles
|
|
28
|
+
|
|
29
|
+
$ twentythree player styles --json
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
_See code: [src/commands/player/styles.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/player/styles.ts)_
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
`twentythree player:update`
|
|
2
|
+
===========================
|
|
3
|
+
|
|
4
|
+
Update settings for a player
|
|
5
|
+
|
|
6
|
+
* [`twentythree player update ID`](#twentythree-player-update-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree player update ID`
|
|
9
|
+
|
|
10
|
+
Update settings for a player
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree player update ID [--json] [-w <value>] [--name <value>] [--description <value>] [--data <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Player ID
|
|
18
|
+
|
|
19
|
+
FLAGS
|
|
20
|
+
--data=<value> JSON-encoded player properties to merge into the request body
|
|
21
|
+
--description=<value> New description for the player
|
|
22
|
+
--name=<value> New name for the player
|
|
23
|
+
|
|
24
|
+
GLOBAL FLAGS
|
|
25
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
26
|
+
--json Format output as json.
|
|
27
|
+
|
|
28
|
+
DESCRIPTION
|
|
29
|
+
Update settings for a player
|
|
30
|
+
|
|
31
|
+
EXAMPLES
|
|
32
|
+
$ twentythree player update 42 --name "My Player"
|
|
33
|
+
|
|
34
|
+
$ twentythree player update 42 --description "New description"
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
_See code: [src/commands/player/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/player/update.ts)_
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
`twentythree player`
|
|
2
|
+
====================
|
|
3
|
+
|
|
4
|
+
Delete a player from the active workspace
|
|
5
|
+
|
|
6
|
+
* [`twentythree player delete ID`](#twentythree-player-delete-id)
|
|
7
|
+
* [`twentythree player embed`](#twentythree-player-embed)
|
|
8
|
+
* [`twentythree player embed-versions`](#twentythree-player-embed-versions)
|
|
9
|
+
* [`twentythree player list`](#twentythree-player-list)
|
|
10
|
+
* [`twentythree player styles`](#twentythree-player-styles)
|
|
11
|
+
* [`twentythree player update ID`](#twentythree-player-update-id)
|
|
12
|
+
|
|
13
|
+
## `twentythree player delete ID`
|
|
14
|
+
|
|
15
|
+
Delete a player from the active workspace
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
USAGE
|
|
19
|
+
$ twentythree player delete ID [--json] [-w <value>]
|
|
20
|
+
|
|
21
|
+
ARGUMENTS
|
|
22
|
+
ID Player ID
|
|
23
|
+
|
|
24
|
+
GLOBAL FLAGS
|
|
25
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
26
|
+
--json Format output as json.
|
|
27
|
+
|
|
28
|
+
DESCRIPTION
|
|
29
|
+
Delete a player from the active workspace
|
|
30
|
+
|
|
31
|
+
EXAMPLES
|
|
32
|
+
$ twentythree player delete 42
|
|
33
|
+
|
|
34
|
+
$ twentythree player delete 42 --json
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
_See code: [src/commands/player/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/player/delete.ts)_
|
|
38
|
+
|
|
39
|
+
## `twentythree player embed`
|
|
40
|
+
|
|
41
|
+
Generate embed code for a video, webinar, or category
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
USAGE
|
|
45
|
+
$ twentythree player embed [--json] [-w <value>] [--video-id <value>] [--webinar-id <value>] [--category-id
|
|
46
|
+
<value>] [--player-id <value>] [--url <value>] [--width <value>] [--height <value>] [--responsive] [--autoplay]
|
|
47
|
+
[--iframe] [--start <value>] [--include-unpublished] [--token <value>] [--source <value>]
|
|
48
|
+
|
|
49
|
+
FLAGS
|
|
50
|
+
--[no-]autoplay Enable auto-play in the embed code (maps to autoplay_p)
|
|
51
|
+
--category-id=<value> Category ID to embed (maps to album_id)
|
|
52
|
+
--height=<value> Desired embed height in pixels
|
|
53
|
+
--[no-]iframe Return an iframe-based embed code (maps to iframe_p)
|
|
54
|
+
--[no-]include-unpublished Include unpublished content in player parameters (maps to include_unpublished_p)
|
|
55
|
+
--player-id=<value> Player ID to use (default: workspace default)
|
|
56
|
+
--[no-]responsive Return a responsive embed code (maps to responsive_p)
|
|
57
|
+
--source=<value> Analytics source tag
|
|
58
|
+
--start=<value> Start position in seconds
|
|
59
|
+
--token=<value> Video token for private or token-protected videos
|
|
60
|
+
--url=<value> Workspace URL to resolve to an embed code
|
|
61
|
+
--video-id=<value> Video ID to embed (maps to photo_id)
|
|
62
|
+
--webinar-id=<value> Webinar ID to embed (maps to live_id)
|
|
63
|
+
--width=<value> Desired embed width in pixels
|
|
64
|
+
|
|
65
|
+
GLOBAL FLAGS
|
|
66
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
67
|
+
--json Format output as json.
|
|
68
|
+
|
|
69
|
+
DESCRIPTION
|
|
70
|
+
Generate embed code for a video, webinar, or category
|
|
71
|
+
|
|
72
|
+
EXAMPLES
|
|
73
|
+
$ twentythree player embed --video-id 123
|
|
74
|
+
|
|
75
|
+
$ twentythree player embed --video-id 123 --responsive > embed.html
|
|
76
|
+
|
|
77
|
+
$ twentythree player embed --webinar-id 456 --iframe
|
|
78
|
+
|
|
79
|
+
$ twentythree player embed --video-id 123 --json
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
_See code: [src/commands/player/embed.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/player/embed.ts)_
|
|
83
|
+
|
|
84
|
+
## `twentythree player embed-versions`
|
|
85
|
+
|
|
86
|
+
List available embed versions for an object
|
|
87
|
+
|
|
88
|
+
```
|
|
89
|
+
USAGE
|
|
90
|
+
$ twentythree player embed-versions --object-type <value> --object-id <value> [--json] [-w <value>] [--source <value>]
|
|
91
|
+
|
|
92
|
+
FLAGS
|
|
93
|
+
--object-id=<value> (required) Object ID
|
|
94
|
+
--object-type=<value> (required) Object type: photo, live, album, or site
|
|
95
|
+
--source=<value> Embed source parameter (e.g. embed, share)
|
|
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 embed versions for an object
|
|
103
|
+
|
|
104
|
+
EXAMPLES
|
|
105
|
+
$ twentythree player embed-versions --object-type photo --object-id 123
|
|
106
|
+
|
|
107
|
+
$ twentythree player embed-versions --object-type live --object-id 456 --json
|
|
108
|
+
```
|
|
109
|
+
|
|
110
|
+
_See code: [src/commands/player/embed-versions.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/player/embed-versions.ts)_
|
|
111
|
+
|
|
112
|
+
## `twentythree player list`
|
|
113
|
+
|
|
114
|
+
List players in the active workspace
|
|
115
|
+
|
|
116
|
+
```
|
|
117
|
+
USAGE
|
|
118
|
+
$ twentythree player list [--json] [-w <value>] [--source <value>]
|
|
119
|
+
|
|
120
|
+
FLAGS
|
|
121
|
+
--source=<value> Analytics source tag
|
|
122
|
+
|
|
123
|
+
GLOBAL FLAGS
|
|
124
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
125
|
+
--json Format output as json.
|
|
126
|
+
|
|
127
|
+
DESCRIPTION
|
|
128
|
+
List players in the active workspace
|
|
129
|
+
|
|
130
|
+
EXAMPLES
|
|
131
|
+
$ twentythree player list
|
|
132
|
+
|
|
133
|
+
$ twentythree player list --json
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
_See code: [src/commands/player/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/player/list.ts)_
|
|
137
|
+
|
|
138
|
+
## `twentythree player styles`
|
|
139
|
+
|
|
140
|
+
List available player visual styles
|
|
141
|
+
|
|
142
|
+
```
|
|
143
|
+
USAGE
|
|
144
|
+
$ twentythree player styles [--json] [-w <value>] [--fields <value>]
|
|
145
|
+
|
|
146
|
+
FLAGS
|
|
147
|
+
--fields=<value> Comma-separated list of fields to return
|
|
148
|
+
|
|
149
|
+
GLOBAL FLAGS
|
|
150
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
151
|
+
--json Format output as json.
|
|
152
|
+
|
|
153
|
+
DESCRIPTION
|
|
154
|
+
List available player visual styles
|
|
155
|
+
|
|
156
|
+
EXAMPLES
|
|
157
|
+
$ twentythree player styles
|
|
158
|
+
|
|
159
|
+
$ twentythree player styles --json
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
_See code: [src/commands/player/styles.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/player/styles.ts)_
|
|
163
|
+
|
|
164
|
+
## `twentythree player update ID`
|
|
165
|
+
|
|
166
|
+
Update settings for a player
|
|
167
|
+
|
|
168
|
+
```
|
|
169
|
+
USAGE
|
|
170
|
+
$ twentythree player update ID [--json] [-w <value>] [--name <value>] [--description <value>] [--data <value>]
|
|
171
|
+
|
|
172
|
+
ARGUMENTS
|
|
173
|
+
ID Player ID
|
|
174
|
+
|
|
175
|
+
FLAGS
|
|
176
|
+
--data=<value> JSON-encoded player properties to merge into the request body
|
|
177
|
+
--description=<value> New description for the player
|
|
178
|
+
--name=<value> New name for the player
|
|
179
|
+
|
|
180
|
+
GLOBAL FLAGS
|
|
181
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
182
|
+
--json Format output as json.
|
|
183
|
+
|
|
184
|
+
DESCRIPTION
|
|
185
|
+
Update settings for a player
|
|
186
|
+
|
|
187
|
+
EXAMPLES
|
|
188
|
+
$ twentythree player update 42 --name "My Player"
|
|
189
|
+
|
|
190
|
+
$ twentythree player update 42 --description "New description"
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
_See code: [src/commands/player/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/player/update.ts)_
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
`twentythree poll:add`
|
|
2
|
+
======================
|
|
3
|
+
|
|
4
|
+
Create a new poll for a webinar
|
|
5
|
+
|
|
6
|
+
* [`twentythree poll add`](#twentythree-poll-add)
|
|
7
|
+
|
|
8
|
+
## `twentythree poll add`
|
|
9
|
+
|
|
10
|
+
Create a new poll for a webinar
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree poll add --object-id <value> [--json] [-w <value>] [--question <value>]
|
|
15
|
+
|
|
16
|
+
FLAGS
|
|
17
|
+
--object-id=<value> (required) Object ID (webinar or live object)
|
|
18
|
+
--question=<value> Poll question
|
|
19
|
+
|
|
20
|
+
GLOBAL FLAGS
|
|
21
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
22
|
+
--json Format output as json.
|
|
23
|
+
|
|
24
|
+
DESCRIPTION
|
|
25
|
+
Create a new poll for a webinar
|
|
26
|
+
|
|
27
|
+
EXAMPLES
|
|
28
|
+
$ twentythree poll add --object-id 12345 --question "What is your preference?"
|
|
29
|
+
|
|
30
|
+
$ twentythree poll add --object-id 12345 --question "How are you?" --json
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
_See code: [src/commands/poll/add.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/poll/add.ts)_
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
`twentythree poll:answer`
|
|
2
|
+
=========================
|
|
3
|
+
|
|
4
|
+
Submit a poll answer
|
|
5
|
+
|
|
6
|
+
* [`twentythree poll answer ID`](#twentythree-poll-answer-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree poll answer ID`
|
|
9
|
+
|
|
10
|
+
Submit a poll answer
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree poll answer ID [--json] [-w <value>] [--object-id <value>] [--object-token <value>] [--option-id
|
|
15
|
+
<value>]
|
|
16
|
+
|
|
17
|
+
ARGUMENTS
|
|
18
|
+
ID Poll ID
|
|
19
|
+
|
|
20
|
+
FLAGS
|
|
21
|
+
--object-id=<value> Object ID (webinar or live object)
|
|
22
|
+
--object-token=<value> Object token (auto-looked up if omitted)
|
|
23
|
+
--option-id=<value> Poll option ID
|
|
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
|
+
Submit a poll answer
|
|
31
|
+
|
|
32
|
+
EXAMPLES
|
|
33
|
+
$ twentythree poll answer 99 --object-id 12345 --option-id 3
|
|
34
|
+
|
|
35
|
+
$ twentythree poll answer 99 --object-id 12345 --option-id 3 --json
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
_See code: [src/commands/poll/answer.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/poll/answer.ts)_
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
`twentythree poll:list`
|
|
2
|
+
=======================
|
|
3
|
+
|
|
4
|
+
List polls for a webinar
|
|
5
|
+
|
|
6
|
+
* [`twentythree poll list`](#twentythree-poll-list)
|
|
7
|
+
|
|
8
|
+
## `twentythree poll list`
|
|
9
|
+
|
|
10
|
+
List polls for a webinar
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree poll list --object-id <value> [--json] [-w <value>] [--object-token <value>]
|
|
15
|
+
|
|
16
|
+
FLAGS
|
|
17
|
+
--object-id=<value> (required) Object ID (webinar or live object)
|
|
18
|
+
--object-token=<value> Object token (auto-looked up if omitted)
|
|
19
|
+
|
|
20
|
+
GLOBAL FLAGS
|
|
21
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
22
|
+
--json Format output as json.
|
|
23
|
+
|
|
24
|
+
DESCRIPTION
|
|
25
|
+
List polls for a webinar
|
|
26
|
+
|
|
27
|
+
EXAMPLES
|
|
28
|
+
$ twentythree poll list --object-id 12345
|
|
29
|
+
|
|
30
|
+
$ twentythree poll list --object-id 12345 --json
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
_See code: [src/commands/poll/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/poll/list.ts)_
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
`twentythree poll:remove`
|
|
2
|
+
=========================
|
|
3
|
+
|
|
4
|
+
Remove a poll
|
|
5
|
+
|
|
6
|
+
* [`twentythree poll remove ID`](#twentythree-poll-remove-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree poll remove ID`
|
|
9
|
+
|
|
10
|
+
Remove a poll
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree poll remove ID [--json] [-w <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Poll 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
|
+
Remove a poll
|
|
25
|
+
|
|
26
|
+
EXAMPLES
|
|
27
|
+
$ twentythree poll remove 99
|
|
28
|
+
|
|
29
|
+
$ twentythree poll remove 99 --json
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
_See code: [src/commands/poll/remove.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/poll/remove.ts)_
|