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,32 @@
|
|
|
1
|
+
`twentythree category:delete`
|
|
2
|
+
=============================
|
|
3
|
+
|
|
4
|
+
Delete a category from the active workspace
|
|
5
|
+
|
|
6
|
+
* [`twentythree category delete ID`](#twentythree-category-delete-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree category delete ID`
|
|
9
|
+
|
|
10
|
+
Delete a category from the active workspace
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree category delete ID [--json] [-w <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Category 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 category from the active workspace
|
|
25
|
+
|
|
26
|
+
EXAMPLES
|
|
27
|
+
$ twentythree category delete 42
|
|
28
|
+
|
|
29
|
+
$ twentythree category delete 42 --json
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
_See code: [src/commands/category/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/category/delete.ts)_
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
`twentythree category:list`
|
|
2
|
+
===========================
|
|
3
|
+
|
|
4
|
+
List categories in the active workspace
|
|
5
|
+
|
|
6
|
+
* [`twentythree category list`](#twentythree-category-list)
|
|
7
|
+
|
|
8
|
+
## `twentythree category list`
|
|
9
|
+
|
|
10
|
+
List categories in the active workspace
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree category list [--json] [-w <value>] [--include-hidden]
|
|
15
|
+
|
|
16
|
+
FLAGS
|
|
17
|
+
--[no-]include-hidden Include hidden categories in the results
|
|
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 categories in the active workspace
|
|
25
|
+
|
|
26
|
+
EXAMPLES
|
|
27
|
+
$ twentythree category list
|
|
28
|
+
|
|
29
|
+
$ twentythree category list --json
|
|
30
|
+
|
|
31
|
+
$ twentythree category list --include-hidden
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
_See code: [src/commands/category/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/category/list.ts)_
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
`twentythree category:update`
|
|
2
|
+
=============================
|
|
3
|
+
|
|
4
|
+
Update metadata for a category
|
|
5
|
+
|
|
6
|
+
* [`twentythree category update ID`](#twentythree-category-update-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree category update ID`
|
|
9
|
+
|
|
10
|
+
Update metadata for a category
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree category update ID [--json] [-w <value>] [--title <value>] [--description <value>] [--hidden]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Category ID
|
|
18
|
+
|
|
19
|
+
FLAGS
|
|
20
|
+
--description=<value> New description for the category
|
|
21
|
+
--[no-]hidden Show or hide the category
|
|
22
|
+
--title=<value> New title for the category
|
|
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
|
+
Update metadata for a category
|
|
30
|
+
|
|
31
|
+
EXAMPLES
|
|
32
|
+
$ twentythree category update 42 --title "New Title"
|
|
33
|
+
|
|
34
|
+
$ twentythree category update 42 --hidden
|
|
35
|
+
|
|
36
|
+
$ twentythree category update 42
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
_See code: [src/commands/category/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/category/update.ts)_
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
`twentythree category`
|
|
2
|
+
======================
|
|
3
|
+
|
|
4
|
+
Manage categories — list, create, update, and delete
|
|
5
|
+
|
|
6
|
+
* [`twentythree category`](#twentythree-category)
|
|
7
|
+
* [`twentythree category create`](#twentythree-category-create)
|
|
8
|
+
* [`twentythree category delete ID`](#twentythree-category-delete-id)
|
|
9
|
+
* [`twentythree category list`](#twentythree-category-list)
|
|
10
|
+
* [`twentythree category update ID`](#twentythree-category-update-id)
|
|
11
|
+
|
|
12
|
+
## `twentythree category`
|
|
13
|
+
|
|
14
|
+
Manage categories — list, create, update, and delete
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
USAGE
|
|
18
|
+
$ twentythree category
|
|
19
|
+
|
|
20
|
+
DESCRIPTION
|
|
21
|
+
Manage categories — list, create, update, and delete
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
_See code: [src/commands/category/index.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/category/index.ts)_
|
|
25
|
+
|
|
26
|
+
## `twentythree category create`
|
|
27
|
+
|
|
28
|
+
Create a new category
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
USAGE
|
|
32
|
+
$ twentythree category create --title <value> [--json] [-w <value>] [--description <value>] [--hidden]
|
|
33
|
+
|
|
34
|
+
FLAGS
|
|
35
|
+
--description=<value> Description for the new category
|
|
36
|
+
--[no-]hidden Create as hidden category
|
|
37
|
+
--title=<value> (required) Title for the new category
|
|
38
|
+
|
|
39
|
+
GLOBAL FLAGS
|
|
40
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
41
|
+
--json Format output as json.
|
|
42
|
+
|
|
43
|
+
DESCRIPTION
|
|
44
|
+
Create a new category
|
|
45
|
+
|
|
46
|
+
EXAMPLES
|
|
47
|
+
$ twentythree category create --title "My Category"
|
|
48
|
+
|
|
49
|
+
$ twentythree category create --title "My Category" --json
|
|
50
|
+
|
|
51
|
+
$ twentythree category create --title "Hidden Category" --hidden
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
_See code: [src/commands/category/create.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/category/create.ts)_
|
|
55
|
+
|
|
56
|
+
## `twentythree category delete ID`
|
|
57
|
+
|
|
58
|
+
Delete a category from the active workspace
|
|
59
|
+
|
|
60
|
+
```
|
|
61
|
+
USAGE
|
|
62
|
+
$ twentythree category delete ID [--json] [-w <value>]
|
|
63
|
+
|
|
64
|
+
ARGUMENTS
|
|
65
|
+
ID Category ID
|
|
66
|
+
|
|
67
|
+
GLOBAL FLAGS
|
|
68
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
69
|
+
--json Format output as json.
|
|
70
|
+
|
|
71
|
+
DESCRIPTION
|
|
72
|
+
Delete a category from the active workspace
|
|
73
|
+
|
|
74
|
+
EXAMPLES
|
|
75
|
+
$ twentythree category delete 42
|
|
76
|
+
|
|
77
|
+
$ twentythree category delete 42 --json
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
_See code: [src/commands/category/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/category/delete.ts)_
|
|
81
|
+
|
|
82
|
+
## `twentythree category list`
|
|
83
|
+
|
|
84
|
+
List categories in the active workspace
|
|
85
|
+
|
|
86
|
+
```
|
|
87
|
+
USAGE
|
|
88
|
+
$ twentythree category list [--json] [-w <value>] [--include-hidden]
|
|
89
|
+
|
|
90
|
+
FLAGS
|
|
91
|
+
--[no-]include-hidden Include hidden categories in the results
|
|
92
|
+
|
|
93
|
+
GLOBAL FLAGS
|
|
94
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
95
|
+
--json Format output as json.
|
|
96
|
+
|
|
97
|
+
DESCRIPTION
|
|
98
|
+
List categories in the active workspace
|
|
99
|
+
|
|
100
|
+
EXAMPLES
|
|
101
|
+
$ twentythree category list
|
|
102
|
+
|
|
103
|
+
$ twentythree category list --json
|
|
104
|
+
|
|
105
|
+
$ twentythree category list --include-hidden
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
_See code: [src/commands/category/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/category/list.ts)_
|
|
109
|
+
|
|
110
|
+
## `twentythree category update ID`
|
|
111
|
+
|
|
112
|
+
Update metadata for a category
|
|
113
|
+
|
|
114
|
+
```
|
|
115
|
+
USAGE
|
|
116
|
+
$ twentythree category update ID [--json] [-w <value>] [--title <value>] [--description <value>] [--hidden]
|
|
117
|
+
|
|
118
|
+
ARGUMENTS
|
|
119
|
+
ID Category ID
|
|
120
|
+
|
|
121
|
+
FLAGS
|
|
122
|
+
--description=<value> New description for the category
|
|
123
|
+
--[no-]hidden Show or hide the category
|
|
124
|
+
--title=<value> New title for the category
|
|
125
|
+
|
|
126
|
+
GLOBAL FLAGS
|
|
127
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
128
|
+
--json Format output as json.
|
|
129
|
+
|
|
130
|
+
DESCRIPTION
|
|
131
|
+
Update metadata for a category
|
|
132
|
+
|
|
133
|
+
EXAMPLES
|
|
134
|
+
$ twentythree category update 42 --title "New Title"
|
|
135
|
+
|
|
136
|
+
$ twentythree category update 42 --hidden
|
|
137
|
+
|
|
138
|
+
$ twentythree category update 42
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
_See code: [src/commands/category/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/category/update.ts)_
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
`twentythree collector:exclude`
|
|
2
|
+
===============================
|
|
3
|
+
|
|
4
|
+
Block a collector from a video or webinar
|
|
5
|
+
|
|
6
|
+
* [`twentythree collector exclude ID`](#twentythree-collector-exclude-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree collector exclude ID`
|
|
9
|
+
|
|
10
|
+
Block a collector from a video or webinar
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree collector exclude ID --object-id <value> [--json] [-w <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Collector action ID
|
|
18
|
+
|
|
19
|
+
FLAGS
|
|
20
|
+
--object-id=<value> (required) ID of the video or webinar to block the collector from
|
|
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
|
+
Block a collector from a video or webinar
|
|
28
|
+
|
|
29
|
+
EXAMPLES
|
|
30
|
+
$ twentythree collector exclude 456 --object-id 123
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
_See code: [src/commands/collector/exclude.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/collector/exclude.ts)_
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
`twentythree collector:include`
|
|
2
|
+
===============================
|
|
3
|
+
|
|
4
|
+
Attach a collector to a video or webinar
|
|
5
|
+
|
|
6
|
+
* [`twentythree collector include ID`](#twentythree-collector-include-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree collector include ID`
|
|
9
|
+
|
|
10
|
+
Attach a collector to a video or webinar
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree collector include ID --object-id <value> [--json] [-w <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Collector action ID
|
|
18
|
+
|
|
19
|
+
FLAGS
|
|
20
|
+
--object-id=<value> (required) ID of the video or webinar to attach the collector to
|
|
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
|
+
Attach a collector to a video or webinar
|
|
28
|
+
|
|
29
|
+
EXAMPLES
|
|
30
|
+
$ twentythree collector include 456 --object-id 123
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
_See code: [src/commands/collector/include.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/collector/include.ts)_
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
`twentythree collector:list`
|
|
2
|
+
============================
|
|
3
|
+
|
|
4
|
+
List collectors in the active workspace
|
|
5
|
+
|
|
6
|
+
* [`twentythree collector list`](#twentythree-collector-list)
|
|
7
|
+
|
|
8
|
+
## `twentythree collector list`
|
|
9
|
+
|
|
10
|
+
List collectors in the active workspace
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree collector list [--json] [-w <value>] [--object-id <value>] [--include-analytics]
|
|
15
|
+
|
|
16
|
+
FLAGS
|
|
17
|
+
--include-analytics Include analytics data for each collector
|
|
18
|
+
--object-id=<value> Filter collectors by object (video/webinar) ID
|
|
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 collectors in the active workspace
|
|
26
|
+
|
|
27
|
+
EXAMPLES
|
|
28
|
+
$ twentythree collector list
|
|
29
|
+
|
|
30
|
+
$ twentythree collector list --object-id 123
|
|
31
|
+
|
|
32
|
+
$ twentythree collector list --include-analytics
|
|
33
|
+
|
|
34
|
+
$ twentythree collector list --json
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
_See code: [src/commands/collector/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/collector/list.ts)_
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
`twentythree collector`
|
|
2
|
+
=======================
|
|
3
|
+
|
|
4
|
+
Block a collector from a video or webinar
|
|
5
|
+
|
|
6
|
+
* [`twentythree collector exclude ID`](#twentythree-collector-exclude-id)
|
|
7
|
+
* [`twentythree collector include ID`](#twentythree-collector-include-id)
|
|
8
|
+
* [`twentythree collector list`](#twentythree-collector-list)
|
|
9
|
+
|
|
10
|
+
## `twentythree collector exclude ID`
|
|
11
|
+
|
|
12
|
+
Block a collector from a video or webinar
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
USAGE
|
|
16
|
+
$ twentythree collector exclude ID --object-id <value> [--json] [-w <value>]
|
|
17
|
+
|
|
18
|
+
ARGUMENTS
|
|
19
|
+
ID Collector action ID
|
|
20
|
+
|
|
21
|
+
FLAGS
|
|
22
|
+
--object-id=<value> (required) ID of the video or webinar to block the collector from
|
|
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
|
+
Block a collector from a video or webinar
|
|
30
|
+
|
|
31
|
+
EXAMPLES
|
|
32
|
+
$ twentythree collector exclude 456 --object-id 123
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
_See code: [src/commands/collector/exclude.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/collector/exclude.ts)_
|
|
36
|
+
|
|
37
|
+
## `twentythree collector include ID`
|
|
38
|
+
|
|
39
|
+
Attach a collector to a video or webinar
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
USAGE
|
|
43
|
+
$ twentythree collector include ID --object-id <value> [--json] [-w <value>]
|
|
44
|
+
|
|
45
|
+
ARGUMENTS
|
|
46
|
+
ID Collector action ID
|
|
47
|
+
|
|
48
|
+
FLAGS
|
|
49
|
+
--object-id=<value> (required) ID of the video or webinar to attach the collector to
|
|
50
|
+
|
|
51
|
+
GLOBAL FLAGS
|
|
52
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
53
|
+
--json Format output as json.
|
|
54
|
+
|
|
55
|
+
DESCRIPTION
|
|
56
|
+
Attach a collector to a video or webinar
|
|
57
|
+
|
|
58
|
+
EXAMPLES
|
|
59
|
+
$ twentythree collector include 456 --object-id 123
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
_See code: [src/commands/collector/include.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/collector/include.ts)_
|
|
63
|
+
|
|
64
|
+
## `twentythree collector list`
|
|
65
|
+
|
|
66
|
+
List collectors in the active workspace
|
|
67
|
+
|
|
68
|
+
```
|
|
69
|
+
USAGE
|
|
70
|
+
$ twentythree collector list [--json] [-w <value>] [--object-id <value>] [--include-analytics]
|
|
71
|
+
|
|
72
|
+
FLAGS
|
|
73
|
+
--include-analytics Include analytics data for each collector
|
|
74
|
+
--object-id=<value> Filter collectors by object (video/webinar) ID
|
|
75
|
+
|
|
76
|
+
GLOBAL FLAGS
|
|
77
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
78
|
+
--json Format output as json.
|
|
79
|
+
|
|
80
|
+
DESCRIPTION
|
|
81
|
+
List collectors in the active workspace
|
|
82
|
+
|
|
83
|
+
EXAMPLES
|
|
84
|
+
$ twentythree collector list
|
|
85
|
+
|
|
86
|
+
$ twentythree collector list --object-id 123
|
|
87
|
+
|
|
88
|
+
$ twentythree collector list --include-analytics
|
|
89
|
+
|
|
90
|
+
$ twentythree collector list --json
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
_See code: [src/commands/collector/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/collector/list.ts)_
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
`twentythree comment:add`
|
|
2
|
+
=========================
|
|
3
|
+
|
|
4
|
+
Add a comment to an object
|
|
5
|
+
|
|
6
|
+
* [`twentythree comment add`](#twentythree-comment-add)
|
|
7
|
+
|
|
8
|
+
## `twentythree comment add`
|
|
9
|
+
|
|
10
|
+
Add a comment to an object
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree comment add --object-id <value> --object-type <value> [--json] [-w <value>] [--content <value>]
|
|
15
|
+
[--name <value>] [--email <value>] [--url <value>] [--comment-type <value>] [--reply-to <value>] [--comment-time
|
|
16
|
+
<value>] [--object-token <value>]
|
|
17
|
+
|
|
18
|
+
FLAGS
|
|
19
|
+
--comment-time=<value> Timestamp for the comment
|
|
20
|
+
--comment-type=<value> Comment type (comment, question, chat)
|
|
21
|
+
--content=<value> Comment text content
|
|
22
|
+
--email=<value> Author email for the comment
|
|
23
|
+
--name=<value> Author name for the comment
|
|
24
|
+
--object-id=<value> (required) Object ID to comment on
|
|
25
|
+
--object-token=<value> Object token for the target object
|
|
26
|
+
--object-type=<value> (required) Object type (photo, album, live)
|
|
27
|
+
--reply-to=<value> Comment ID to reply to
|
|
28
|
+
--url=<value> URL associated with the comment
|
|
29
|
+
|
|
30
|
+
GLOBAL FLAGS
|
|
31
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
32
|
+
--json Format output as json.
|
|
33
|
+
|
|
34
|
+
DESCRIPTION
|
|
35
|
+
Add a comment to an object
|
|
36
|
+
|
|
37
|
+
EXAMPLES
|
|
38
|
+
$ twentythree comment add --object-id 123 --object-type photo --content "Great video!"
|
|
39
|
+
|
|
40
|
+
$ twentythree comment add --object-id 456 --object-type live --content "Question?" --comment-type question
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
_See code: [src/commands/comment/add.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/add.ts)_
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
`twentythree comment:clone`
|
|
2
|
+
===========================
|
|
3
|
+
|
|
4
|
+
Clone an existing comment
|
|
5
|
+
|
|
6
|
+
* [`twentythree comment clone [ID]`](#twentythree-comment-clone-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree comment clone [ID]`
|
|
9
|
+
|
|
10
|
+
Clone an existing comment
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree comment clone [ID] [--json] [-w <value>] [--clone-type <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
[ID] Comment ID to clone
|
|
18
|
+
|
|
19
|
+
FLAGS
|
|
20
|
+
--clone-type=<value> Type for the cloned comment (chat, question, comment)
|
|
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
|
+
Clone an existing comment
|
|
28
|
+
|
|
29
|
+
EXAMPLES
|
|
30
|
+
$ twentythree comment clone 789
|
|
31
|
+
|
|
32
|
+
$ twentythree comment clone 789 --clone-type question
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
_See code: [src/commands/comment/clone.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/clone.ts)_
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
`twentythree comment:delete`
|
|
2
|
+
============================
|
|
3
|
+
|
|
4
|
+
Delete a comment
|
|
5
|
+
|
|
6
|
+
* [`twentythree comment delete ID`](#twentythree-comment-delete-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree comment delete ID`
|
|
9
|
+
|
|
10
|
+
Delete a comment
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree comment delete ID [--json] [-w <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Comment 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 comment
|
|
25
|
+
|
|
26
|
+
EXAMPLES
|
|
27
|
+
$ twentythree comment delete 789
|
|
28
|
+
|
|
29
|
+
$ twentythree comment delete 789 --json
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
_See code: [src/commands/comment/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/delete.ts)_
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
`twentythree comment:list`
|
|
2
|
+
==========================
|
|
3
|
+
|
|
4
|
+
List comments in the active workspace
|
|
5
|
+
|
|
6
|
+
* [`twentythree comment list`](#twentythree-comment-list)
|
|
7
|
+
|
|
8
|
+
## `twentythree comment list`
|
|
9
|
+
|
|
10
|
+
List comments in the active workspace
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree comment list [--json] [-w <value>] [--object-id <value>] [--object-type <value>] [--comment-type
|
|
15
|
+
<value>] [--search <value>] [--order <value>] [--include-reactions] [--include-replies] [--promoted]
|
|
16
|
+
|
|
17
|
+
FLAGS
|
|
18
|
+
--comment-type=<value> Filter by comment type (comment, question, chat)
|
|
19
|
+
--include-reactions Include reactions on each comment
|
|
20
|
+
--include-replies Include reply-to comments
|
|
21
|
+
--object-id=<value> Filter by object ID
|
|
22
|
+
--object-type=<value> Filter by object type (photo, album)
|
|
23
|
+
--order=<value> Sort order for results
|
|
24
|
+
--promoted Filter to promoted comments only
|
|
25
|
+
--search=<value> Search comments by content
|
|
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 comments in the active workspace
|
|
33
|
+
|
|
34
|
+
EXAMPLES
|
|
35
|
+
$ twentythree comment list
|
|
36
|
+
|
|
37
|
+
$ twentythree comment list --object-id 123 --object-type photo
|
|
38
|
+
|
|
39
|
+
$ twentythree comment list --json
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
_See code: [src/commands/comment/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/list.ts)_
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
`twentythree comment:promote`
|
|
2
|
+
=============================
|
|
3
|
+
|
|
4
|
+
Promote or toggle promoted status of a comment
|
|
5
|
+
|
|
6
|
+
* [`twentythree comment promote ID`](#twentythree-comment-promote-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree comment promote ID`
|
|
9
|
+
|
|
10
|
+
Promote or toggle promoted status of a comment
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree comment promote ID [--json] [-w <value>] [--promoted]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Comment ID
|
|
18
|
+
|
|
19
|
+
FLAGS
|
|
20
|
+
--[no-]promoted Set promoted status (omit to toggle)
|
|
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
|
+
Promote or toggle promoted status of a comment
|
|
28
|
+
|
|
29
|
+
EXAMPLES
|
|
30
|
+
$ twentythree comment promote 789
|
|
31
|
+
|
|
32
|
+
$ twentythree comment promote 789 --promoted
|
|
33
|
+
|
|
34
|
+
$ twentythree comment promote 789 --no-promoted
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
_See code: [src/commands/comment/promote.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/promote.ts)_
|