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,222 @@
|
|
|
1
|
+
`twentythree spot`
|
|
2
|
+
==================
|
|
3
|
+
|
|
4
|
+
Get details of a specific spot
|
|
5
|
+
|
|
6
|
+
* [`twentythree spot check ID`](#twentythree-spot-check-id)
|
|
7
|
+
* [`twentythree spot create`](#twentythree-spot-create)
|
|
8
|
+
* [`twentythree spot delete ID`](#twentythree-spot-delete-id)
|
|
9
|
+
* [`twentythree spot list`](#twentythree-spot-list)
|
|
10
|
+
* [`twentythree spot reset-version ID`](#twentythree-spot-reset-version-id)
|
|
11
|
+
* [`twentythree spot set-videos ID`](#twentythree-spot-set-videos-id)
|
|
12
|
+
* [`twentythree spot update ID`](#twentythree-spot-update-id)
|
|
13
|
+
|
|
14
|
+
## `twentythree spot check ID`
|
|
15
|
+
|
|
16
|
+
Get details of a specific spot
|
|
17
|
+
|
|
18
|
+
```
|
|
19
|
+
USAGE
|
|
20
|
+
$ twentythree spot check ID [--json] [-w <value>]
|
|
21
|
+
|
|
22
|
+
ARGUMENTS
|
|
23
|
+
ID Spot ID
|
|
24
|
+
|
|
25
|
+
GLOBAL FLAGS
|
|
26
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
27
|
+
--json Format output as json.
|
|
28
|
+
|
|
29
|
+
DESCRIPTION
|
|
30
|
+
Get details of a specific spot
|
|
31
|
+
|
|
32
|
+
EXAMPLES
|
|
33
|
+
$ twentythree spot check 12345
|
|
34
|
+
|
|
35
|
+
$ twentythree spot check 12345 --json
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
_See code: [src/commands/spot/check.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/spot/check.ts)_
|
|
39
|
+
|
|
40
|
+
## `twentythree spot create`
|
|
41
|
+
|
|
42
|
+
Create a new spot
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
USAGE
|
|
46
|
+
$ twentythree spot create --spot-name <value> [--json] [-w <value>] [--spot-type <value>] [--spot-design
|
|
47
|
+
<value>] [--spot-layout <value>]
|
|
48
|
+
|
|
49
|
+
FLAGS
|
|
50
|
+
--spot-design=<value> Design for the spot
|
|
51
|
+
--spot-layout=<value> Layout for the spot
|
|
52
|
+
--spot-name=<value> (required) Name for the new spot
|
|
53
|
+
--spot-type=<value> Type of spot
|
|
54
|
+
|
|
55
|
+
GLOBAL FLAGS
|
|
56
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
57
|
+
--json Format output as json.
|
|
58
|
+
|
|
59
|
+
DESCRIPTION
|
|
60
|
+
Create a new spot
|
|
61
|
+
|
|
62
|
+
EXAMPLES
|
|
63
|
+
$ twentythree spot create --spot-name "My Spot"
|
|
64
|
+
|
|
65
|
+
$ twentythree spot create --spot-name "My Spot" --spot-type "video"
|
|
66
|
+
|
|
67
|
+
$ twentythree spot create --spot-name "My Spot" --json
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
_See code: [src/commands/spot/create.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/spot/create.ts)_
|
|
71
|
+
|
|
72
|
+
## `twentythree spot delete ID`
|
|
73
|
+
|
|
74
|
+
Delete a spot from the active workspace
|
|
75
|
+
|
|
76
|
+
```
|
|
77
|
+
USAGE
|
|
78
|
+
$ twentythree spot delete ID [--json] [-w <value>]
|
|
79
|
+
|
|
80
|
+
ARGUMENTS
|
|
81
|
+
ID Spot ID
|
|
82
|
+
|
|
83
|
+
GLOBAL FLAGS
|
|
84
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
85
|
+
--json Format output as json.
|
|
86
|
+
|
|
87
|
+
DESCRIPTION
|
|
88
|
+
Delete a spot from the active workspace
|
|
89
|
+
|
|
90
|
+
EXAMPLES
|
|
91
|
+
$ twentythree spot delete 12345
|
|
92
|
+
|
|
93
|
+
$ twentythree spot delete 12345 --json
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
_See code: [src/commands/spot/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/spot/delete.ts)_
|
|
97
|
+
|
|
98
|
+
## `twentythree spot list`
|
|
99
|
+
|
|
100
|
+
List spots in the active workspace
|
|
101
|
+
|
|
102
|
+
```
|
|
103
|
+
USAGE
|
|
104
|
+
$ twentythree spot list [--json] [-w <value>] [--page <value>] [--size <value>] [--search <value>]
|
|
105
|
+
[--spot-type <value>] [--active] [--orderby <value>] [--order <value>]
|
|
106
|
+
|
|
107
|
+
FLAGS
|
|
108
|
+
--[no-]active Filter by active status
|
|
109
|
+
--order=<value> Sort order (asc or desc)
|
|
110
|
+
--orderby=<value> Field to order results by
|
|
111
|
+
--page=<value> Page number
|
|
112
|
+
--search=<value> Search term
|
|
113
|
+
--size=<value> Number of results per page
|
|
114
|
+
--spot-type=<value> Filter by spot type
|
|
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
|
+
List spots in the active workspace
|
|
122
|
+
|
|
123
|
+
EXAMPLES
|
|
124
|
+
$ twentythree spot list
|
|
125
|
+
|
|
126
|
+
$ twentythree spot list --search "my spot"
|
|
127
|
+
|
|
128
|
+
$ twentythree spot list --active
|
|
129
|
+
|
|
130
|
+
$ twentythree spot list --json
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
_See code: [src/commands/spot/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/spot/list.ts)_
|
|
134
|
+
|
|
135
|
+
## `twentythree spot reset-version ID`
|
|
136
|
+
|
|
137
|
+
Reset the version of a spot
|
|
138
|
+
|
|
139
|
+
```
|
|
140
|
+
USAGE
|
|
141
|
+
$ twentythree spot reset-version ID [--json] [-w <value>]
|
|
142
|
+
|
|
143
|
+
ARGUMENTS
|
|
144
|
+
ID Spot ID
|
|
145
|
+
|
|
146
|
+
GLOBAL FLAGS
|
|
147
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
148
|
+
--json Format output as json.
|
|
149
|
+
|
|
150
|
+
DESCRIPTION
|
|
151
|
+
Reset the version of a spot
|
|
152
|
+
|
|
153
|
+
EXAMPLES
|
|
154
|
+
$ twentythree spot reset-version 12345
|
|
155
|
+
|
|
156
|
+
$ twentythree spot reset-version 12345 --json
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
_See code: [src/commands/spot/reset-version.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/spot/reset-version.ts)_
|
|
160
|
+
|
|
161
|
+
## `twentythree spot set-videos ID`
|
|
162
|
+
|
|
163
|
+
Assign videos to a spot
|
|
164
|
+
|
|
165
|
+
```
|
|
166
|
+
USAGE
|
|
167
|
+
$ twentythree spot set-videos ID --videos <value> [--json] [-w <value>]
|
|
168
|
+
|
|
169
|
+
ARGUMENTS
|
|
170
|
+
ID Spot ID
|
|
171
|
+
|
|
172
|
+
FLAGS
|
|
173
|
+
--videos=<value> (required) Comma-separated video IDs to assign to the spot
|
|
174
|
+
|
|
175
|
+
GLOBAL FLAGS
|
|
176
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
177
|
+
--json Format output as json.
|
|
178
|
+
|
|
179
|
+
DESCRIPTION
|
|
180
|
+
Assign videos to a spot
|
|
181
|
+
|
|
182
|
+
EXAMPLES
|
|
183
|
+
$ twentythree spot set-videos 12345 --videos "111,222,333"
|
|
184
|
+
|
|
185
|
+
$ twentythree spot set-videos 12345 --videos "111" --json
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
_See code: [src/commands/spot/set-videos.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/spot/set-videos.ts)_
|
|
189
|
+
|
|
190
|
+
## `twentythree spot update ID`
|
|
191
|
+
|
|
192
|
+
Update a spot
|
|
193
|
+
|
|
194
|
+
```
|
|
195
|
+
USAGE
|
|
196
|
+
$ twentythree spot update ID [--json] [-w <value>] [--spot-name <value>] [--active]
|
|
197
|
+
|
|
198
|
+
ARGUMENTS
|
|
199
|
+
ID Spot ID
|
|
200
|
+
|
|
201
|
+
FLAGS
|
|
202
|
+
--[no-]active Set active status
|
|
203
|
+
--spot-name=<value> New name for the spot
|
|
204
|
+
|
|
205
|
+
GLOBAL FLAGS
|
|
206
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
207
|
+
--json Format output as json.
|
|
208
|
+
|
|
209
|
+
DESCRIPTION
|
|
210
|
+
Update a spot
|
|
211
|
+
|
|
212
|
+
EXAMPLES
|
|
213
|
+
$ twentythree spot update 12345 --spot-name "New Name"
|
|
214
|
+
|
|
215
|
+
$ twentythree spot update 12345 --active
|
|
216
|
+
|
|
217
|
+
$ twentythree spot update 12345 --no-active
|
|
218
|
+
|
|
219
|
+
$ twentythree spot update 12345 --spot-name "New Name" --json
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
_See code: [src/commands/spot/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/spot/update.ts)_
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
`twentythree tag:list`
|
|
2
|
+
======================
|
|
3
|
+
|
|
4
|
+
List tags in the active workspace
|
|
5
|
+
|
|
6
|
+
* [`twentythree tag list`](#twentythree-tag-list)
|
|
7
|
+
|
|
8
|
+
## `twentythree tag list`
|
|
9
|
+
|
|
10
|
+
List tags in the active workspace
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree tag list [--json] [-w <value>] [--search <value>] [--exclude-machine-tags]
|
|
15
|
+
[--only-machine-tags] [--only-published] [--orderby tag|count] [--order asc|desc]
|
|
16
|
+
|
|
17
|
+
FLAGS
|
|
18
|
+
--exclude-machine-tags Exclude machine tags from the results
|
|
19
|
+
--only-machine-tags Return only machine tags (overrides --exclude-machine-tags)
|
|
20
|
+
--only-published Return only tags from published videos
|
|
21
|
+
--order=<option> Sort order for the results
|
|
22
|
+
<options: asc|desc>
|
|
23
|
+
--orderby=<option> Order tags by this value
|
|
24
|
+
<options: tag|count>
|
|
25
|
+
--search=<value> Filter tags by a search string
|
|
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
|
+
List tags in the active workspace
|
|
33
|
+
|
|
34
|
+
EXAMPLES
|
|
35
|
+
$ twentythree tag list
|
|
36
|
+
|
|
37
|
+
$ twentythree tag list --search marketing
|
|
38
|
+
|
|
39
|
+
$ twentythree tag list --orderby count --order desc
|
|
40
|
+
|
|
41
|
+
$ twentythree tag list --json
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
_See code: [src/commands/tag/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/tag/list.ts)_
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
`twentythree tag:related`
|
|
2
|
+
=========================
|
|
3
|
+
|
|
4
|
+
List tags related to a given tag
|
|
5
|
+
|
|
6
|
+
* [`twentythree tag related TAG`](#twentythree-tag-related-tag)
|
|
7
|
+
|
|
8
|
+
## `twentythree tag related TAG`
|
|
9
|
+
|
|
10
|
+
List tags related to a given tag
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree tag related TAG [--json] [-w <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
TAG Tag to find related tags for
|
|
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 tags related to a given tag
|
|
25
|
+
|
|
26
|
+
EXAMPLES
|
|
27
|
+
$ twentythree tag related marketing
|
|
28
|
+
|
|
29
|
+
$ twentythree tag related marketing --json
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
_See code: [src/commands/tag/related.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/tag/related.ts)_
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
`twentythree tag`
|
|
2
|
+
=================
|
|
3
|
+
|
|
4
|
+
List tags in the active workspace
|
|
5
|
+
|
|
6
|
+
* [`twentythree tag list`](#twentythree-tag-list)
|
|
7
|
+
* [`twentythree tag related TAG`](#twentythree-tag-related-tag)
|
|
8
|
+
|
|
9
|
+
## `twentythree tag list`
|
|
10
|
+
|
|
11
|
+
List tags in the active workspace
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
USAGE
|
|
15
|
+
$ twentythree tag list [--json] [-w <value>] [--search <value>] [--exclude-machine-tags]
|
|
16
|
+
[--only-machine-tags] [--only-published] [--orderby tag|count] [--order asc|desc]
|
|
17
|
+
|
|
18
|
+
FLAGS
|
|
19
|
+
--exclude-machine-tags Exclude machine tags from the results
|
|
20
|
+
--only-machine-tags Return only machine tags (overrides --exclude-machine-tags)
|
|
21
|
+
--only-published Return only tags from published videos
|
|
22
|
+
--order=<option> Sort order for the results
|
|
23
|
+
<options: asc|desc>
|
|
24
|
+
--orderby=<option> Order tags by this value
|
|
25
|
+
<options: tag|count>
|
|
26
|
+
--search=<value> Filter tags by a search string
|
|
27
|
+
|
|
28
|
+
GLOBAL FLAGS
|
|
29
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
30
|
+
--json Format output as json.
|
|
31
|
+
|
|
32
|
+
DESCRIPTION
|
|
33
|
+
List tags in the active workspace
|
|
34
|
+
|
|
35
|
+
EXAMPLES
|
|
36
|
+
$ twentythree tag list
|
|
37
|
+
|
|
38
|
+
$ twentythree tag list --search marketing
|
|
39
|
+
|
|
40
|
+
$ twentythree tag list --orderby count --order desc
|
|
41
|
+
|
|
42
|
+
$ twentythree tag list --json
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
_See code: [src/commands/tag/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/tag/list.ts)_
|
|
46
|
+
|
|
47
|
+
## `twentythree tag related TAG`
|
|
48
|
+
|
|
49
|
+
List tags related to a given tag
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
USAGE
|
|
53
|
+
$ twentythree tag related TAG [--json] [-w <value>]
|
|
54
|
+
|
|
55
|
+
ARGUMENTS
|
|
56
|
+
TAG Tag to find related tags for
|
|
57
|
+
|
|
58
|
+
GLOBAL FLAGS
|
|
59
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
60
|
+
--json Format output as json.
|
|
61
|
+
|
|
62
|
+
DESCRIPTION
|
|
63
|
+
List tags related to a given tag
|
|
64
|
+
|
|
65
|
+
EXAMPLES
|
|
66
|
+
$ twentythree tag related marketing
|
|
67
|
+
|
|
68
|
+
$ twentythree tag related marketing --json
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
_See code: [src/commands/tag/related.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/tag/related.ts)_
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
`twentythree thumbnail:add`
|
|
2
|
+
===========================
|
|
3
|
+
|
|
4
|
+
Create a new thumbnail template
|
|
5
|
+
|
|
6
|
+
* [`twentythree thumbnail add`](#twentythree-thumbnail-add)
|
|
7
|
+
|
|
8
|
+
## `twentythree thumbnail add`
|
|
9
|
+
|
|
10
|
+
Create a new thumbnail template
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree thumbnail add --name <value> --liquid-template <value> [--json] [-w <value>]
|
|
15
|
+
|
|
16
|
+
FLAGS
|
|
17
|
+
--liquid-template=<value> (required) Liquid template content for the thumbnail
|
|
18
|
+
--name=<value> (required) Name for the new thumbnail template
|
|
19
|
+
|
|
20
|
+
GLOBAL FLAGS
|
|
21
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
22
|
+
--json Format output as json.
|
|
23
|
+
|
|
24
|
+
DESCRIPTION
|
|
25
|
+
Create a new thumbnail template
|
|
26
|
+
|
|
27
|
+
EXAMPLES
|
|
28
|
+
$ twentythree thumbnail add --name "My Template" --liquid-template "<div>{{ video.title }}</div>"
|
|
29
|
+
|
|
30
|
+
$ twentythree thumbnail add --name "My Template" --liquid-template "<div>{{ video.title }}</div>" --json
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
_See code: [src/commands/thumbnail/add.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/add.ts)_
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
`twentythree thumbnail:data`
|
|
2
|
+
============================
|
|
3
|
+
|
|
4
|
+
Get Liquid render data for a thumbnail template and object
|
|
5
|
+
|
|
6
|
+
* [`twentythree thumbnail data ID`](#twentythree-thumbnail-data-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree thumbnail data ID`
|
|
9
|
+
|
|
10
|
+
Get Liquid render data for a thumbnail template and object
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree thumbnail data ID --object-id <value> [--json] [-w <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Thumbnail template ID
|
|
18
|
+
|
|
19
|
+
FLAGS
|
|
20
|
+
--object-id=<value> (required) Object ID to get template data for
|
|
21
|
+
|
|
22
|
+
GLOBAL FLAGS
|
|
23
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
24
|
+
--json Format output as json.
|
|
25
|
+
|
|
26
|
+
DESCRIPTION
|
|
27
|
+
Get Liquid render data for a thumbnail template and object
|
|
28
|
+
|
|
29
|
+
EXAMPLES
|
|
30
|
+
$ twentythree thumbnail data 42 --object-id 12345
|
|
31
|
+
|
|
32
|
+
$ twentythree thumbnail data 42 --object-id 12345 --json
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
_See code: [src/commands/thumbnail/data.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/data.ts)_
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
`twentythree thumbnail:delete`
|
|
2
|
+
==============================
|
|
3
|
+
|
|
4
|
+
Delete a thumbnail template from the active workspace
|
|
5
|
+
|
|
6
|
+
* [`twentythree thumbnail delete ID`](#twentythree-thumbnail-delete-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree thumbnail delete ID`
|
|
9
|
+
|
|
10
|
+
Delete a thumbnail template from the active workspace
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree thumbnail delete ID [--json] [-w <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Thumbnail template 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 thumbnail template from the active workspace
|
|
25
|
+
|
|
26
|
+
EXAMPLES
|
|
27
|
+
$ twentythree thumbnail delete 42
|
|
28
|
+
|
|
29
|
+
$ twentythree thumbnail delete 42 --json
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
_See code: [src/commands/thumbnail/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/delete.ts)_
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
`twentythree thumbnail:duplicate`
|
|
2
|
+
=================================
|
|
3
|
+
|
|
4
|
+
Duplicate a thumbnail template
|
|
5
|
+
|
|
6
|
+
* [`twentythree thumbnail duplicate ID`](#twentythree-thumbnail-duplicate-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree thumbnail duplicate ID`
|
|
9
|
+
|
|
10
|
+
Duplicate a thumbnail template
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree thumbnail duplicate ID [--json] [-w <value>] [--name <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Thumbnail template ID
|
|
18
|
+
|
|
19
|
+
FLAGS
|
|
20
|
+
--name=<value> Name for the duplicate
|
|
21
|
+
|
|
22
|
+
GLOBAL FLAGS
|
|
23
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
24
|
+
--json Format output as json.
|
|
25
|
+
|
|
26
|
+
DESCRIPTION
|
|
27
|
+
Duplicate a thumbnail template
|
|
28
|
+
|
|
29
|
+
EXAMPLES
|
|
30
|
+
$ twentythree thumbnail duplicate 42
|
|
31
|
+
|
|
32
|
+
$ twentythree thumbnail duplicate 42 --name "My Copy"
|
|
33
|
+
|
|
34
|
+
$ twentythree thumbnail duplicate 42 --name "My Copy" --json
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
_See code: [src/commands/thumbnail/duplicate.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/duplicate.ts)_
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
`twentythree thumbnail:file`
|
|
2
|
+
============================
|
|
3
|
+
|
|
4
|
+
Delete a file from a thumbnail template
|
|
5
|
+
|
|
6
|
+
* [`twentythree thumbnail file delete`](#twentythree-thumbnail-file-delete)
|
|
7
|
+
* [`twentythree thumbnail file list ID`](#twentythree-thumbnail-file-list-id)
|
|
8
|
+
* [`twentythree thumbnail file upload FILE`](#twentythree-thumbnail-file-upload-file)
|
|
9
|
+
|
|
10
|
+
## `twentythree thumbnail file delete`
|
|
11
|
+
|
|
12
|
+
Delete a file from a thumbnail template
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
USAGE
|
|
16
|
+
$ twentythree thumbnail file delete --template-id <value> --filename <value> [--json] [-w <value>]
|
|
17
|
+
|
|
18
|
+
FLAGS
|
|
19
|
+
--filename=<value> (required) Filename to delete
|
|
20
|
+
--template-id=<value> (required) Thumbnail template ID
|
|
21
|
+
|
|
22
|
+
GLOBAL FLAGS
|
|
23
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
24
|
+
--json Format output as json.
|
|
25
|
+
|
|
26
|
+
DESCRIPTION
|
|
27
|
+
Delete a file from a thumbnail template
|
|
28
|
+
|
|
29
|
+
EXAMPLES
|
|
30
|
+
$ twentythree thumbnail file delete --template-id 42 --filename logo.png
|
|
31
|
+
|
|
32
|
+
$ twentythree thumbnail file delete --template-id 42 --filename logo.png --json
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
_See code: [src/commands/thumbnail/file/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/file/delete.ts)_
|
|
36
|
+
|
|
37
|
+
## `twentythree thumbnail file list ID`
|
|
38
|
+
|
|
39
|
+
List files associated with a thumbnail template
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
USAGE
|
|
43
|
+
$ twentythree thumbnail file list ID [--json] [-w <value>]
|
|
44
|
+
|
|
45
|
+
ARGUMENTS
|
|
46
|
+
ID Thumbnail template ID
|
|
47
|
+
|
|
48
|
+
GLOBAL FLAGS
|
|
49
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
50
|
+
--json Format output as json.
|
|
51
|
+
|
|
52
|
+
DESCRIPTION
|
|
53
|
+
List files associated with a thumbnail template
|
|
54
|
+
|
|
55
|
+
EXAMPLES
|
|
56
|
+
$ twentythree thumbnail file list 42
|
|
57
|
+
|
|
58
|
+
$ twentythree thumbnail file list 42 --json
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
_See code: [src/commands/thumbnail/file/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/file/list.ts)_
|
|
62
|
+
|
|
63
|
+
## `twentythree thumbnail file upload FILE`
|
|
64
|
+
|
|
65
|
+
Upload an image file to a thumbnail template
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
USAGE
|
|
69
|
+
$ twentythree thumbnail file upload FILE --template-id <value> [--json] [-w <value>]
|
|
70
|
+
|
|
71
|
+
ARGUMENTS
|
|
72
|
+
FILE Path to the image file to upload
|
|
73
|
+
|
|
74
|
+
FLAGS
|
|
75
|
+
--template-id=<value> (required) Thumbnail template ID
|
|
76
|
+
|
|
77
|
+
GLOBAL FLAGS
|
|
78
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
79
|
+
--json Format output as json.
|
|
80
|
+
|
|
81
|
+
DESCRIPTION
|
|
82
|
+
Upload an image file to a thumbnail template
|
|
83
|
+
|
|
84
|
+
EXAMPLES
|
|
85
|
+
$ twentythree thumbnail file upload ./logo.png --template-id 42
|
|
86
|
+
|
|
87
|
+
$ twentythree thumbnail file upload ./banner.jpg --template-id 42 --json
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
_See code: [src/commands/thumbnail/file/upload.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/file/upload.ts)_
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
`twentythree thumbnail:list`
|
|
2
|
+
============================
|
|
3
|
+
|
|
4
|
+
List thumbnail templates in the active workspace
|
|
5
|
+
|
|
6
|
+
* [`twentythree thumbnail list`](#twentythree-thumbnail-list)
|
|
7
|
+
|
|
8
|
+
## `twentythree thumbnail list`
|
|
9
|
+
|
|
10
|
+
List thumbnail templates in the active workspace
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree thumbnail list [--json] [-w <value>] [--search <value>] [--object-type <value>]
|
|
15
|
+
|
|
16
|
+
FLAGS
|
|
17
|
+
--object-type=<value> Filter by object type (photo, live, liveseries)
|
|
18
|
+
--search=<value> Filter by name
|
|
19
|
+
|
|
20
|
+
GLOBAL FLAGS
|
|
21
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
22
|
+
--json Format output as json.
|
|
23
|
+
|
|
24
|
+
DESCRIPTION
|
|
25
|
+
List thumbnail templates in the active workspace
|
|
26
|
+
|
|
27
|
+
EXAMPLES
|
|
28
|
+
$ twentythree thumbnail list
|
|
29
|
+
|
|
30
|
+
$ twentythree thumbnail list --search "my template"
|
|
31
|
+
|
|
32
|
+
$ twentythree thumbnail list --object-type photo
|
|
33
|
+
|
|
34
|
+
$ twentythree thumbnail list --json
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
_See code: [src/commands/thumbnail/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/list.ts)_
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
`twentythree thumbnail:update`
|
|
2
|
+
==============================
|
|
3
|
+
|
|
4
|
+
Update a thumbnail template
|
|
5
|
+
|
|
6
|
+
* [`twentythree thumbnail update ID`](#twentythree-thumbnail-update-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree thumbnail update ID`
|
|
9
|
+
|
|
10
|
+
Update a thumbnail template
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree thumbnail update ID [--json] [-w <value>] [--name <value>] [--liquid-template <value>] [--object-type
|
|
15
|
+
<value>] [--width <value>] [--height <value>]
|
|
16
|
+
|
|
17
|
+
ARGUMENTS
|
|
18
|
+
ID Thumbnail template ID
|
|
19
|
+
|
|
20
|
+
FLAGS
|
|
21
|
+
--height=<value> Template height in pixels
|
|
22
|
+
--liquid-template=<value> New Liquid template content
|
|
23
|
+
--name=<value> New name for the template
|
|
24
|
+
--object-type=<value> Object type (photo, live, liveseries)
|
|
25
|
+
--width=<value> Template width in pixels
|
|
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 a thumbnail template
|
|
33
|
+
|
|
34
|
+
EXAMPLES
|
|
35
|
+
$ twentythree thumbnail update 42 --name "Updated Name"
|
|
36
|
+
|
|
37
|
+
$ twentythree thumbnail update 42 --liquid-template "<div>{{ video.title }}</div>"
|
|
38
|
+
|
|
39
|
+
$ twentythree thumbnail update 42 --object-type photo --width 1280 --height 720
|
|
40
|
+
|
|
41
|
+
$ twentythree thumbnail update 42 --name "Updated Name" --json
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
_See code: [src/commands/thumbnail/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/update.ts)_
|