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,801 @@
|
|
|
1
|
+
`twentythree video`
|
|
2
|
+
===================
|
|
3
|
+
|
|
4
|
+
Manage videos — upload, list, update, delete, and more
|
|
5
|
+
|
|
6
|
+
* [`twentythree video`](#twentythree-video)
|
|
7
|
+
* [`twentythree video delete ID`](#twentythree-video-delete-id)
|
|
8
|
+
* [`twentythree video frame ID`](#twentythree-video-frame-id)
|
|
9
|
+
* [`twentythree video get ID`](#twentythree-video-get-id)
|
|
10
|
+
* [`twentythree video list`](#twentythree-video-list)
|
|
11
|
+
* [`twentythree video replace ID FILE`](#twentythree-video-replace-id-file)
|
|
12
|
+
* [`twentythree video section`](#twentythree-video-section)
|
|
13
|
+
* [`twentythree video section create ID`](#twentythree-video-section-create-id)
|
|
14
|
+
* [`twentythree video section delete ID`](#twentythree-video-section-delete-id)
|
|
15
|
+
* [`twentythree video section list ID`](#twentythree-video-section-list-id)
|
|
16
|
+
* [`twentythree video section set-thumbnail ID`](#twentythree-video-section-set-thumbnail-id)
|
|
17
|
+
* [`twentythree video section update ID`](#twentythree-video-section-update-id)
|
|
18
|
+
* [`twentythree video subtitle`](#twentythree-video-subtitle)
|
|
19
|
+
* [`twentythree video subtitle archive`](#twentythree-video-subtitle-archive)
|
|
20
|
+
* [`twentythree video subtitle create ID`](#twentythree-video-subtitle-create-id)
|
|
21
|
+
* [`twentythree video subtitle data ID`](#twentythree-video-subtitle-data-id)
|
|
22
|
+
* [`twentythree video subtitle delete ID`](#twentythree-video-subtitle-delete-id)
|
|
23
|
+
* [`twentythree video subtitle duplicate ID`](#twentythree-video-subtitle-duplicate-id)
|
|
24
|
+
* [`twentythree video subtitle list ID`](#twentythree-video-subtitle-list-id)
|
|
25
|
+
* [`twentythree video subtitle locales`](#twentythree-video-subtitle-locales)
|
|
26
|
+
* [`twentythree video subtitle set-primary ID`](#twentythree-video-subtitle-set-primary-id)
|
|
27
|
+
* [`twentythree video subtitle types`](#twentythree-video-subtitle-types)
|
|
28
|
+
* [`twentythree video subtitle update ID`](#twentythree-video-subtitle-update-id)
|
|
29
|
+
* [`twentythree video subtitle upload ID FILE`](#twentythree-video-subtitle-upload-id-file)
|
|
30
|
+
* [`twentythree video transcoding-progress ID`](#twentythree-video-transcoding-progress-id)
|
|
31
|
+
* [`twentythree video update ID`](#twentythree-video-update-id)
|
|
32
|
+
* [`twentythree video upload FILE`](#twentythree-video-upload-file)
|
|
33
|
+
|
|
34
|
+
## `twentythree video`
|
|
35
|
+
|
|
36
|
+
Manage videos — upload, list, update, delete, and more
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
USAGE
|
|
40
|
+
$ twentythree video
|
|
41
|
+
|
|
42
|
+
DESCRIPTION
|
|
43
|
+
Manage videos — upload, list, update, delete, and more
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
_See code: [src/commands/video/index.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/index.ts)_
|
|
47
|
+
|
|
48
|
+
## `twentythree video delete ID`
|
|
49
|
+
|
|
50
|
+
Delete a video from the active workspace
|
|
51
|
+
|
|
52
|
+
```
|
|
53
|
+
USAGE
|
|
54
|
+
$ twentythree video delete ID [--json] [-w <value>]
|
|
55
|
+
|
|
56
|
+
ARGUMENTS
|
|
57
|
+
ID Video ID
|
|
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
|
+
Delete a video from the active workspace
|
|
65
|
+
|
|
66
|
+
EXAMPLES
|
|
67
|
+
$ twentythree video delete 12345
|
|
68
|
+
|
|
69
|
+
$ twentythree video delete 12345 --json
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
_See code: [src/commands/video/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/delete.ts)_
|
|
73
|
+
|
|
74
|
+
## `twentythree video frame ID`
|
|
75
|
+
|
|
76
|
+
Extract a frame from a video
|
|
77
|
+
|
|
78
|
+
```
|
|
79
|
+
USAGE
|
|
80
|
+
$ twentythree video frame ID [--json] [-w <value>] [--time <value>]
|
|
81
|
+
|
|
82
|
+
ARGUMENTS
|
|
83
|
+
ID Video ID
|
|
84
|
+
|
|
85
|
+
FLAGS
|
|
86
|
+
--time=<value> Time offset in seconds to extract the frame from
|
|
87
|
+
|
|
88
|
+
GLOBAL FLAGS
|
|
89
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
90
|
+
--json Format output as json.
|
|
91
|
+
|
|
92
|
+
DESCRIPTION
|
|
93
|
+
Extract a frame from a video
|
|
94
|
+
|
|
95
|
+
EXAMPLES
|
|
96
|
+
$ twentythree video frame 12345
|
|
97
|
+
|
|
98
|
+
$ twentythree video frame 12345 --time 30
|
|
99
|
+
|
|
100
|
+
$ twentythree video frame 12345 --time 30 --json
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
_See code: [src/commands/video/frame.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/frame.ts)_
|
|
104
|
+
|
|
105
|
+
## `twentythree video get ID`
|
|
106
|
+
|
|
107
|
+
Get details of a specific video
|
|
108
|
+
|
|
109
|
+
```
|
|
110
|
+
USAGE
|
|
111
|
+
$ twentythree video get ID [--json] [-w <value>]
|
|
112
|
+
|
|
113
|
+
ARGUMENTS
|
|
114
|
+
ID Video ID
|
|
115
|
+
|
|
116
|
+
GLOBAL FLAGS
|
|
117
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
118
|
+
--json Format output as json.
|
|
119
|
+
|
|
120
|
+
DESCRIPTION
|
|
121
|
+
Get details of a specific video
|
|
122
|
+
|
|
123
|
+
EXAMPLES
|
|
124
|
+
$ twentythree video get 12345
|
|
125
|
+
|
|
126
|
+
$ twentythree video get 12345 --json
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
_See code: [src/commands/video/get.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/get.ts)_
|
|
130
|
+
|
|
131
|
+
## `twentythree video list`
|
|
132
|
+
|
|
133
|
+
List videos in the active workspace
|
|
134
|
+
|
|
135
|
+
```
|
|
136
|
+
USAGE
|
|
137
|
+
$ twentythree video list [--json] [-w <value>] [--limit <value>] [--include-unpublished]
|
|
138
|
+
|
|
139
|
+
FLAGS
|
|
140
|
+
--[no-]include-unpublished Include unpublished videos in the results
|
|
141
|
+
--limit=<value> Maximum number of videos to return (default: all)
|
|
142
|
+
|
|
143
|
+
GLOBAL FLAGS
|
|
144
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
145
|
+
--json Format output as json.
|
|
146
|
+
|
|
147
|
+
DESCRIPTION
|
|
148
|
+
List videos in the active workspace
|
|
149
|
+
|
|
150
|
+
EXAMPLES
|
|
151
|
+
$ twentythree video list
|
|
152
|
+
|
|
153
|
+
$ twentythree video list --json
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
_See code: [src/commands/video/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/list.ts)_
|
|
157
|
+
|
|
158
|
+
## `twentythree video replace ID FILE`
|
|
159
|
+
|
|
160
|
+
Replace the video file for an existing video
|
|
161
|
+
|
|
162
|
+
```
|
|
163
|
+
USAGE
|
|
164
|
+
$ twentythree video replace ID FILE [--json] [-w <value>] [--chunk-size <value>] [--concurrency <value>]
|
|
165
|
+
|
|
166
|
+
ARGUMENTS
|
|
167
|
+
ID Video ID to replace
|
|
168
|
+
FILE Path to the replacement video file
|
|
169
|
+
|
|
170
|
+
FLAGS
|
|
171
|
+
--chunk-size=<value> [default: 5242880] Chunk size in bytes (default: 5242880 = 100MB)
|
|
172
|
+
--concurrency=<value> [default: 5] Number of chunks to upload in parallel (default: 5)
|
|
173
|
+
|
|
174
|
+
GLOBAL FLAGS
|
|
175
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
176
|
+
--json Format output as json.
|
|
177
|
+
|
|
178
|
+
DESCRIPTION
|
|
179
|
+
Replace the video file for an existing video
|
|
180
|
+
|
|
181
|
+
EXAMPLES
|
|
182
|
+
$ twentythree video replace 12345 ./new-video.mp4
|
|
183
|
+
|
|
184
|
+
$ twentythree video replace 12345 ./new-video.mp4 --chunk-size 52428800 --concurrency 3
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
_See code: [src/commands/video/replace.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/replace.ts)_
|
|
188
|
+
|
|
189
|
+
## `twentythree video section`
|
|
190
|
+
|
|
191
|
+
Manage video sections (chapters)
|
|
192
|
+
|
|
193
|
+
```
|
|
194
|
+
USAGE
|
|
195
|
+
$ twentythree video section
|
|
196
|
+
|
|
197
|
+
DESCRIPTION
|
|
198
|
+
Manage video sections (chapters)
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
_See code: [src/commands/video/section/index.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/section/index.ts)_
|
|
202
|
+
|
|
203
|
+
## `twentythree video section create ID`
|
|
204
|
+
|
|
205
|
+
Create a new section for a video
|
|
206
|
+
|
|
207
|
+
```
|
|
208
|
+
USAGE
|
|
209
|
+
$ twentythree video section create ID --title <value> --start-time <value> [--json] [-w <value>] [--description
|
|
210
|
+
<value>]
|
|
211
|
+
|
|
212
|
+
ARGUMENTS
|
|
213
|
+
ID Video ID
|
|
214
|
+
|
|
215
|
+
FLAGS
|
|
216
|
+
--description=<value> Section description
|
|
217
|
+
--start-time=<value> (required) Start time in seconds
|
|
218
|
+
--title=<value> (required) Section title
|
|
219
|
+
|
|
220
|
+
GLOBAL FLAGS
|
|
221
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
222
|
+
--json Format output as json.
|
|
223
|
+
|
|
224
|
+
DESCRIPTION
|
|
225
|
+
Create a new section for a video
|
|
226
|
+
|
|
227
|
+
EXAMPLES
|
|
228
|
+
$ twentythree video section create 12345 --title "Introduction" --start-time 0
|
|
229
|
+
|
|
230
|
+
$ twentythree video section create 12345 --title "Chapter 1" --start-time 30 --description "First chapter"
|
|
231
|
+
```
|
|
232
|
+
|
|
233
|
+
_See code: [src/commands/video/section/create.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/section/create.ts)_
|
|
234
|
+
|
|
235
|
+
## `twentythree video section delete ID`
|
|
236
|
+
|
|
237
|
+
Delete a section from a video
|
|
238
|
+
|
|
239
|
+
```
|
|
240
|
+
USAGE
|
|
241
|
+
$ twentythree video section delete ID --section-id <value> [--json] [-w <value>]
|
|
242
|
+
|
|
243
|
+
ARGUMENTS
|
|
244
|
+
ID Video ID
|
|
245
|
+
|
|
246
|
+
FLAGS
|
|
247
|
+
--section-id=<value> (required) Section ID to delete
|
|
248
|
+
|
|
249
|
+
GLOBAL FLAGS
|
|
250
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
251
|
+
--json Format output as json.
|
|
252
|
+
|
|
253
|
+
DESCRIPTION
|
|
254
|
+
Delete a section from a video
|
|
255
|
+
|
|
256
|
+
EXAMPLES
|
|
257
|
+
$ twentythree video section delete 12345 --section-id 67
|
|
258
|
+
|
|
259
|
+
$ twentythree video section delete 12345 --section-id 67 --json
|
|
260
|
+
```
|
|
261
|
+
|
|
262
|
+
_See code: [src/commands/video/section/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/section/delete.ts)_
|
|
263
|
+
|
|
264
|
+
## `twentythree video section list ID`
|
|
265
|
+
|
|
266
|
+
List all sections for a video
|
|
267
|
+
|
|
268
|
+
```
|
|
269
|
+
USAGE
|
|
270
|
+
$ twentythree video section list ID [--json] [-w <value>]
|
|
271
|
+
|
|
272
|
+
ARGUMENTS
|
|
273
|
+
ID Video ID
|
|
274
|
+
|
|
275
|
+
GLOBAL FLAGS
|
|
276
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
277
|
+
--json Format output as json.
|
|
278
|
+
|
|
279
|
+
DESCRIPTION
|
|
280
|
+
List all sections for a video
|
|
281
|
+
|
|
282
|
+
EXAMPLES
|
|
283
|
+
$ twentythree video section list 12345
|
|
284
|
+
|
|
285
|
+
$ twentythree video section list 12345 --json
|
|
286
|
+
```
|
|
287
|
+
|
|
288
|
+
_See code: [src/commands/video/section/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/section/list.ts)_
|
|
289
|
+
|
|
290
|
+
## `twentythree video section set-thumbnail ID`
|
|
291
|
+
|
|
292
|
+
Set the thumbnail for a video section
|
|
293
|
+
|
|
294
|
+
```
|
|
295
|
+
USAGE
|
|
296
|
+
$ twentythree video section set-thumbnail ID --section-id <value> [--json] [-w <value>] [--time <value>]
|
|
297
|
+
|
|
298
|
+
ARGUMENTS
|
|
299
|
+
ID Video ID
|
|
300
|
+
|
|
301
|
+
FLAGS
|
|
302
|
+
--section-id=<value> (required) Section ID
|
|
303
|
+
--time=<value> Time offset in seconds for the thumbnail frame
|
|
304
|
+
|
|
305
|
+
GLOBAL FLAGS
|
|
306
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
307
|
+
--json Format output as json.
|
|
308
|
+
|
|
309
|
+
DESCRIPTION
|
|
310
|
+
Set the thumbnail for a video section
|
|
311
|
+
|
|
312
|
+
EXAMPLES
|
|
313
|
+
$ twentythree video section set-thumbnail 12345 --section-id 67
|
|
314
|
+
|
|
315
|
+
$ twentythree video section set-thumbnail 12345 --section-id 67 --time 15
|
|
316
|
+
|
|
317
|
+
$ twentythree video section set-thumbnail 12345 --section-id 67 --time 15 --json
|
|
318
|
+
```
|
|
319
|
+
|
|
320
|
+
_See code: [src/commands/video/section/set-thumbnail.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/section/set-thumbnail.ts)_
|
|
321
|
+
|
|
322
|
+
## `twentythree video section update ID`
|
|
323
|
+
|
|
324
|
+
Update an existing section for a video
|
|
325
|
+
|
|
326
|
+
```
|
|
327
|
+
USAGE
|
|
328
|
+
$ twentythree video section update ID --section-id <value> [--json] [-w <value>] [--title <value>] [--start-time
|
|
329
|
+
<value>] [--description <value>]
|
|
330
|
+
|
|
331
|
+
ARGUMENTS
|
|
332
|
+
ID Video ID
|
|
333
|
+
|
|
334
|
+
FLAGS
|
|
335
|
+
--description=<value> New section description
|
|
336
|
+
--section-id=<value> (required) Section ID to update
|
|
337
|
+
--start-time=<value> New start time in seconds
|
|
338
|
+
--title=<value> New section title
|
|
339
|
+
|
|
340
|
+
GLOBAL FLAGS
|
|
341
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
342
|
+
--json Format output as json.
|
|
343
|
+
|
|
344
|
+
DESCRIPTION
|
|
345
|
+
Update an existing section for a video
|
|
346
|
+
|
|
347
|
+
EXAMPLES
|
|
348
|
+
$ twentythree video section update 12345 --section-id 67 --title "New Title"
|
|
349
|
+
|
|
350
|
+
$ twentythree video section update 12345 --section-id 67 --start-time 45 --description "Updated"
|
|
351
|
+
```
|
|
352
|
+
|
|
353
|
+
_See code: [src/commands/video/section/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/section/update.ts)_
|
|
354
|
+
|
|
355
|
+
## `twentythree video subtitle`
|
|
356
|
+
|
|
357
|
+
Manage video subtitles and captions
|
|
358
|
+
|
|
359
|
+
```
|
|
360
|
+
USAGE
|
|
361
|
+
$ twentythree video subtitle
|
|
362
|
+
|
|
363
|
+
DESCRIPTION
|
|
364
|
+
Manage video subtitles and captions
|
|
365
|
+
```
|
|
366
|
+
|
|
367
|
+
_See code: [src/commands/video/subtitle/index.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/subtitle/index.ts)_
|
|
368
|
+
|
|
369
|
+
## `twentythree video subtitle archive`
|
|
370
|
+
|
|
371
|
+
Manage workspace subtitle archive transcription
|
|
372
|
+
|
|
373
|
+
```
|
|
374
|
+
USAGE
|
|
375
|
+
$ twentythree video subtitle archive [--json] [-w <value>] [--progress]
|
|
376
|
+
|
|
377
|
+
FLAGS
|
|
378
|
+
--progress Check transcription progress instead of triggering transcription
|
|
379
|
+
|
|
380
|
+
GLOBAL FLAGS
|
|
381
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
382
|
+
--json Format output as json.
|
|
383
|
+
|
|
384
|
+
DESCRIPTION
|
|
385
|
+
Manage workspace subtitle archive transcription
|
|
386
|
+
|
|
387
|
+
EXAMPLES
|
|
388
|
+
$ twentythree video subtitle archive
|
|
389
|
+
|
|
390
|
+
$ twentythree video subtitle archive --progress
|
|
391
|
+
|
|
392
|
+
$ twentythree video subtitle archive --progress --json
|
|
393
|
+
```
|
|
394
|
+
|
|
395
|
+
_See code: [src/commands/video/subtitle/archive.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/subtitle/archive.ts)_
|
|
396
|
+
|
|
397
|
+
## `twentythree video subtitle create ID`
|
|
398
|
+
|
|
399
|
+
Create a new subtitle track for a video
|
|
400
|
+
|
|
401
|
+
```
|
|
402
|
+
USAGE
|
|
403
|
+
$ twentythree video subtitle create ID --locale <value> [--json] [-w <value>] [--type <value>] [--draft]
|
|
404
|
+
|
|
405
|
+
ARGUMENTS
|
|
406
|
+
ID Video ID
|
|
407
|
+
|
|
408
|
+
FLAGS
|
|
409
|
+
--[no-]draft Create the subtitle track as a draft (hidden from viewers)
|
|
410
|
+
--locale=<value> (required) Locale for the subtitle track (e.g. en_US, fr_FR, auto)
|
|
411
|
+
--type=<value> [default: general] Subtitle type (general, closedcaptions, audiodescriptions)
|
|
412
|
+
|
|
413
|
+
GLOBAL FLAGS
|
|
414
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
415
|
+
--json Format output as json.
|
|
416
|
+
|
|
417
|
+
DESCRIPTION
|
|
418
|
+
Create a new subtitle track for a video
|
|
419
|
+
|
|
420
|
+
EXAMPLES
|
|
421
|
+
$ twentythree video subtitle create 12345 --locale en_US
|
|
422
|
+
|
|
423
|
+
$ twentythree video subtitle create 12345 --locale fr_FR --type closedcaptions
|
|
424
|
+
|
|
425
|
+
$ twentythree video subtitle create 12345 --locale auto --draft
|
|
426
|
+
```
|
|
427
|
+
|
|
428
|
+
_See code: [src/commands/video/subtitle/create.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/subtitle/create.ts)_
|
|
429
|
+
|
|
430
|
+
## `twentythree video subtitle data ID`
|
|
431
|
+
|
|
432
|
+
Get raw subtitle content for a subtitle track
|
|
433
|
+
|
|
434
|
+
```
|
|
435
|
+
USAGE
|
|
436
|
+
$ twentythree video subtitle data ID --subtitle-id <value> [--json] [-w <value>] [--format <value>] [--type <value>]
|
|
437
|
+
|
|
438
|
+
ARGUMENTS
|
|
439
|
+
ID Video ID
|
|
440
|
+
|
|
441
|
+
FLAGS
|
|
442
|
+
--format=<value> [default: websrt] Subtitle format (websrt, webvtt, json, adobe, subviewer)
|
|
443
|
+
--subtitle-id=<value> (required) Locale of the subtitle track to retrieve (e.g. en_US)
|
|
444
|
+
--type=<value> [default: general] Subtitle type (general, closedcaptions, audiodescriptions)
|
|
445
|
+
|
|
446
|
+
GLOBAL FLAGS
|
|
447
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
448
|
+
--json Format output as json.
|
|
449
|
+
|
|
450
|
+
DESCRIPTION
|
|
451
|
+
Get raw subtitle content for a subtitle track
|
|
452
|
+
|
|
453
|
+
EXAMPLES
|
|
454
|
+
$ twentythree video subtitle data 12345 --subtitle-id en_US
|
|
455
|
+
|
|
456
|
+
$ twentythree video subtitle data 12345 --subtitle-id fr_FR --format websrt
|
|
457
|
+
|
|
458
|
+
$ twentythree video subtitle data 12345 --subtitle-id en_US --json
|
|
459
|
+
```
|
|
460
|
+
|
|
461
|
+
_See code: [src/commands/video/subtitle/data.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/subtitle/data.ts)_
|
|
462
|
+
|
|
463
|
+
## `twentythree video subtitle delete ID`
|
|
464
|
+
|
|
465
|
+
Delete a subtitle track from a video
|
|
466
|
+
|
|
467
|
+
```
|
|
468
|
+
USAGE
|
|
469
|
+
$ twentythree video subtitle delete ID --subtitle-id <value> [--json] [-w <value>] [--type <value>]
|
|
470
|
+
|
|
471
|
+
ARGUMENTS
|
|
472
|
+
ID Video ID
|
|
473
|
+
|
|
474
|
+
FLAGS
|
|
475
|
+
--subtitle-id=<value> (required) Locale of the subtitle track to delete (e.g. en_US)
|
|
476
|
+
--type=<value> [default: general] Subtitle type to delete (general, closedcaptions, audiodescriptions)
|
|
477
|
+
|
|
478
|
+
GLOBAL FLAGS
|
|
479
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
480
|
+
--json Format output as json.
|
|
481
|
+
|
|
482
|
+
DESCRIPTION
|
|
483
|
+
Delete a subtitle track from a video
|
|
484
|
+
|
|
485
|
+
EXAMPLES
|
|
486
|
+
$ twentythree video subtitle delete 12345 --subtitle-id en_US
|
|
487
|
+
|
|
488
|
+
$ twentythree video subtitle delete 12345 --subtitle-id en_US --json
|
|
489
|
+
```
|
|
490
|
+
|
|
491
|
+
_See code: [src/commands/video/subtitle/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/subtitle/delete.ts)_
|
|
492
|
+
|
|
493
|
+
## `twentythree video subtitle duplicate ID`
|
|
494
|
+
|
|
495
|
+
Duplicate a subtitle track to a new locale
|
|
496
|
+
|
|
497
|
+
```
|
|
498
|
+
USAGE
|
|
499
|
+
$ twentythree video subtitle duplicate ID --subtitle-id <value> --target-locale <value> [--json] [-w <value>] [--source-type
|
|
500
|
+
<value>] [--target-type <value>] [--draft]
|
|
501
|
+
|
|
502
|
+
ARGUMENTS
|
|
503
|
+
ID Video ID
|
|
504
|
+
|
|
505
|
+
FLAGS
|
|
506
|
+
--[no-]draft Create the duplicated track as a draft
|
|
507
|
+
--source-type=<value> [default: general] Source subtitle type (general, closedcaptions, audiodescriptions)
|
|
508
|
+
--subtitle-id=<value> (required) Source locale of the subtitle track to duplicate (e.g. en_US)
|
|
509
|
+
--target-locale=<value> (required) Target locale for the duplicated subtitle track (e.g. fr_FR)
|
|
510
|
+
--target-type=<value> [default: general] Target subtitle type (general, closedcaptions, audiodescriptions)
|
|
511
|
+
|
|
512
|
+
GLOBAL FLAGS
|
|
513
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
514
|
+
--json Format output as json.
|
|
515
|
+
|
|
516
|
+
DESCRIPTION
|
|
517
|
+
Duplicate a subtitle track to a new locale
|
|
518
|
+
|
|
519
|
+
EXAMPLES
|
|
520
|
+
$ twentythree video subtitle duplicate 12345 --subtitle-id en_US --target-locale fr_FR
|
|
521
|
+
|
|
522
|
+
$ twentythree video subtitle duplicate 12345 --subtitle-id en_US --target-locale de_DE --json
|
|
523
|
+
```
|
|
524
|
+
|
|
525
|
+
_See code: [src/commands/video/subtitle/duplicate.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/subtitle/duplicate.ts)_
|
|
526
|
+
|
|
527
|
+
## `twentythree video subtitle list ID`
|
|
528
|
+
|
|
529
|
+
List all subtitle tracks for a video
|
|
530
|
+
|
|
531
|
+
```
|
|
532
|
+
USAGE
|
|
533
|
+
$ twentythree video subtitle list ID [--json] [-w <value>] [--include-drafts]
|
|
534
|
+
|
|
535
|
+
ARGUMENTS
|
|
536
|
+
ID Video ID
|
|
537
|
+
|
|
538
|
+
FLAGS
|
|
539
|
+
--[no-]include-drafts Include draft (unpublished) subtitle tracks
|
|
540
|
+
|
|
541
|
+
GLOBAL FLAGS
|
|
542
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
543
|
+
--json Format output as json.
|
|
544
|
+
|
|
545
|
+
DESCRIPTION
|
|
546
|
+
List all subtitle tracks for a video
|
|
547
|
+
|
|
548
|
+
EXAMPLES
|
|
549
|
+
$ twentythree video subtitle list 12345
|
|
550
|
+
|
|
551
|
+
$ twentythree video subtitle list 12345 --json
|
|
552
|
+
|
|
553
|
+
$ twentythree video subtitle list 12345 --include-drafts
|
|
554
|
+
```
|
|
555
|
+
|
|
556
|
+
_See code: [src/commands/video/subtitle/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/subtitle/list.ts)_
|
|
557
|
+
|
|
558
|
+
## `twentythree video subtitle locales`
|
|
559
|
+
|
|
560
|
+
List all available subtitle locales
|
|
561
|
+
|
|
562
|
+
```
|
|
563
|
+
USAGE
|
|
564
|
+
$ twentythree video subtitle locales [--json] [-w <value>]
|
|
565
|
+
|
|
566
|
+
GLOBAL FLAGS
|
|
567
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
568
|
+
--json Format output as json.
|
|
569
|
+
|
|
570
|
+
DESCRIPTION
|
|
571
|
+
List all available subtitle locales
|
|
572
|
+
|
|
573
|
+
EXAMPLES
|
|
574
|
+
$ twentythree video subtitle locales
|
|
575
|
+
|
|
576
|
+
$ twentythree video subtitle locales --json
|
|
577
|
+
```
|
|
578
|
+
|
|
579
|
+
_See code: [src/commands/video/subtitle/locales.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/subtitle/locales.ts)_
|
|
580
|
+
|
|
581
|
+
## `twentythree video subtitle set-primary ID`
|
|
582
|
+
|
|
583
|
+
Set a subtitle track as the primary language for a video
|
|
584
|
+
|
|
585
|
+
```
|
|
586
|
+
USAGE
|
|
587
|
+
$ twentythree video subtitle set-primary ID --subtitle-id <value> [--json] [-w <value>]
|
|
588
|
+
|
|
589
|
+
ARGUMENTS
|
|
590
|
+
ID Video ID
|
|
591
|
+
|
|
592
|
+
FLAGS
|
|
593
|
+
--subtitle-id=<value> (required) Locale of the subtitle track to set as primary (e.g. en_US)
|
|
594
|
+
|
|
595
|
+
GLOBAL FLAGS
|
|
596
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
597
|
+
--json Format output as json.
|
|
598
|
+
|
|
599
|
+
DESCRIPTION
|
|
600
|
+
Set a subtitle track as the primary language for a video
|
|
601
|
+
|
|
602
|
+
EXAMPLES
|
|
603
|
+
$ twentythree video subtitle set-primary 12345 --subtitle-id en_US
|
|
604
|
+
|
|
605
|
+
$ twentythree video subtitle set-primary 12345 --subtitle-id fr_FR --json
|
|
606
|
+
```
|
|
607
|
+
|
|
608
|
+
_See code: [src/commands/video/subtitle/set-primary.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/subtitle/set-primary.ts)_
|
|
609
|
+
|
|
610
|
+
## `twentythree video subtitle types`
|
|
611
|
+
|
|
612
|
+
List all available subtitle types
|
|
613
|
+
|
|
614
|
+
```
|
|
615
|
+
USAGE
|
|
616
|
+
$ twentythree video subtitle types [--json] [-w <value>]
|
|
617
|
+
|
|
618
|
+
GLOBAL FLAGS
|
|
619
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
620
|
+
--json Format output as json.
|
|
621
|
+
|
|
622
|
+
DESCRIPTION
|
|
623
|
+
List all available subtitle types
|
|
624
|
+
|
|
625
|
+
EXAMPLES
|
|
626
|
+
$ twentythree video subtitle types
|
|
627
|
+
|
|
628
|
+
$ twentythree video subtitle types --json
|
|
629
|
+
```
|
|
630
|
+
|
|
631
|
+
_See code: [src/commands/video/subtitle/types.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/subtitle/types.ts)_
|
|
632
|
+
|
|
633
|
+
## `twentythree video subtitle update ID`
|
|
634
|
+
|
|
635
|
+
Update a subtitle track for a video
|
|
636
|
+
|
|
637
|
+
```
|
|
638
|
+
USAGE
|
|
639
|
+
$ twentythree video subtitle update ID --subtitle-id <value> [--json] [-w <value>] [--type <value>] [--draft]
|
|
640
|
+
[--default]
|
|
641
|
+
|
|
642
|
+
ARGUMENTS
|
|
643
|
+
ID Video ID
|
|
644
|
+
|
|
645
|
+
FLAGS
|
|
646
|
+
--[no-]default Set this subtitle track as the default
|
|
647
|
+
--[no-]draft Set draft status (true = hidden, false = published)
|
|
648
|
+
--subtitle-id=<value> (required) Locale of the subtitle track to update (e.g. en_US)
|
|
649
|
+
--type=<value> New subtitle type (general, closedcaptions, audiodescriptions)
|
|
650
|
+
|
|
651
|
+
GLOBAL FLAGS
|
|
652
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
653
|
+
--json Format output as json.
|
|
654
|
+
|
|
655
|
+
DESCRIPTION
|
|
656
|
+
Update a subtitle track for a video
|
|
657
|
+
|
|
658
|
+
EXAMPLES
|
|
659
|
+
$ twentythree video subtitle update 12345 --subtitle-id en_US --draft false
|
|
660
|
+
|
|
661
|
+
$ twentythree video subtitle update 12345 --subtitle-id en_US --type closedcaptions
|
|
662
|
+
```
|
|
663
|
+
|
|
664
|
+
_See code: [src/commands/video/subtitle/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/subtitle/update.ts)_
|
|
665
|
+
|
|
666
|
+
## `twentythree video subtitle upload ID FILE`
|
|
667
|
+
|
|
668
|
+
Upload a subtitle file (SRT or WebVTT) for a video
|
|
669
|
+
|
|
670
|
+
```
|
|
671
|
+
USAGE
|
|
672
|
+
$ twentythree video subtitle upload ID FILE --locale <value> [--json] [-w <value>] [--type <value>] [--draft]
|
|
673
|
+
|
|
674
|
+
ARGUMENTS
|
|
675
|
+
ID Video ID
|
|
676
|
+
FILE Path to the subtitle file (SRT or WebVTT)
|
|
677
|
+
|
|
678
|
+
FLAGS
|
|
679
|
+
--[no-]draft Upload as a draft (hidden from viewers until published)
|
|
680
|
+
--locale=<value> (required) Locale for the subtitle track (e.g. en_US, fr_FR)
|
|
681
|
+
--type=<value> [default: general] Subtitle type (general, closedcaptions, audiodescriptions)
|
|
682
|
+
|
|
683
|
+
GLOBAL FLAGS
|
|
684
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
685
|
+
--json Format output as json.
|
|
686
|
+
|
|
687
|
+
DESCRIPTION
|
|
688
|
+
Upload a subtitle file (SRT or WebVTT) for a video
|
|
689
|
+
|
|
690
|
+
EXAMPLES
|
|
691
|
+
$ twentythree video subtitle upload 12345 ./subtitles.srt --locale en_US
|
|
692
|
+
|
|
693
|
+
$ twentythree video subtitle upload 12345 ./captions.vtt --locale fr_FR --type closedcaptions
|
|
694
|
+
|
|
695
|
+
$ twentythree video subtitle upload 12345 ./subtitles.srt --locale en_US --draft
|
|
696
|
+
```
|
|
697
|
+
|
|
698
|
+
_See code: [src/commands/video/subtitle/upload.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/subtitle/upload.ts)_
|
|
699
|
+
|
|
700
|
+
## `twentythree video transcoding-progress ID`
|
|
701
|
+
|
|
702
|
+
Check the transcoding progress for a video
|
|
703
|
+
|
|
704
|
+
```
|
|
705
|
+
USAGE
|
|
706
|
+
$ twentythree video transcoding-progress ID [--json] [-w <value>]
|
|
707
|
+
|
|
708
|
+
ARGUMENTS
|
|
709
|
+
ID Video ID
|
|
710
|
+
|
|
711
|
+
GLOBAL FLAGS
|
|
712
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
713
|
+
--json Format output as json.
|
|
714
|
+
|
|
715
|
+
DESCRIPTION
|
|
716
|
+
Check the transcoding progress for a video
|
|
717
|
+
|
|
718
|
+
EXAMPLES
|
|
719
|
+
$ twentythree video transcoding-progress 12345
|
|
720
|
+
|
|
721
|
+
$ twentythree video transcoding-progress 12345 --json
|
|
722
|
+
```
|
|
723
|
+
|
|
724
|
+
_See code: [src/commands/video/transcoding-progress.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/transcoding-progress.ts)_
|
|
725
|
+
|
|
726
|
+
## `twentythree video update ID`
|
|
727
|
+
|
|
728
|
+
Update metadata for a video
|
|
729
|
+
|
|
730
|
+
```
|
|
731
|
+
USAGE
|
|
732
|
+
$ twentythree video update ID [--360] [--json] [-w <value>] [--title <value>] [--description <value>] [--tags
|
|
733
|
+
<value>] [--category-id <value>] [--publish] [--promote] [--publish-date <value>]
|
|
734
|
+
|
|
735
|
+
ARGUMENTS
|
|
736
|
+
ID Video ID
|
|
737
|
+
|
|
738
|
+
FLAGS
|
|
739
|
+
--[no-]360 Mark as 360° video
|
|
740
|
+
--category-id=<value> Category ID (or comma-separated IDs) to assign the video to
|
|
741
|
+
--description=<value> New description for the video
|
|
742
|
+
--[no-]promote Promote or demote the video
|
|
743
|
+
--[no-]publish Publish or unpublish the video
|
|
744
|
+
--publish-date=<value> Scheduled publish date/time (ISO 8601)
|
|
745
|
+
--tags=<value> Space-separated tags (replaces existing tags)
|
|
746
|
+
--title=<value> New title for the video
|
|
747
|
+
|
|
748
|
+
GLOBAL FLAGS
|
|
749
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
750
|
+
--json Format output as json.
|
|
751
|
+
|
|
752
|
+
DESCRIPTION
|
|
753
|
+
Update metadata for a video
|
|
754
|
+
|
|
755
|
+
EXAMPLES
|
|
756
|
+
$ twentythree video update 12345 --title "New Title"
|
|
757
|
+
|
|
758
|
+
$ twentythree video update 12345 --publish
|
|
759
|
+
|
|
760
|
+
$ twentythree video update 12345
|
|
761
|
+
```
|
|
762
|
+
|
|
763
|
+
_See code: [src/commands/video/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/update.ts)_
|
|
764
|
+
|
|
765
|
+
## `twentythree video upload FILE`
|
|
766
|
+
|
|
767
|
+
Upload a video file to the active workspace
|
|
768
|
+
|
|
769
|
+
```
|
|
770
|
+
USAGE
|
|
771
|
+
$ twentythree video upload FILE [--json] [-w <value>] [--title <value>] [--description <value>] [--tags <value>]
|
|
772
|
+
[--category-id <value>] [--publish] [--chunk-size <value>] [--concurrency <value>]
|
|
773
|
+
|
|
774
|
+
ARGUMENTS
|
|
775
|
+
FILE Path to the video file to upload
|
|
776
|
+
|
|
777
|
+
FLAGS
|
|
778
|
+
--category-id=<value> Category ID (or comma-separated IDs) to assign the video to
|
|
779
|
+
--chunk-size=<value> [default: 5242880] Chunk size in bytes (default: 5242880 = 100MB)
|
|
780
|
+
--concurrency=<value> [default: 5] Number of chunks to upload in parallel (default: 5)
|
|
781
|
+
--description=<value> Description for the uploaded video
|
|
782
|
+
--publish Publish the video immediately after upload
|
|
783
|
+
--tags=<value> Space-separated tags for the uploaded video
|
|
784
|
+
--title=<value> Title for the uploaded video
|
|
785
|
+
|
|
786
|
+
GLOBAL FLAGS
|
|
787
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
788
|
+
--json Format output as json.
|
|
789
|
+
|
|
790
|
+
DESCRIPTION
|
|
791
|
+
Upload a video file to the active workspace
|
|
792
|
+
|
|
793
|
+
EXAMPLES
|
|
794
|
+
$ twentythree video upload ./video.mp4
|
|
795
|
+
|
|
796
|
+
$ twentythree video upload ./video.mp4 --title "My Video" --publish
|
|
797
|
+
|
|
798
|
+
$ twentythree video upload ./video.mp4 --chunk-size 52428800 --concurrency 3
|
|
799
|
+
```
|
|
800
|
+
|
|
801
|
+
_See code: [src/commands/video/upload.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/video/upload.ts)_
|