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,293 @@
|
|
|
1
|
+
`twentythree thumbnail`
|
|
2
|
+
=======================
|
|
3
|
+
|
|
4
|
+
Manage thumbnail templates — list, add, update, delete, duplicate, data, and manage files
|
|
5
|
+
|
|
6
|
+
* [`twentythree thumbnail`](#twentythree-thumbnail)
|
|
7
|
+
* [`twentythree thumbnail add`](#twentythree-thumbnail-add)
|
|
8
|
+
* [`twentythree thumbnail data ID`](#twentythree-thumbnail-data-id)
|
|
9
|
+
* [`twentythree thumbnail delete ID`](#twentythree-thumbnail-delete-id)
|
|
10
|
+
* [`twentythree thumbnail duplicate ID`](#twentythree-thumbnail-duplicate-id)
|
|
11
|
+
* [`twentythree thumbnail file delete`](#twentythree-thumbnail-file-delete)
|
|
12
|
+
* [`twentythree thumbnail file list ID`](#twentythree-thumbnail-file-list-id)
|
|
13
|
+
* [`twentythree thumbnail file upload FILE`](#twentythree-thumbnail-file-upload-file)
|
|
14
|
+
* [`twentythree thumbnail list`](#twentythree-thumbnail-list)
|
|
15
|
+
* [`twentythree thumbnail update ID`](#twentythree-thumbnail-update-id)
|
|
16
|
+
|
|
17
|
+
## `twentythree thumbnail`
|
|
18
|
+
|
|
19
|
+
Manage thumbnail templates — list, add, update, delete, duplicate, data, and manage files
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
USAGE
|
|
23
|
+
$ twentythree thumbnail
|
|
24
|
+
|
|
25
|
+
DESCRIPTION
|
|
26
|
+
Manage thumbnail templates — list, add, update, delete, duplicate, data, and manage files
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
_See code: [src/commands/thumbnail/index.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/index.ts)_
|
|
30
|
+
|
|
31
|
+
## `twentythree thumbnail add`
|
|
32
|
+
|
|
33
|
+
Create a new thumbnail template
|
|
34
|
+
|
|
35
|
+
```
|
|
36
|
+
USAGE
|
|
37
|
+
$ twentythree thumbnail add --name <value> --liquid-template <value> [--json] [-w <value>]
|
|
38
|
+
|
|
39
|
+
FLAGS
|
|
40
|
+
--liquid-template=<value> (required) Liquid template content for the thumbnail
|
|
41
|
+
--name=<value> (required) Name for the new thumbnail template
|
|
42
|
+
|
|
43
|
+
GLOBAL FLAGS
|
|
44
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
45
|
+
--json Format output as json.
|
|
46
|
+
|
|
47
|
+
DESCRIPTION
|
|
48
|
+
Create a new thumbnail template
|
|
49
|
+
|
|
50
|
+
EXAMPLES
|
|
51
|
+
$ twentythree thumbnail add --name "My Template" --liquid-template "<div>{{ video.title }}</div>"
|
|
52
|
+
|
|
53
|
+
$ twentythree thumbnail add --name "My Template" --liquid-template "<div>{{ video.title }}</div>" --json
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
_See code: [src/commands/thumbnail/add.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/add.ts)_
|
|
57
|
+
|
|
58
|
+
## `twentythree thumbnail data ID`
|
|
59
|
+
|
|
60
|
+
Get Liquid render data for a thumbnail template and object
|
|
61
|
+
|
|
62
|
+
```
|
|
63
|
+
USAGE
|
|
64
|
+
$ twentythree thumbnail data ID --object-id <value> [--json] [-w <value>]
|
|
65
|
+
|
|
66
|
+
ARGUMENTS
|
|
67
|
+
ID Thumbnail template ID
|
|
68
|
+
|
|
69
|
+
FLAGS
|
|
70
|
+
--object-id=<value> (required) Object ID to get template data for
|
|
71
|
+
|
|
72
|
+
GLOBAL FLAGS
|
|
73
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
74
|
+
--json Format output as json.
|
|
75
|
+
|
|
76
|
+
DESCRIPTION
|
|
77
|
+
Get Liquid render data for a thumbnail template and object
|
|
78
|
+
|
|
79
|
+
EXAMPLES
|
|
80
|
+
$ twentythree thumbnail data 42 --object-id 12345
|
|
81
|
+
|
|
82
|
+
$ twentythree thumbnail data 42 --object-id 12345 --json
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
_See code: [src/commands/thumbnail/data.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/data.ts)_
|
|
86
|
+
|
|
87
|
+
## `twentythree thumbnail delete ID`
|
|
88
|
+
|
|
89
|
+
Delete a thumbnail template from the active workspace
|
|
90
|
+
|
|
91
|
+
```
|
|
92
|
+
USAGE
|
|
93
|
+
$ twentythree thumbnail delete ID [--json] [-w <value>]
|
|
94
|
+
|
|
95
|
+
ARGUMENTS
|
|
96
|
+
ID Thumbnail template ID
|
|
97
|
+
|
|
98
|
+
GLOBAL FLAGS
|
|
99
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
100
|
+
--json Format output as json.
|
|
101
|
+
|
|
102
|
+
DESCRIPTION
|
|
103
|
+
Delete a thumbnail template from the active workspace
|
|
104
|
+
|
|
105
|
+
EXAMPLES
|
|
106
|
+
$ twentythree thumbnail delete 42
|
|
107
|
+
|
|
108
|
+
$ twentythree thumbnail delete 42 --json
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
_See code: [src/commands/thumbnail/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/delete.ts)_
|
|
112
|
+
|
|
113
|
+
## `twentythree thumbnail duplicate ID`
|
|
114
|
+
|
|
115
|
+
Duplicate a thumbnail template
|
|
116
|
+
|
|
117
|
+
```
|
|
118
|
+
USAGE
|
|
119
|
+
$ twentythree thumbnail duplicate ID [--json] [-w <value>] [--name <value>]
|
|
120
|
+
|
|
121
|
+
ARGUMENTS
|
|
122
|
+
ID Thumbnail template ID
|
|
123
|
+
|
|
124
|
+
FLAGS
|
|
125
|
+
--name=<value> Name for the duplicate
|
|
126
|
+
|
|
127
|
+
GLOBAL FLAGS
|
|
128
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
129
|
+
--json Format output as json.
|
|
130
|
+
|
|
131
|
+
DESCRIPTION
|
|
132
|
+
Duplicate a thumbnail template
|
|
133
|
+
|
|
134
|
+
EXAMPLES
|
|
135
|
+
$ twentythree thumbnail duplicate 42
|
|
136
|
+
|
|
137
|
+
$ twentythree thumbnail duplicate 42 --name "My Copy"
|
|
138
|
+
|
|
139
|
+
$ twentythree thumbnail duplicate 42 --name "My Copy" --json
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
_See code: [src/commands/thumbnail/duplicate.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/duplicate.ts)_
|
|
143
|
+
|
|
144
|
+
## `twentythree thumbnail file delete`
|
|
145
|
+
|
|
146
|
+
Delete a file from a thumbnail template
|
|
147
|
+
|
|
148
|
+
```
|
|
149
|
+
USAGE
|
|
150
|
+
$ twentythree thumbnail file delete --template-id <value> --filename <value> [--json] [-w <value>]
|
|
151
|
+
|
|
152
|
+
FLAGS
|
|
153
|
+
--filename=<value> (required) Filename to delete
|
|
154
|
+
--template-id=<value> (required) Thumbnail template ID
|
|
155
|
+
|
|
156
|
+
GLOBAL FLAGS
|
|
157
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
158
|
+
--json Format output as json.
|
|
159
|
+
|
|
160
|
+
DESCRIPTION
|
|
161
|
+
Delete a file from a thumbnail template
|
|
162
|
+
|
|
163
|
+
EXAMPLES
|
|
164
|
+
$ twentythree thumbnail file delete --template-id 42 --filename logo.png
|
|
165
|
+
|
|
166
|
+
$ twentythree thumbnail file delete --template-id 42 --filename logo.png --json
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
_See code: [src/commands/thumbnail/file/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/file/delete.ts)_
|
|
170
|
+
|
|
171
|
+
## `twentythree thumbnail file list ID`
|
|
172
|
+
|
|
173
|
+
List files associated with a thumbnail template
|
|
174
|
+
|
|
175
|
+
```
|
|
176
|
+
USAGE
|
|
177
|
+
$ twentythree thumbnail file list ID [--json] [-w <value>]
|
|
178
|
+
|
|
179
|
+
ARGUMENTS
|
|
180
|
+
ID Thumbnail template ID
|
|
181
|
+
|
|
182
|
+
GLOBAL FLAGS
|
|
183
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
184
|
+
--json Format output as json.
|
|
185
|
+
|
|
186
|
+
DESCRIPTION
|
|
187
|
+
List files associated with a thumbnail template
|
|
188
|
+
|
|
189
|
+
EXAMPLES
|
|
190
|
+
$ twentythree thumbnail file list 42
|
|
191
|
+
|
|
192
|
+
$ twentythree thumbnail file list 42 --json
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
_See code: [src/commands/thumbnail/file/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/file/list.ts)_
|
|
196
|
+
|
|
197
|
+
## `twentythree thumbnail file upload FILE`
|
|
198
|
+
|
|
199
|
+
Upload an image file to a thumbnail template
|
|
200
|
+
|
|
201
|
+
```
|
|
202
|
+
USAGE
|
|
203
|
+
$ twentythree thumbnail file upload FILE --template-id <value> [--json] [-w <value>]
|
|
204
|
+
|
|
205
|
+
ARGUMENTS
|
|
206
|
+
FILE Path to the image file to upload
|
|
207
|
+
|
|
208
|
+
FLAGS
|
|
209
|
+
--template-id=<value> (required) Thumbnail template ID
|
|
210
|
+
|
|
211
|
+
GLOBAL FLAGS
|
|
212
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
213
|
+
--json Format output as json.
|
|
214
|
+
|
|
215
|
+
DESCRIPTION
|
|
216
|
+
Upload an image file to a thumbnail template
|
|
217
|
+
|
|
218
|
+
EXAMPLES
|
|
219
|
+
$ twentythree thumbnail file upload ./logo.png --template-id 42
|
|
220
|
+
|
|
221
|
+
$ twentythree thumbnail file upload ./banner.jpg --template-id 42 --json
|
|
222
|
+
```
|
|
223
|
+
|
|
224
|
+
_See code: [src/commands/thumbnail/file/upload.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/file/upload.ts)_
|
|
225
|
+
|
|
226
|
+
## `twentythree thumbnail list`
|
|
227
|
+
|
|
228
|
+
List thumbnail templates in the active workspace
|
|
229
|
+
|
|
230
|
+
```
|
|
231
|
+
USAGE
|
|
232
|
+
$ twentythree thumbnail list [--json] [-w <value>] [--search <value>] [--object-type <value>]
|
|
233
|
+
|
|
234
|
+
FLAGS
|
|
235
|
+
--object-type=<value> Filter by object type (photo, live, liveseries)
|
|
236
|
+
--search=<value> Filter by name
|
|
237
|
+
|
|
238
|
+
GLOBAL FLAGS
|
|
239
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
240
|
+
--json Format output as json.
|
|
241
|
+
|
|
242
|
+
DESCRIPTION
|
|
243
|
+
List thumbnail templates in the active workspace
|
|
244
|
+
|
|
245
|
+
EXAMPLES
|
|
246
|
+
$ twentythree thumbnail list
|
|
247
|
+
|
|
248
|
+
$ twentythree thumbnail list --search "my template"
|
|
249
|
+
|
|
250
|
+
$ twentythree thumbnail list --object-type photo
|
|
251
|
+
|
|
252
|
+
$ twentythree thumbnail list --json
|
|
253
|
+
```
|
|
254
|
+
|
|
255
|
+
_See code: [src/commands/thumbnail/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/list.ts)_
|
|
256
|
+
|
|
257
|
+
## `twentythree thumbnail update ID`
|
|
258
|
+
|
|
259
|
+
Update a thumbnail template
|
|
260
|
+
|
|
261
|
+
```
|
|
262
|
+
USAGE
|
|
263
|
+
$ twentythree thumbnail update ID [--json] [-w <value>] [--name <value>] [--liquid-template <value>] [--object-type
|
|
264
|
+
<value>] [--width <value>] [--height <value>]
|
|
265
|
+
|
|
266
|
+
ARGUMENTS
|
|
267
|
+
ID Thumbnail template ID
|
|
268
|
+
|
|
269
|
+
FLAGS
|
|
270
|
+
--height=<value> Template height in pixels
|
|
271
|
+
--liquid-template=<value> New Liquid template content
|
|
272
|
+
--name=<value> New name for the template
|
|
273
|
+
--object-type=<value> Object type (photo, live, liveseries)
|
|
274
|
+
--width=<value> Template width in pixels
|
|
275
|
+
|
|
276
|
+
GLOBAL FLAGS
|
|
277
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
278
|
+
--json Format output as json.
|
|
279
|
+
|
|
280
|
+
DESCRIPTION
|
|
281
|
+
Update a thumbnail template
|
|
282
|
+
|
|
283
|
+
EXAMPLES
|
|
284
|
+
$ twentythree thumbnail update 42 --name "Updated Name"
|
|
285
|
+
|
|
286
|
+
$ twentythree thumbnail update 42 --liquid-template "<div>{{ video.title }}</div>"
|
|
287
|
+
|
|
288
|
+
$ twentythree thumbnail update 42 --object-type photo --width 1280 --height 720
|
|
289
|
+
|
|
290
|
+
$ twentythree thumbnail update 42 --name "Updated Name" --json
|
|
291
|
+
```
|
|
292
|
+
|
|
293
|
+
_See code: [src/commands/thumbnail/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/thumbnail/update.ts)_
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
`twentythree user:create`
|
|
2
|
+
=========================
|
|
3
|
+
|
|
4
|
+
Create a new user
|
|
5
|
+
|
|
6
|
+
* [`twentythree user create`](#twentythree-user-create)
|
|
7
|
+
|
|
8
|
+
## `twentythree user create`
|
|
9
|
+
|
|
10
|
+
Create a new user
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree user create --email <value> [--json] [-w <value>] [--username <value>] [--full-name <value>]
|
|
15
|
+
[--site-admin] [--user-type <value>]
|
|
16
|
+
|
|
17
|
+
FLAGS
|
|
18
|
+
--email=<value> (required) Email address for the new user
|
|
19
|
+
--full-name=<value> Full display name for the new user
|
|
20
|
+
--[no-]site-admin Grant site admin privileges
|
|
21
|
+
--user-type=<value> User type (e.g. standard, administrator)
|
|
22
|
+
--username=<value> Username for the new user
|
|
23
|
+
|
|
24
|
+
GLOBAL FLAGS
|
|
25
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
26
|
+
--json Format output as json.
|
|
27
|
+
|
|
28
|
+
DESCRIPTION
|
|
29
|
+
Create a new user
|
|
30
|
+
|
|
31
|
+
EXAMPLES
|
|
32
|
+
$ twentythree user create --email alice@example.com
|
|
33
|
+
|
|
34
|
+
$ twentythree user create --email alice@example.com --full-name "Alice Smith"
|
|
35
|
+
|
|
36
|
+
$ twentythree user create --email alice@example.com --site-admin
|
|
37
|
+
|
|
38
|
+
$ twentythree user create --email alice@example.com --json
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
_See code: [src/commands/user/create.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/user/create.ts)_
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
`twentythree user:get-login-token`
|
|
2
|
+
==================================
|
|
3
|
+
|
|
4
|
+
Generate a login token for a user
|
|
5
|
+
|
|
6
|
+
* [`twentythree user get-login-token ID`](#twentythree-user-get-login-token-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree user get-login-token ID`
|
|
9
|
+
|
|
10
|
+
Generate a login token for a user
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree user get-login-token ID [--json] [-w <value>] [--return-url <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID User ID
|
|
18
|
+
|
|
19
|
+
FLAGS
|
|
20
|
+
--return-url=<value> URL to redirect to after login
|
|
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
|
+
Generate a login token for a user
|
|
28
|
+
|
|
29
|
+
EXAMPLES
|
|
30
|
+
$ twentythree user get-login-token 12345
|
|
31
|
+
|
|
32
|
+
$ twentythree user get-login-token 12345 --return-url https://example.com/dashboard
|
|
33
|
+
|
|
34
|
+
$ twentythree user get-login-token 12345 --json
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
_See code: [src/commands/user/get-login-token.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/user/get-login-token.ts)_
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
`twentythree user:get`
|
|
2
|
+
======================
|
|
3
|
+
|
|
4
|
+
Get details of a specific user
|
|
5
|
+
|
|
6
|
+
* [`twentythree user get ID`](#twentythree-user-get-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree user get ID`
|
|
9
|
+
|
|
10
|
+
Get details of a specific user
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree user get ID [--json] [-w <value>] [--include-invitation]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID User ID
|
|
18
|
+
|
|
19
|
+
FLAGS
|
|
20
|
+
--[no-]include-invitation Include invitation details in the response
|
|
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 details of a specific user
|
|
28
|
+
|
|
29
|
+
EXAMPLES
|
|
30
|
+
$ twentythree user get 12345
|
|
31
|
+
|
|
32
|
+
$ twentythree user get 12345 --include-invitation
|
|
33
|
+
|
|
34
|
+
$ twentythree user get 12345 --json
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
_See code: [src/commands/user/get.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/user/get.ts)_
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
`twentythree user:list`
|
|
2
|
+
=======================
|
|
3
|
+
|
|
4
|
+
List users in the workspace
|
|
5
|
+
|
|
6
|
+
* [`twentythree user list`](#twentythree-user-list)
|
|
7
|
+
|
|
8
|
+
## `twentythree user list`
|
|
9
|
+
|
|
10
|
+
List users in the workspace
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree user list [--json] [-w <value>] [--page <value>] [--size <value>] [--search <value>] [--user-id
|
|
15
|
+
<value>]
|
|
16
|
+
|
|
17
|
+
FLAGS
|
|
18
|
+
--page=<value> Page number
|
|
19
|
+
--search=<value> Search query (username, display name, or email)
|
|
20
|
+
--size=<value> Number of results per page
|
|
21
|
+
--user-id=<value> Filter by user ID
|
|
22
|
+
|
|
23
|
+
GLOBAL FLAGS
|
|
24
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
25
|
+
--json Format output as json.
|
|
26
|
+
|
|
27
|
+
DESCRIPTION
|
|
28
|
+
List users in the workspace
|
|
29
|
+
|
|
30
|
+
EXAMPLES
|
|
31
|
+
$ twentythree user list
|
|
32
|
+
|
|
33
|
+
$ twentythree user list --search "alice"
|
|
34
|
+
|
|
35
|
+
$ twentythree user list --page 2 --size 20
|
|
36
|
+
|
|
37
|
+
$ twentythree user list --json
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
_See code: [src/commands/user/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/user/list.ts)_
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
`twentythree user:redeem-login-token`
|
|
2
|
+
=====================================
|
|
3
|
+
|
|
4
|
+
Redeem a login token to authenticate a user
|
|
5
|
+
|
|
6
|
+
* [`twentythree user redeem-login-token`](#twentythree-user-redeem-login-token)
|
|
7
|
+
|
|
8
|
+
## `twentythree user redeem-login-token`
|
|
9
|
+
|
|
10
|
+
Redeem a login token to authenticate a user
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree user redeem-login-token --login-token <value> [--json] [-w <value>]
|
|
15
|
+
|
|
16
|
+
FLAGS
|
|
17
|
+
--login-token=<value> (required) Login token to redeem
|
|
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
|
+
Redeem a login token to authenticate a user
|
|
25
|
+
|
|
26
|
+
EXAMPLES
|
|
27
|
+
$ twentythree user redeem-login-token --login-token abc123
|
|
28
|
+
|
|
29
|
+
$ twentythree user redeem-login-token --login-token abc123 --json
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
_See code: [src/commands/user/redeem-login-token.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/user/redeem-login-token.ts)_
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
`twentythree user:send-invitation`
|
|
2
|
+
==================================
|
|
3
|
+
|
|
4
|
+
Send an invitation email to a user
|
|
5
|
+
|
|
6
|
+
* [`twentythree user send-invitation ID`](#twentythree-user-send-invitation-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree user send-invitation ID`
|
|
9
|
+
|
|
10
|
+
Send an invitation email to a user
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree user send-invitation ID [--json] [-w <value>] [--invitation-message <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID User ID
|
|
18
|
+
|
|
19
|
+
FLAGS
|
|
20
|
+
--invitation-message=<value> Custom invitation message
|
|
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
|
+
Send an invitation email to a user
|
|
28
|
+
|
|
29
|
+
EXAMPLES
|
|
30
|
+
$ twentythree user send-invitation 12345
|
|
31
|
+
|
|
32
|
+
$ twentythree user send-invitation 12345 --invitation-message "Welcome to the platform!"
|
|
33
|
+
|
|
34
|
+
$ twentythree user send-invitation 12345 --json
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
_See code: [src/commands/user/send-invitation.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/user/send-invitation.ts)_
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
`twentythree user:tokens`
|
|
2
|
+
=========================
|
|
3
|
+
|
|
4
|
+
Retrieve cross-site tokens for the authenticated user
|
|
5
|
+
|
|
6
|
+
* [`twentythree user tokens`](#twentythree-user-tokens)
|
|
7
|
+
|
|
8
|
+
## `twentythree user tokens`
|
|
9
|
+
|
|
10
|
+
Retrieve cross-site tokens for the authenticated user
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree user tokens [--json] [-w <value>] [--cross-sites]
|
|
15
|
+
|
|
16
|
+
FLAGS
|
|
17
|
+
--[no-]cross-sites Include cross-site tokens
|
|
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
|
+
Retrieve cross-site tokens for the authenticated user
|
|
25
|
+
|
|
26
|
+
EXAMPLES
|
|
27
|
+
$ twentythree user tokens
|
|
28
|
+
|
|
29
|
+
$ twentythree user tokens --no-cross-sites
|
|
30
|
+
|
|
31
|
+
$ twentythree user tokens --json
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
_See code: [src/commands/user/tokens.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/user/tokens.ts)_
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
`twentythree user:update`
|
|
2
|
+
=========================
|
|
3
|
+
|
|
4
|
+
Update a user profile
|
|
5
|
+
|
|
6
|
+
* [`twentythree user update ID`](#twentythree-user-update-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree user update ID`
|
|
9
|
+
|
|
10
|
+
Update a user profile
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree user update ID [--json] [-w <value>] [--email <value>] [--full-name <value>] [--password <value>]
|
|
15
|
+
[--profile-image <value>]
|
|
16
|
+
|
|
17
|
+
ARGUMENTS
|
|
18
|
+
ID User ID
|
|
19
|
+
|
|
20
|
+
FLAGS
|
|
21
|
+
--email=<value> New email address
|
|
22
|
+
--full-name=<value> New full display name
|
|
23
|
+
--password=<value> New password (WARNING: visible in process list and shell history — prefer interactive prompt
|
|
24
|
+
for sensitive environments)
|
|
25
|
+
--profile-image=<value> Path to profile image file
|
|
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 user profile
|
|
33
|
+
|
|
34
|
+
EXAMPLES
|
|
35
|
+
$ twentythree user update 12345 --full-name "Alice Smith"
|
|
36
|
+
|
|
37
|
+
$ twentythree user update 12345 --email alice@example.com
|
|
38
|
+
|
|
39
|
+
$ twentythree user update 12345 --profile-image ./avatar.jpg
|
|
40
|
+
|
|
41
|
+
$ twentythree user update 12345 --json
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
_See code: [src/commands/user/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/user/update.ts)_
|