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,31 @@
|
|
|
1
|
+
# Command Reference
|
|
2
|
+
|
|
3
|
+
TwentyThree CLI provides 244 commands across 24 topics.
|
|
4
|
+
|
|
5
|
+
| Topic | Description | Reference |
|
|
6
|
+
|-------|-------------|-----------|
|
|
7
|
+
| `action` | Create a new CTA action on a video or webinar | [docs](action.md) |
|
|
8
|
+
| `analytics` | Get conversion analytics data | [docs](analytics.md) |
|
|
9
|
+
| `app` | Create a new app integration | [docs](app.md) |
|
|
10
|
+
| `audience` | List audience companies | [docs](audience.md) |
|
|
11
|
+
| `auth` | Configure domain and bearer token for a TwentyThree workspace | [docs](auth.md) |
|
|
12
|
+
| `category` | Manage categories -- list, create, update, and delete | [docs](category.md) |
|
|
13
|
+
| `collector` | Block a collector from a video or webinar | [docs](collector.md) |
|
|
14
|
+
| `comment` | Add a comment to an object | [docs](comment.md) |
|
|
15
|
+
| `doctor` | Check CLI credentials, connectivity, and token validity | [docs](doctor.md) |
|
|
16
|
+
| `openupload` | List open upload tokens in the active workspace | [docs](openupload.md) |
|
|
17
|
+
| `player` | Delete a player from the active workspace | [docs](player.md) |
|
|
18
|
+
| `poll` | Create a new poll for a webinar | [docs](poll.md) |
|
|
19
|
+
| `presentation` | List available presentation page link locations | [docs](presentation.md) |
|
|
20
|
+
| `protection` | Apply protection to content | [docs](protection.md) |
|
|
21
|
+
| `session` | Get a session access token | [docs](session.md) |
|
|
22
|
+
| `setting` | Update workspace settings (key=value pairs) | [docs](setting.md) |
|
|
23
|
+
| `site` | Get site settings for the active workspace | [docs](site.md) |
|
|
24
|
+
| `spot` | Get details of a specific spot | [docs](spot.md) |
|
|
25
|
+
| `tag` | List tags in the active workspace | [docs](tag.md) |
|
|
26
|
+
| `thumbnail` | Manage thumbnail templates -- list, add, update, delete, duplicate, data, and manage files | [docs](thumbnail.md) |
|
|
27
|
+
| `user` | Create a new user | [docs](user.md) |
|
|
28
|
+
| `video` | Manage videos -- upload, list, update, delete, and more | [docs](video.md) |
|
|
29
|
+
| `webhook` | List available webhook event types | [docs](webhook.md) |
|
|
30
|
+
| `webinar` | Manage webinars -- create, list, update, delete, and more | [docs](webinar.md) |
|
|
31
|
+
| `workspace` | List all configured workspaces | [docs](workspace.md) |
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
`twentythree action:add`
|
|
2
|
+
========================
|
|
3
|
+
|
|
4
|
+
Create a new CTA action on a video or webinar
|
|
5
|
+
|
|
6
|
+
* [`twentythree action add`](#twentythree-action-add)
|
|
7
|
+
|
|
8
|
+
## `twentythree action add`
|
|
9
|
+
|
|
10
|
+
Create a new CTA action on a video or webinar
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree action add --type <value> --object-id <value> [--json] [-w <value>] [--fields <value>]
|
|
15
|
+
|
|
16
|
+
FLAGS
|
|
17
|
+
--fields=<value> Additional fields for the action (key=value pairs)
|
|
18
|
+
--object-id=<value> (required) Object ID (video or webinar) to attach the action to
|
|
19
|
+
--type=<value> (required) Action type (use `action types` to list available types)
|
|
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
|
+
Create a new CTA action on a video or webinar
|
|
27
|
+
|
|
28
|
+
EXAMPLES
|
|
29
|
+
$ twentythree action add --type overlay --object-id 12345
|
|
30
|
+
|
|
31
|
+
$ twentythree action add --type overlay --object-id 12345 --fields "title=Buy Now"
|
|
32
|
+
|
|
33
|
+
$ twentythree action add --type overlay --object-id 12345 --json
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
_See code: [src/commands/action/add.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/action/add.ts)_
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
`twentythree action:delete`
|
|
2
|
+
===========================
|
|
3
|
+
|
|
4
|
+
Delete a CTA action
|
|
5
|
+
|
|
6
|
+
* [`twentythree action delete ID`](#twentythree-action-delete-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree action delete ID`
|
|
9
|
+
|
|
10
|
+
Delete a CTA action
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree action delete ID [--json] [-w <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Action 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 CTA action
|
|
25
|
+
|
|
26
|
+
EXAMPLES
|
|
27
|
+
$ twentythree action delete 12345
|
|
28
|
+
|
|
29
|
+
$ twentythree action delete 12345 --json
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
_See code: [src/commands/action/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/action/delete.ts)_
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
`twentythree action:exclude`
|
|
2
|
+
============================
|
|
3
|
+
|
|
4
|
+
Exclude a CTA action from an object (or undo an exclusion)
|
|
5
|
+
|
|
6
|
+
* [`twentythree action exclude ID`](#twentythree-action-exclude-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree action exclude ID`
|
|
9
|
+
|
|
10
|
+
Exclude a CTA action from an object (or undo an exclusion)
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree action exclude ID --object-id <value> [--json] [-w <value>] [--undo]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Action ID
|
|
18
|
+
|
|
19
|
+
FLAGS
|
|
20
|
+
--object-id=<value> (required) Object ID to exclude the action from
|
|
21
|
+
--undo Remove the exclusion (reverse this operation)
|
|
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
|
+
Exclude a CTA action from an object (or undo an exclusion)
|
|
29
|
+
|
|
30
|
+
EXAMPLES
|
|
31
|
+
$ twentythree action exclude 12345 --object-id 6789
|
|
32
|
+
|
|
33
|
+
$ twentythree action exclude 12345 --object-id 6789 --undo
|
|
34
|
+
|
|
35
|
+
$ twentythree action exclude 12345 --object-id 6789 --json
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
_See code: [src/commands/action/exclude.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/action/exclude.ts)_
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
`twentythree action:get`
|
|
2
|
+
========================
|
|
3
|
+
|
|
4
|
+
Get details of a CTA action
|
|
5
|
+
|
|
6
|
+
* [`twentythree action get [ID]`](#twentythree-action-get-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree action get [ID]`
|
|
9
|
+
|
|
10
|
+
Get details of a CTA action
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree action get [ID] [--json] [-w <value>] [--object-id <value>] [--video-id <value>] [--webinar-id
|
|
15
|
+
<value>] [--token <value>] [--player-id <value>] [--exclude-internal] [--exclude-pending] [--exclude-items]
|
|
16
|
+
|
|
17
|
+
ARGUMENTS
|
|
18
|
+
[ID] Action ID (optional)
|
|
19
|
+
|
|
20
|
+
FLAGS
|
|
21
|
+
--exclude-internal Exclude internal actions
|
|
22
|
+
--exclude-items Exclude action items
|
|
23
|
+
--exclude-pending Exclude pending actions
|
|
24
|
+
--object-id=<value> Object ID context
|
|
25
|
+
--player-id=<value> Player ID context
|
|
26
|
+
--token=<value> Object token for authentication
|
|
27
|
+
--video-id=<value> Video ID context (maps to photo_id)
|
|
28
|
+
--webinar-id=<value> Webinar ID context (maps to live_id)
|
|
29
|
+
|
|
30
|
+
GLOBAL FLAGS
|
|
31
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
32
|
+
--json Format output as json.
|
|
33
|
+
|
|
34
|
+
DESCRIPTION
|
|
35
|
+
Get details of a CTA action
|
|
36
|
+
|
|
37
|
+
EXAMPLES
|
|
38
|
+
$ twentythree action get 12345
|
|
39
|
+
|
|
40
|
+
$ twentythree action get --video-id 6789
|
|
41
|
+
|
|
42
|
+
$ twentythree action get --webinar-id 1234 --json
|
|
43
|
+
|
|
44
|
+
$ twentythree action get 12345 --json
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
_See code: [src/commands/action/get.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/action/get.ts)_
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
`twentythree action:include`
|
|
2
|
+
============================
|
|
3
|
+
|
|
4
|
+
Include an object in a CTA action scope (or undo an inclusion)
|
|
5
|
+
|
|
6
|
+
* [`twentythree action include ID`](#twentythree-action-include-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree action include ID`
|
|
9
|
+
|
|
10
|
+
Include an object in a CTA action scope (or undo an inclusion)
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree action include ID --object-id <value> [--json] [-w <value>] [--undo]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Action ID
|
|
18
|
+
|
|
19
|
+
FLAGS
|
|
20
|
+
--object-id=<value> (required) Object ID to include the action on
|
|
21
|
+
--undo Remove the inclusion (reverse this operation)
|
|
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
|
+
Include an object in a CTA action scope (or undo an inclusion)
|
|
29
|
+
|
|
30
|
+
EXAMPLES
|
|
31
|
+
$ twentythree action include 12345 --object-id 6789
|
|
32
|
+
|
|
33
|
+
$ twentythree action include 12345 --object-id 6789 --undo
|
|
34
|
+
|
|
35
|
+
$ twentythree action include 12345 --object-id 6789 --json
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
_See code: [src/commands/action/include.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/action/include.ts)_
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
`twentythree action:list`
|
|
2
|
+
=========================
|
|
3
|
+
|
|
4
|
+
List CTA actions for a video, webinar, or object
|
|
5
|
+
|
|
6
|
+
* [`twentythree action list`](#twentythree-action-list)
|
|
7
|
+
|
|
8
|
+
## `twentythree action list`
|
|
9
|
+
|
|
10
|
+
List CTA actions for a video, webinar, or object
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree action list [--json] [-w <value>] [--object-id <value>] [--video-id <value>] [--webinar-id
|
|
15
|
+
<value>] [--player-id <value>] [--exclude-internal] [--exclude-pending] [--exclude-items]
|
|
16
|
+
|
|
17
|
+
FLAGS
|
|
18
|
+
--exclude-internal Exclude internal actions
|
|
19
|
+
--exclude-items Exclude action items
|
|
20
|
+
--exclude-pending Exclude pending actions
|
|
21
|
+
--object-id=<value> Object ID to filter actions by
|
|
22
|
+
--player-id=<value> Player ID to filter actions by
|
|
23
|
+
--video-id=<value> Video ID to filter actions by (maps to photo_id)
|
|
24
|
+
--webinar-id=<value> Webinar ID to filter actions by (maps to live_id)
|
|
25
|
+
|
|
26
|
+
GLOBAL FLAGS
|
|
27
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
28
|
+
--json Format output as json.
|
|
29
|
+
|
|
30
|
+
DESCRIPTION
|
|
31
|
+
List CTA actions for a video, webinar, or object
|
|
32
|
+
|
|
33
|
+
EXAMPLES
|
|
34
|
+
$ twentythree action list --video-id 12345
|
|
35
|
+
|
|
36
|
+
$ twentythree action list --webinar-id 6789
|
|
37
|
+
|
|
38
|
+
$ twentythree action list --object-id 12345
|
|
39
|
+
|
|
40
|
+
$ twentythree action list --video-id 12345 --json
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
_See code: [src/commands/action/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/action/list.ts)_
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
`twentythree action:types`
|
|
2
|
+
==========================
|
|
3
|
+
|
|
4
|
+
List available CTA action types
|
|
5
|
+
|
|
6
|
+
* [`twentythree action types`](#twentythree-action-types)
|
|
7
|
+
|
|
8
|
+
## `twentythree action types`
|
|
9
|
+
|
|
10
|
+
List available CTA action types
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree action types [--json] [-w <value>] [--exclude-internal]
|
|
15
|
+
|
|
16
|
+
FLAGS
|
|
17
|
+
--exclude-internal Exclude internal action types from the list
|
|
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 CTA action types
|
|
25
|
+
|
|
26
|
+
EXAMPLES
|
|
27
|
+
$ twentythree action types
|
|
28
|
+
|
|
29
|
+
$ twentythree action types --exclude-internal
|
|
30
|
+
|
|
31
|
+
$ twentythree action types --json
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
_See code: [src/commands/action/types.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/action/types.ts)_
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
`twentythree action:update`
|
|
2
|
+
===========================
|
|
3
|
+
|
|
4
|
+
Update an existing CTA action
|
|
5
|
+
|
|
6
|
+
* [`twentythree action update ID`](#twentythree-action-update-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree action update ID`
|
|
9
|
+
|
|
10
|
+
Update an existing CTA action
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree action update ID --name <value> --start-time <value> --end-time <value> [--json] [-w <value>]
|
|
15
|
+
[--time-relative-to <value>] [--return-url <value>]
|
|
16
|
+
|
|
17
|
+
ARGUMENTS
|
|
18
|
+
ID Action ID
|
|
19
|
+
|
|
20
|
+
FLAGS
|
|
21
|
+
--end-time=<value> (required) End time of the action (seconds)
|
|
22
|
+
--name=<value> (required) Display name for the action
|
|
23
|
+
--return-url=<value> Return URL for the action
|
|
24
|
+
--start-time=<value> (required) Start time of the action (seconds)
|
|
25
|
+
--time-relative-to=<value> [default: duration] What the timing is relative to (default: duration)
|
|
26
|
+
|
|
27
|
+
GLOBAL FLAGS
|
|
28
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
29
|
+
--json Format output as json.
|
|
30
|
+
|
|
31
|
+
DESCRIPTION
|
|
32
|
+
Update an existing CTA action
|
|
33
|
+
|
|
34
|
+
EXAMPLES
|
|
35
|
+
$ twentythree action update 12345 --name "Buy Now" --start-time 10 --end-time 20
|
|
36
|
+
|
|
37
|
+
$ twentythree action update 12345 --name "Buy Now" --start-time 10 --end-time 20 --return-url "https://example.com"
|
|
38
|
+
|
|
39
|
+
$ twentythree action update 12345 --name "Buy Now" --start-time 10 --end-time 20 --json
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
_See code: [src/commands/action/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/action/update.ts)_
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
`twentythree action:upload`
|
|
2
|
+
===========================
|
|
3
|
+
|
|
4
|
+
Upload a file to an action variable
|
|
5
|
+
|
|
6
|
+
* [`twentythree action upload ID VARIABLE-NAME FILE`](#twentythree-action-upload-id-variable-name-file)
|
|
7
|
+
|
|
8
|
+
## `twentythree action upload ID VARIABLE-NAME FILE`
|
|
9
|
+
|
|
10
|
+
Upload a file to an action variable
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree action upload ID VARIABLE-NAME FILE [--json] [-w <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Action ID
|
|
18
|
+
VARIABLE-NAME Variable name for the file upload
|
|
19
|
+
FILE Path to the file to upload
|
|
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
|
+
Upload a file to an action variable
|
|
27
|
+
|
|
28
|
+
EXAMPLES
|
|
29
|
+
$ twentythree action upload 12345 image ./banner.png
|
|
30
|
+
|
|
31
|
+
$ twentythree action upload 12345 video ./clip.mp4
|
|
32
|
+
|
|
33
|
+
$ twentythree action upload 12345 image ./banner.png --json
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
_See code: [src/commands/action/upload.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/action/upload.ts)_
|
|
@@ -0,0 +1,306 @@
|
|
|
1
|
+
`twentythree action`
|
|
2
|
+
====================
|
|
3
|
+
|
|
4
|
+
Create a new CTA action on a video or webinar
|
|
5
|
+
|
|
6
|
+
* [`twentythree action add`](#twentythree-action-add)
|
|
7
|
+
* [`twentythree action delete ID`](#twentythree-action-delete-id)
|
|
8
|
+
* [`twentythree action exclude ID`](#twentythree-action-exclude-id)
|
|
9
|
+
* [`twentythree action get [ID]`](#twentythree-action-get-id)
|
|
10
|
+
* [`twentythree action include ID`](#twentythree-action-include-id)
|
|
11
|
+
* [`twentythree action list`](#twentythree-action-list)
|
|
12
|
+
* [`twentythree action types`](#twentythree-action-types)
|
|
13
|
+
* [`twentythree action update ID`](#twentythree-action-update-id)
|
|
14
|
+
* [`twentythree action upload ID VARIABLE-NAME FILE`](#twentythree-action-upload-id-variable-name-file)
|
|
15
|
+
|
|
16
|
+
## `twentythree action add`
|
|
17
|
+
|
|
18
|
+
Create a new CTA action on a video or webinar
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
USAGE
|
|
22
|
+
$ twentythree action add --type <value> --object-id <value> [--json] [-w <value>] [--fields <value>]
|
|
23
|
+
|
|
24
|
+
FLAGS
|
|
25
|
+
--fields=<value> Additional fields for the action (key=value pairs)
|
|
26
|
+
--object-id=<value> (required) Object ID (video or webinar) to attach the action to
|
|
27
|
+
--type=<value> (required) Action type (use `action types` to list available types)
|
|
28
|
+
|
|
29
|
+
GLOBAL FLAGS
|
|
30
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
31
|
+
--json Format output as json.
|
|
32
|
+
|
|
33
|
+
DESCRIPTION
|
|
34
|
+
Create a new CTA action on a video or webinar
|
|
35
|
+
|
|
36
|
+
EXAMPLES
|
|
37
|
+
$ twentythree action add --type overlay --object-id 12345
|
|
38
|
+
|
|
39
|
+
$ twentythree action add --type overlay --object-id 12345 --fields "title=Buy Now"
|
|
40
|
+
|
|
41
|
+
$ twentythree action add --type overlay --object-id 12345 --json
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
_See code: [src/commands/action/add.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/action/add.ts)_
|
|
45
|
+
|
|
46
|
+
## `twentythree action delete ID`
|
|
47
|
+
|
|
48
|
+
Delete a CTA action
|
|
49
|
+
|
|
50
|
+
```
|
|
51
|
+
USAGE
|
|
52
|
+
$ twentythree action delete ID [--json] [-w <value>]
|
|
53
|
+
|
|
54
|
+
ARGUMENTS
|
|
55
|
+
ID Action ID
|
|
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
|
+
Delete a CTA action
|
|
63
|
+
|
|
64
|
+
EXAMPLES
|
|
65
|
+
$ twentythree action delete 12345
|
|
66
|
+
|
|
67
|
+
$ twentythree action delete 12345 --json
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
_See code: [src/commands/action/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/action/delete.ts)_
|
|
71
|
+
|
|
72
|
+
## `twentythree action exclude ID`
|
|
73
|
+
|
|
74
|
+
Exclude a CTA action from an object (or undo an exclusion)
|
|
75
|
+
|
|
76
|
+
```
|
|
77
|
+
USAGE
|
|
78
|
+
$ twentythree action exclude ID --object-id <value> [--json] [-w <value>] [--undo]
|
|
79
|
+
|
|
80
|
+
ARGUMENTS
|
|
81
|
+
ID Action ID
|
|
82
|
+
|
|
83
|
+
FLAGS
|
|
84
|
+
--object-id=<value> (required) Object ID to exclude the action from
|
|
85
|
+
--undo Remove the exclusion (reverse this operation)
|
|
86
|
+
|
|
87
|
+
GLOBAL FLAGS
|
|
88
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
89
|
+
--json Format output as json.
|
|
90
|
+
|
|
91
|
+
DESCRIPTION
|
|
92
|
+
Exclude a CTA action from an object (or undo an exclusion)
|
|
93
|
+
|
|
94
|
+
EXAMPLES
|
|
95
|
+
$ twentythree action exclude 12345 --object-id 6789
|
|
96
|
+
|
|
97
|
+
$ twentythree action exclude 12345 --object-id 6789 --undo
|
|
98
|
+
|
|
99
|
+
$ twentythree action exclude 12345 --object-id 6789 --json
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
_See code: [src/commands/action/exclude.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/action/exclude.ts)_
|
|
103
|
+
|
|
104
|
+
## `twentythree action get [ID]`
|
|
105
|
+
|
|
106
|
+
Get details of a CTA action
|
|
107
|
+
|
|
108
|
+
```
|
|
109
|
+
USAGE
|
|
110
|
+
$ twentythree action get [ID] [--json] [-w <value>] [--object-id <value>] [--video-id <value>] [--webinar-id
|
|
111
|
+
<value>] [--token <value>] [--player-id <value>] [--exclude-internal] [--exclude-pending] [--exclude-items]
|
|
112
|
+
|
|
113
|
+
ARGUMENTS
|
|
114
|
+
[ID] Action ID (optional)
|
|
115
|
+
|
|
116
|
+
FLAGS
|
|
117
|
+
--exclude-internal Exclude internal actions
|
|
118
|
+
--exclude-items Exclude action items
|
|
119
|
+
--exclude-pending Exclude pending actions
|
|
120
|
+
--object-id=<value> Object ID context
|
|
121
|
+
--player-id=<value> Player ID context
|
|
122
|
+
--token=<value> Object token for authentication
|
|
123
|
+
--video-id=<value> Video ID context (maps to photo_id)
|
|
124
|
+
--webinar-id=<value> Webinar ID context (maps to live_id)
|
|
125
|
+
|
|
126
|
+
GLOBAL FLAGS
|
|
127
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
128
|
+
--json Format output as json.
|
|
129
|
+
|
|
130
|
+
DESCRIPTION
|
|
131
|
+
Get details of a CTA action
|
|
132
|
+
|
|
133
|
+
EXAMPLES
|
|
134
|
+
$ twentythree action get 12345
|
|
135
|
+
|
|
136
|
+
$ twentythree action get --video-id 6789
|
|
137
|
+
|
|
138
|
+
$ twentythree action get --webinar-id 1234 --json
|
|
139
|
+
|
|
140
|
+
$ twentythree action get 12345 --json
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
_See code: [src/commands/action/get.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/action/get.ts)_
|
|
144
|
+
|
|
145
|
+
## `twentythree action include ID`
|
|
146
|
+
|
|
147
|
+
Include an object in a CTA action scope (or undo an inclusion)
|
|
148
|
+
|
|
149
|
+
```
|
|
150
|
+
USAGE
|
|
151
|
+
$ twentythree action include ID --object-id <value> [--json] [-w <value>] [--undo]
|
|
152
|
+
|
|
153
|
+
ARGUMENTS
|
|
154
|
+
ID Action ID
|
|
155
|
+
|
|
156
|
+
FLAGS
|
|
157
|
+
--object-id=<value> (required) Object ID to include the action on
|
|
158
|
+
--undo Remove the inclusion (reverse this operation)
|
|
159
|
+
|
|
160
|
+
GLOBAL FLAGS
|
|
161
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
162
|
+
--json Format output as json.
|
|
163
|
+
|
|
164
|
+
DESCRIPTION
|
|
165
|
+
Include an object in a CTA action scope (or undo an inclusion)
|
|
166
|
+
|
|
167
|
+
EXAMPLES
|
|
168
|
+
$ twentythree action include 12345 --object-id 6789
|
|
169
|
+
|
|
170
|
+
$ twentythree action include 12345 --object-id 6789 --undo
|
|
171
|
+
|
|
172
|
+
$ twentythree action include 12345 --object-id 6789 --json
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
_See code: [src/commands/action/include.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/action/include.ts)_
|
|
176
|
+
|
|
177
|
+
## `twentythree action list`
|
|
178
|
+
|
|
179
|
+
List CTA actions for a video, webinar, or object
|
|
180
|
+
|
|
181
|
+
```
|
|
182
|
+
USAGE
|
|
183
|
+
$ twentythree action list [--json] [-w <value>] [--object-id <value>] [--video-id <value>] [--webinar-id
|
|
184
|
+
<value>] [--player-id <value>] [--exclude-internal] [--exclude-pending] [--exclude-items]
|
|
185
|
+
|
|
186
|
+
FLAGS
|
|
187
|
+
--exclude-internal Exclude internal actions
|
|
188
|
+
--exclude-items Exclude action items
|
|
189
|
+
--exclude-pending Exclude pending actions
|
|
190
|
+
--object-id=<value> Object ID to filter actions by
|
|
191
|
+
--player-id=<value> Player ID to filter actions by
|
|
192
|
+
--video-id=<value> Video ID to filter actions by (maps to photo_id)
|
|
193
|
+
--webinar-id=<value> Webinar ID to filter actions by (maps to live_id)
|
|
194
|
+
|
|
195
|
+
GLOBAL FLAGS
|
|
196
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
197
|
+
--json Format output as json.
|
|
198
|
+
|
|
199
|
+
DESCRIPTION
|
|
200
|
+
List CTA actions for a video, webinar, or object
|
|
201
|
+
|
|
202
|
+
EXAMPLES
|
|
203
|
+
$ twentythree action list --video-id 12345
|
|
204
|
+
|
|
205
|
+
$ twentythree action list --webinar-id 6789
|
|
206
|
+
|
|
207
|
+
$ twentythree action list --object-id 12345
|
|
208
|
+
|
|
209
|
+
$ twentythree action list --video-id 12345 --json
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
_See code: [src/commands/action/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/action/list.ts)_
|
|
213
|
+
|
|
214
|
+
## `twentythree action types`
|
|
215
|
+
|
|
216
|
+
List available CTA action types
|
|
217
|
+
|
|
218
|
+
```
|
|
219
|
+
USAGE
|
|
220
|
+
$ twentythree action types [--json] [-w <value>] [--exclude-internal]
|
|
221
|
+
|
|
222
|
+
FLAGS
|
|
223
|
+
--exclude-internal Exclude internal action types from the list
|
|
224
|
+
|
|
225
|
+
GLOBAL FLAGS
|
|
226
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
227
|
+
--json Format output as json.
|
|
228
|
+
|
|
229
|
+
DESCRIPTION
|
|
230
|
+
List available CTA action types
|
|
231
|
+
|
|
232
|
+
EXAMPLES
|
|
233
|
+
$ twentythree action types
|
|
234
|
+
|
|
235
|
+
$ twentythree action types --exclude-internal
|
|
236
|
+
|
|
237
|
+
$ twentythree action types --json
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
_See code: [src/commands/action/types.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/action/types.ts)_
|
|
241
|
+
|
|
242
|
+
## `twentythree action update ID`
|
|
243
|
+
|
|
244
|
+
Update an existing CTA action
|
|
245
|
+
|
|
246
|
+
```
|
|
247
|
+
USAGE
|
|
248
|
+
$ twentythree action update ID --name <value> --start-time <value> --end-time <value> [--json] [-w <value>]
|
|
249
|
+
[--time-relative-to <value>] [--return-url <value>]
|
|
250
|
+
|
|
251
|
+
ARGUMENTS
|
|
252
|
+
ID Action ID
|
|
253
|
+
|
|
254
|
+
FLAGS
|
|
255
|
+
--end-time=<value> (required) End time of the action (seconds)
|
|
256
|
+
--name=<value> (required) Display name for the action
|
|
257
|
+
--return-url=<value> Return URL for the action
|
|
258
|
+
--start-time=<value> (required) Start time of the action (seconds)
|
|
259
|
+
--time-relative-to=<value> [default: duration] What the timing is relative to (default: duration)
|
|
260
|
+
|
|
261
|
+
GLOBAL FLAGS
|
|
262
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
263
|
+
--json Format output as json.
|
|
264
|
+
|
|
265
|
+
DESCRIPTION
|
|
266
|
+
Update an existing CTA action
|
|
267
|
+
|
|
268
|
+
EXAMPLES
|
|
269
|
+
$ twentythree action update 12345 --name "Buy Now" --start-time 10 --end-time 20
|
|
270
|
+
|
|
271
|
+
$ twentythree action update 12345 --name "Buy Now" --start-time 10 --end-time 20 --return-url "https://example.com"
|
|
272
|
+
|
|
273
|
+
$ twentythree action update 12345 --name "Buy Now" --start-time 10 --end-time 20 --json
|
|
274
|
+
```
|
|
275
|
+
|
|
276
|
+
_See code: [src/commands/action/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/action/update.ts)_
|
|
277
|
+
|
|
278
|
+
## `twentythree action upload ID VARIABLE-NAME FILE`
|
|
279
|
+
|
|
280
|
+
Upload a file to an action variable
|
|
281
|
+
|
|
282
|
+
```
|
|
283
|
+
USAGE
|
|
284
|
+
$ twentythree action upload ID VARIABLE-NAME FILE [--json] [-w <value>]
|
|
285
|
+
|
|
286
|
+
ARGUMENTS
|
|
287
|
+
ID Action ID
|
|
288
|
+
VARIABLE-NAME Variable name for the file upload
|
|
289
|
+
FILE Path to the file to upload
|
|
290
|
+
|
|
291
|
+
GLOBAL FLAGS
|
|
292
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
293
|
+
--json Format output as json.
|
|
294
|
+
|
|
295
|
+
DESCRIPTION
|
|
296
|
+
Upload a file to an action variable
|
|
297
|
+
|
|
298
|
+
EXAMPLES
|
|
299
|
+
$ twentythree action upload 12345 image ./banner.png
|
|
300
|
+
|
|
301
|
+
$ twentythree action upload 12345 video ./clip.mp4
|
|
302
|
+
|
|
303
|
+
$ twentythree action upload 12345 image ./banner.png --json
|
|
304
|
+
```
|
|
305
|
+
|
|
306
|
+
_See code: [src/commands/action/upload.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/action/upload.ts)_
|