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,27 @@
|
|
|
1
|
+
`twentythree workspace:list`
|
|
2
|
+
============================
|
|
3
|
+
|
|
4
|
+
List all configured workspaces
|
|
5
|
+
|
|
6
|
+
* [`twentythree workspace list`](#twentythree-workspace-list)
|
|
7
|
+
|
|
8
|
+
## `twentythree workspace list`
|
|
9
|
+
|
|
10
|
+
List all configured workspaces
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree workspace list [--json] [-w <value>]
|
|
15
|
+
|
|
16
|
+
GLOBAL FLAGS
|
|
17
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
18
|
+
--json Format output as json.
|
|
19
|
+
|
|
20
|
+
DESCRIPTION
|
|
21
|
+
List all configured workspaces
|
|
22
|
+
|
|
23
|
+
EXAMPLES
|
|
24
|
+
$ twentythree workspace list
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
_See code: [src/commands/workspace/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/workspace/list.ts)_
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
`twentythree workspace:use`
|
|
2
|
+
===========================
|
|
3
|
+
|
|
4
|
+
Switch the active workspace
|
|
5
|
+
|
|
6
|
+
* [`twentythree workspace use NAME`](#twentythree-workspace-use-name)
|
|
7
|
+
|
|
8
|
+
## `twentythree workspace use NAME`
|
|
9
|
+
|
|
10
|
+
Switch the active workspace
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree workspace use NAME [--json] [-w <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
NAME Workspace domain or display name
|
|
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
|
+
Switch the active workspace
|
|
25
|
+
|
|
26
|
+
EXAMPLES
|
|
27
|
+
$ twentythree workspace use company.video23.com
|
|
28
|
+
|
|
29
|
+
$ twentythree workspace use "Company Name"
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
_See code: [src/commands/workspace/use.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/workspace/use.ts)_
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
`twentythree workspace`
|
|
2
|
+
=======================
|
|
3
|
+
|
|
4
|
+
List all configured workspaces
|
|
5
|
+
|
|
6
|
+
* [`twentythree workspace list`](#twentythree-workspace-list)
|
|
7
|
+
* [`twentythree workspace use NAME`](#twentythree-workspace-use-name)
|
|
8
|
+
|
|
9
|
+
## `twentythree workspace list`
|
|
10
|
+
|
|
11
|
+
List all configured workspaces
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
USAGE
|
|
15
|
+
$ twentythree workspace list [--json] [-w <value>]
|
|
16
|
+
|
|
17
|
+
GLOBAL FLAGS
|
|
18
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
19
|
+
--json Format output as json.
|
|
20
|
+
|
|
21
|
+
DESCRIPTION
|
|
22
|
+
List all configured workspaces
|
|
23
|
+
|
|
24
|
+
EXAMPLES
|
|
25
|
+
$ twentythree workspace list
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
_See code: [src/commands/workspace/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/workspace/list.ts)_
|
|
29
|
+
|
|
30
|
+
## `twentythree workspace use NAME`
|
|
31
|
+
|
|
32
|
+
Switch the active workspace
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
USAGE
|
|
36
|
+
$ twentythree workspace use NAME [--json] [-w <value>]
|
|
37
|
+
|
|
38
|
+
ARGUMENTS
|
|
39
|
+
NAME Workspace domain or display name
|
|
40
|
+
|
|
41
|
+
GLOBAL FLAGS
|
|
42
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
43
|
+
--json Format output as json.
|
|
44
|
+
|
|
45
|
+
DESCRIPTION
|
|
46
|
+
Switch the active workspace
|
|
47
|
+
|
|
48
|
+
EXAMPLES
|
|
49
|
+
$ twentythree workspace use company.video23.com
|
|
50
|
+
|
|
51
|
+
$ twentythree workspace use "Company Name"
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
_See code: [src/commands/workspace/use.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/workspace/use.ts)_
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
# Updating the API Spec
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
The TwentyThree API evolves over time. When the upstream OpenAPI spec changes, the CLI's type definitions and any affected commands need to be updated to stay in sync. This guide walks through the full update workflow — from downloading the latest spec to committing the changes.
|
|
6
|
+
|
|
7
|
+
## Prerequisites
|
|
8
|
+
|
|
9
|
+
- pnpm (workspace-level dependency management)
|
|
10
|
+
- Claude Code (for assisted command fixes)
|
|
11
|
+
- The repo cloned and dependencies installed (`pnpm install`)
|
|
12
|
+
|
|
13
|
+
## Step 1: Run the update script
|
|
14
|
+
|
|
15
|
+
From the repo root:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
pnpm update-api-spec
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Or from inside the CLI package directory:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
cd packages/twentythree-cli && ./update-api-spec.sh
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
The script does three things:
|
|
28
|
+
|
|
29
|
+
1. Downloads the latest OpenAPI spec to `packages/twentythree-cli/specs/twentythree-api-swagger.json`
|
|
30
|
+
2. Prints a `git diff` of the spec file showing what changed
|
|
31
|
+
3. Runs `pnpm generate-types` to regenerate `src/api/types.ts` from the updated spec
|
|
32
|
+
|
|
33
|
+
## Step 2: Read the diff output
|
|
34
|
+
|
|
35
|
+
The script prints a raw `git diff` of the JSON spec file. When reading the diff, look for:
|
|
36
|
+
|
|
37
|
+
- **New `paths` entries** — new API endpoints that may need new CLI commands
|
|
38
|
+
- **Removed `paths` entries** — endpoints that no longer exist; existing commands may break
|
|
39
|
+
- **Changed `parameters` or `requestBody` under an existing path** — TypeScript errors will surface these when you compile
|
|
40
|
+
- **Changed `responses` shapes** — TypeScript errors will surface these too
|
|
41
|
+
|
|
42
|
+
Example: a new endpoint being added looks like this in the diff:
|
|
43
|
+
|
|
44
|
+
```diff
|
|
45
|
+
+ "/api/video/analytics/engagement": {
|
|
46
|
+
+ "get": {
|
|
47
|
+
+ "operationId": "getVideoAnalyticsEngagement",
|
|
48
|
+
+ "parameters": [...]
|
|
49
|
+
+ }
|
|
50
|
+
+ },
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## Step 3: Apply changes with Claude Code
|
|
54
|
+
|
|
55
|
+
First, capture any TypeScript errors introduced by the updated types:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
pnpm --filter twentythree-cli exec tsc --noEmit
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
Then:
|
|
62
|
+
|
|
63
|
+
1. Open a Claude Code session
|
|
64
|
+
2. Paste the diff output and any TypeScript errors into the session
|
|
65
|
+
3. Ask Claude to update affected command files and fix broken types
|
|
66
|
+
|
|
67
|
+
Note: The codebase may have pre-existing type errors unrelated to the spec change. Focus on errors that are newly introduced after running the update script — not pre-existing ones.
|
|
68
|
+
|
|
69
|
+
## Step 4: Verify
|
|
70
|
+
|
|
71
|
+
Run both checks to confirm the update is clean:
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
pnpm --filter twentythree-cli exec tsc --noEmit
|
|
75
|
+
pnpm --filter twentythree-cli test --run
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
Both should complete without new errors introduced by the spec update.
|
|
79
|
+
|
|
80
|
+
## Step 5: Commit
|
|
81
|
+
|
|
82
|
+
Commit these files together in a single commit:
|
|
83
|
+
|
|
84
|
+
- `packages/twentythree-cli/specs/twentythree-api-swagger.json` (updated spec)
|
|
85
|
+
- `packages/twentythree-cli/src/api/types.ts` (regenerated types)
|
|
86
|
+
- Any command files updated to match the new spec
|
|
87
|
+
|
|
88
|
+
Example commit message:
|
|
89
|
+
|
|
90
|
+
```
|
|
91
|
+
chore: update API spec and regenerate types (YYYY-MM-DD)
|
|
92
|
+
```
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# Getting Started
|
|
2
|
+
|
|
3
|
+
## Prerequisites
|
|
4
|
+
|
|
5
|
+
- Node.js 22 or later
|
|
6
|
+
- Install the CLI globally:
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
npm install -g twentythree-cli
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Step 1: Add your credentials
|
|
13
|
+
|
|
14
|
+
The CLI stores your TwentyThree domain and bearer token in the OS keychain. You only need to do this once per workspace.
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
twentythree auth credentials
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
The command prompts you for your domain and bearer token:
|
|
21
|
+
|
|
22
|
+
```
|
|
23
|
+
Domain (e.g. company.video23.com): company.video23.com
|
|
24
|
+
Bearer token (press Enter to skip for anonymous access): ••••••••
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
After you enter a bearer token, the CLI automatically discovers all workspaces associated with your token and sets the first one as active. If your token has access to multiple workspaces, you will be prompted to select a default.
|
|
28
|
+
|
|
29
|
+
## Step 2: Select a workspace
|
|
30
|
+
|
|
31
|
+
If your token has access to multiple workspaces, you can list them and switch between them at any time.
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
twentythree workspace list
|
|
35
|
+
twentythree workspace use company.video23.com
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Step 3: Run your first command
|
|
39
|
+
|
|
40
|
+
List the videos in your active workspace.
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
twentythree video list
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Sample output:
|
|
47
|
+
|
|
48
|
+
```
|
|
49
|
+
ID Title Duration Status Published Updated
|
|
50
|
+
─────────────────────────────────────────────────────────────────────────────
|
|
51
|
+
12345678 Introduction to TwentyThree 2:34 encoded yes 2024-03-15
|
|
52
|
+
12345679 Product Demo Q1 5:12 encoded yes 2024-03-10
|
|
53
|
+
12345680 Webinar Recap 48:00 encoded no 2024-03-08
|
|
54
|
+
3 videos
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## Next steps
|
|
58
|
+
|
|
59
|
+
Browse all 244 commands in the [Command Reference](../commands/README.md).
|
|
60
|
+
|
|
61
|
+
Run `twentythree <topic> --help` for help on any topic. For example:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
twentythree video --help
|
|
65
|
+
twentythree auth --help
|
|
66
|
+
```
|