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,106 @@
|
|
|
1
|
+
`twentythree comment:reaction`
|
|
2
|
+
==============================
|
|
3
|
+
|
|
4
|
+
Add a reaction to a comment
|
|
5
|
+
|
|
6
|
+
* [`twentythree comment reaction add ID`](#twentythree-comment-reaction-add-id)
|
|
7
|
+
* [`twentythree comment reaction list`](#twentythree-comment-reaction-list)
|
|
8
|
+
* [`twentythree comment reaction remove ID`](#twentythree-comment-reaction-remove-id)
|
|
9
|
+
|
|
10
|
+
## `twentythree comment reaction add ID`
|
|
11
|
+
|
|
12
|
+
Add a reaction to a comment
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
USAGE
|
|
16
|
+
$ twentythree comment reaction add ID --reaction <value> --object-id <value> --object-token <value> [--json] [-w
|
|
17
|
+
<value>] [--object-type <value>] [--uuid <value>]
|
|
18
|
+
|
|
19
|
+
ARGUMENTS
|
|
20
|
+
ID Comment ID
|
|
21
|
+
|
|
22
|
+
FLAGS
|
|
23
|
+
--object-id=<value> (required) Object ID the comment belongs to
|
|
24
|
+
--object-token=<value> (required) Object token for the target object
|
|
25
|
+
--object-type=<value> Object type (live, photo, album)
|
|
26
|
+
--reaction=<value> (required) Reaction emoji to add
|
|
27
|
+
--uuid=<value> UUID identifier
|
|
28
|
+
|
|
29
|
+
GLOBAL FLAGS
|
|
30
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
31
|
+
--json Format output as json.
|
|
32
|
+
|
|
33
|
+
DESCRIPTION
|
|
34
|
+
Add a reaction to a comment
|
|
35
|
+
|
|
36
|
+
EXAMPLES
|
|
37
|
+
$ twentythree comment reaction add 789 --object-id 123 --object-token abc --reaction "👍"
|
|
38
|
+
|
|
39
|
+
$ twentythree comment reaction add 789 --object-id 123 --object-token abc --reaction "❤️" --object-type photo
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
_See code: [src/commands/comment/reaction/add.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/reaction/add.ts)_
|
|
43
|
+
|
|
44
|
+
## `twentythree comment reaction list`
|
|
45
|
+
|
|
46
|
+
List reactions on comments for an object
|
|
47
|
+
|
|
48
|
+
```
|
|
49
|
+
USAGE
|
|
50
|
+
$ twentythree comment reaction list --object-id <value> --object-token <value> [--json] [-w <value>] [--object-type
|
|
51
|
+
<value>] [--uuid <value>]
|
|
52
|
+
|
|
53
|
+
FLAGS
|
|
54
|
+
--object-id=<value> (required) Object ID to list reactions for
|
|
55
|
+
--object-token=<value> (required) Object token for the target object
|
|
56
|
+
--object-type=<value> Object type (live, photo, album)
|
|
57
|
+
--uuid=<value> UUID identifier
|
|
58
|
+
|
|
59
|
+
GLOBAL FLAGS
|
|
60
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
61
|
+
--json Format output as json.
|
|
62
|
+
|
|
63
|
+
DESCRIPTION
|
|
64
|
+
List reactions on comments for an object
|
|
65
|
+
|
|
66
|
+
EXAMPLES
|
|
67
|
+
$ twentythree comment reaction list --object-id 123 --object-token abc
|
|
68
|
+
|
|
69
|
+
$ twentythree comment reaction list --object-id 123 --object-token abc --object-type photo
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
_See code: [src/commands/comment/reaction/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/reaction/list.ts)_
|
|
73
|
+
|
|
74
|
+
## `twentythree comment reaction remove ID`
|
|
75
|
+
|
|
76
|
+
Remove a reaction from a comment
|
|
77
|
+
|
|
78
|
+
```
|
|
79
|
+
USAGE
|
|
80
|
+
$ twentythree comment reaction remove ID --reaction <value> --object-id <value> --object-token <value> [--json] [-w
|
|
81
|
+
<value>] [--object-type <value>] [--uuid <value>]
|
|
82
|
+
|
|
83
|
+
ARGUMENTS
|
|
84
|
+
ID Comment ID
|
|
85
|
+
|
|
86
|
+
FLAGS
|
|
87
|
+
--object-id=<value> (required) Object ID the comment belongs to
|
|
88
|
+
--object-token=<value> (required) Object token for the target object
|
|
89
|
+
--object-type=<value> Object type (live, photo, album)
|
|
90
|
+
--reaction=<value> (required) Reaction emoji to remove
|
|
91
|
+
--uuid=<value> UUID identifier
|
|
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
|
+
Remove a reaction from a comment
|
|
99
|
+
|
|
100
|
+
EXAMPLES
|
|
101
|
+
$ twentythree comment reaction remove 789 --object-id 123 --object-token abc --reaction "👍"
|
|
102
|
+
|
|
103
|
+
$ twentythree comment reaction remove 789 --object-id 123 --object-token abc --reaction "❤️" --object-type photo
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
_See code: [src/commands/comment/reaction/remove.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/reaction/remove.ts)_
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
`twentythree comment:set-order`
|
|
2
|
+
===============================
|
|
3
|
+
|
|
4
|
+
Set display order of comments on an object
|
|
5
|
+
|
|
6
|
+
* [`twentythree comment set-order`](#twentythree-comment-set-order)
|
|
7
|
+
|
|
8
|
+
## `twentythree comment set-order`
|
|
9
|
+
|
|
10
|
+
Set display order of comments on an object
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree comment set-order --object-id <value> --order <value> [--json] [-w <value>] [--comment-type <value>]
|
|
15
|
+
|
|
16
|
+
FLAGS
|
|
17
|
+
--comment-type=<value> Comment type to reorder (default: question)
|
|
18
|
+
--object-id=<value> (required) Object ID whose comments are being reordered
|
|
19
|
+
--order=<value> (required) Comma-separated list of comment IDs in desired display order
|
|
20
|
+
|
|
21
|
+
GLOBAL FLAGS
|
|
22
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
23
|
+
--json Format output as json.
|
|
24
|
+
|
|
25
|
+
DESCRIPTION
|
|
26
|
+
Set display order of comments on an object
|
|
27
|
+
|
|
28
|
+
EXAMPLES
|
|
29
|
+
$ twentythree comment set-order --object-id 123 --order "789,456,123"
|
|
30
|
+
|
|
31
|
+
$ twentythree comment set-order --object-id 123 --order "789,456" --comment-type question
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
_See code: [src/commands/comment/set-order.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/set-order.ts)_
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
`twentythree comment:update`
|
|
2
|
+
============================
|
|
3
|
+
|
|
4
|
+
Update a comment's status
|
|
5
|
+
|
|
6
|
+
* [`twentythree comment update ID`](#twentythree-comment-update-id)
|
|
7
|
+
|
|
8
|
+
## `twentythree comment update ID`
|
|
9
|
+
|
|
10
|
+
Update a comment's status
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree comment update ID --object-id <value> [--json] [-w <value>] [--status <value>]
|
|
15
|
+
|
|
16
|
+
ARGUMENTS
|
|
17
|
+
ID Comment ID
|
|
18
|
+
|
|
19
|
+
FLAGS
|
|
20
|
+
--object-id=<value> (required) Object ID the comment belongs to
|
|
21
|
+
--status=<value> Comment status (answered, dismissed, or empty to clear)
|
|
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
|
+
Update a comment's status
|
|
29
|
+
|
|
30
|
+
EXAMPLES
|
|
31
|
+
$ twentythree comment update 789 --object-id 123 --status answered
|
|
32
|
+
|
|
33
|
+
$ twentythree comment update 789 --object-id 123 --status dismissed
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
_See code: [src/commands/comment/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/update.ts)_
|
|
@@ -0,0 +1,330 @@
|
|
|
1
|
+
`twentythree comment`
|
|
2
|
+
=====================
|
|
3
|
+
|
|
4
|
+
Add a comment to an object
|
|
5
|
+
|
|
6
|
+
* [`twentythree comment add`](#twentythree-comment-add)
|
|
7
|
+
* [`twentythree comment clone [ID]`](#twentythree-comment-clone-id)
|
|
8
|
+
* [`twentythree comment delete ID`](#twentythree-comment-delete-id)
|
|
9
|
+
* [`twentythree comment list`](#twentythree-comment-list)
|
|
10
|
+
* [`twentythree comment promote ID`](#twentythree-comment-promote-id)
|
|
11
|
+
* [`twentythree comment reaction add ID`](#twentythree-comment-reaction-add-id)
|
|
12
|
+
* [`twentythree comment reaction list`](#twentythree-comment-reaction-list)
|
|
13
|
+
* [`twentythree comment reaction remove ID`](#twentythree-comment-reaction-remove-id)
|
|
14
|
+
* [`twentythree comment set-order`](#twentythree-comment-set-order)
|
|
15
|
+
* [`twentythree comment update ID`](#twentythree-comment-update-id)
|
|
16
|
+
|
|
17
|
+
## `twentythree comment add`
|
|
18
|
+
|
|
19
|
+
Add a comment to an object
|
|
20
|
+
|
|
21
|
+
```
|
|
22
|
+
USAGE
|
|
23
|
+
$ twentythree comment add --object-id <value> --object-type <value> [--json] [-w <value>] [--content <value>]
|
|
24
|
+
[--name <value>] [--email <value>] [--url <value>] [--comment-type <value>] [--reply-to <value>] [--comment-time
|
|
25
|
+
<value>] [--object-token <value>]
|
|
26
|
+
|
|
27
|
+
FLAGS
|
|
28
|
+
--comment-time=<value> Timestamp for the comment
|
|
29
|
+
--comment-type=<value> Comment type (comment, question, chat)
|
|
30
|
+
--content=<value> Comment text content
|
|
31
|
+
--email=<value> Author email for the comment
|
|
32
|
+
--name=<value> Author name for the comment
|
|
33
|
+
--object-id=<value> (required) Object ID to comment on
|
|
34
|
+
--object-token=<value> Object token for the target object
|
|
35
|
+
--object-type=<value> (required) Object type (photo, album, live)
|
|
36
|
+
--reply-to=<value> Comment ID to reply to
|
|
37
|
+
--url=<value> URL associated with the comment
|
|
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
|
+
Add a comment to an object
|
|
45
|
+
|
|
46
|
+
EXAMPLES
|
|
47
|
+
$ twentythree comment add --object-id 123 --object-type photo --content "Great video!"
|
|
48
|
+
|
|
49
|
+
$ twentythree comment add --object-id 456 --object-type live --content "Question?" --comment-type question
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
_See code: [src/commands/comment/add.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/add.ts)_
|
|
53
|
+
|
|
54
|
+
## `twentythree comment clone [ID]`
|
|
55
|
+
|
|
56
|
+
Clone an existing comment
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
USAGE
|
|
60
|
+
$ twentythree comment clone [ID] [--json] [-w <value>] [--clone-type <value>]
|
|
61
|
+
|
|
62
|
+
ARGUMENTS
|
|
63
|
+
[ID] Comment ID to clone
|
|
64
|
+
|
|
65
|
+
FLAGS
|
|
66
|
+
--clone-type=<value> Type for the cloned comment (chat, question, comment)
|
|
67
|
+
|
|
68
|
+
GLOBAL FLAGS
|
|
69
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
70
|
+
--json Format output as json.
|
|
71
|
+
|
|
72
|
+
DESCRIPTION
|
|
73
|
+
Clone an existing comment
|
|
74
|
+
|
|
75
|
+
EXAMPLES
|
|
76
|
+
$ twentythree comment clone 789
|
|
77
|
+
|
|
78
|
+
$ twentythree comment clone 789 --clone-type question
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
_See code: [src/commands/comment/clone.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/clone.ts)_
|
|
82
|
+
|
|
83
|
+
## `twentythree comment delete ID`
|
|
84
|
+
|
|
85
|
+
Delete a comment
|
|
86
|
+
|
|
87
|
+
```
|
|
88
|
+
USAGE
|
|
89
|
+
$ twentythree comment delete ID [--json] [-w <value>]
|
|
90
|
+
|
|
91
|
+
ARGUMENTS
|
|
92
|
+
ID Comment ID
|
|
93
|
+
|
|
94
|
+
GLOBAL FLAGS
|
|
95
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
96
|
+
--json Format output as json.
|
|
97
|
+
|
|
98
|
+
DESCRIPTION
|
|
99
|
+
Delete a comment
|
|
100
|
+
|
|
101
|
+
EXAMPLES
|
|
102
|
+
$ twentythree comment delete 789
|
|
103
|
+
|
|
104
|
+
$ twentythree comment delete 789 --json
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
_See code: [src/commands/comment/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/delete.ts)_
|
|
108
|
+
|
|
109
|
+
## `twentythree comment list`
|
|
110
|
+
|
|
111
|
+
List comments in the active workspace
|
|
112
|
+
|
|
113
|
+
```
|
|
114
|
+
USAGE
|
|
115
|
+
$ twentythree comment list [--json] [-w <value>] [--object-id <value>] [--object-type <value>] [--comment-type
|
|
116
|
+
<value>] [--search <value>] [--order <value>] [--include-reactions] [--include-replies] [--promoted]
|
|
117
|
+
|
|
118
|
+
FLAGS
|
|
119
|
+
--comment-type=<value> Filter by comment type (comment, question, chat)
|
|
120
|
+
--include-reactions Include reactions on each comment
|
|
121
|
+
--include-replies Include reply-to comments
|
|
122
|
+
--object-id=<value> Filter by object ID
|
|
123
|
+
--object-type=<value> Filter by object type (photo, album)
|
|
124
|
+
--order=<value> Sort order for results
|
|
125
|
+
--promoted Filter to promoted comments only
|
|
126
|
+
--search=<value> Search comments by content
|
|
127
|
+
|
|
128
|
+
GLOBAL FLAGS
|
|
129
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
130
|
+
--json Format output as json.
|
|
131
|
+
|
|
132
|
+
DESCRIPTION
|
|
133
|
+
List comments in the active workspace
|
|
134
|
+
|
|
135
|
+
EXAMPLES
|
|
136
|
+
$ twentythree comment list
|
|
137
|
+
|
|
138
|
+
$ twentythree comment list --object-id 123 --object-type photo
|
|
139
|
+
|
|
140
|
+
$ twentythree comment list --json
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
_See code: [src/commands/comment/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/list.ts)_
|
|
144
|
+
|
|
145
|
+
## `twentythree comment promote ID`
|
|
146
|
+
|
|
147
|
+
Promote or toggle promoted status of a comment
|
|
148
|
+
|
|
149
|
+
```
|
|
150
|
+
USAGE
|
|
151
|
+
$ twentythree comment promote ID [--json] [-w <value>] [--promoted]
|
|
152
|
+
|
|
153
|
+
ARGUMENTS
|
|
154
|
+
ID Comment ID
|
|
155
|
+
|
|
156
|
+
FLAGS
|
|
157
|
+
--[no-]promoted Set promoted status (omit to toggle)
|
|
158
|
+
|
|
159
|
+
GLOBAL FLAGS
|
|
160
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
161
|
+
--json Format output as json.
|
|
162
|
+
|
|
163
|
+
DESCRIPTION
|
|
164
|
+
Promote or toggle promoted status of a comment
|
|
165
|
+
|
|
166
|
+
EXAMPLES
|
|
167
|
+
$ twentythree comment promote 789
|
|
168
|
+
|
|
169
|
+
$ twentythree comment promote 789 --promoted
|
|
170
|
+
|
|
171
|
+
$ twentythree comment promote 789 --no-promoted
|
|
172
|
+
```
|
|
173
|
+
|
|
174
|
+
_See code: [src/commands/comment/promote.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/promote.ts)_
|
|
175
|
+
|
|
176
|
+
## `twentythree comment reaction add ID`
|
|
177
|
+
|
|
178
|
+
Add a reaction to a comment
|
|
179
|
+
|
|
180
|
+
```
|
|
181
|
+
USAGE
|
|
182
|
+
$ twentythree comment reaction add ID --reaction <value> --object-id <value> --object-token <value> [--json] [-w
|
|
183
|
+
<value>] [--object-type <value>] [--uuid <value>]
|
|
184
|
+
|
|
185
|
+
ARGUMENTS
|
|
186
|
+
ID Comment ID
|
|
187
|
+
|
|
188
|
+
FLAGS
|
|
189
|
+
--object-id=<value> (required) Object ID the comment belongs to
|
|
190
|
+
--object-token=<value> (required) Object token for the target object
|
|
191
|
+
--object-type=<value> Object type (live, photo, album)
|
|
192
|
+
--reaction=<value> (required) Reaction emoji to add
|
|
193
|
+
--uuid=<value> UUID identifier
|
|
194
|
+
|
|
195
|
+
GLOBAL FLAGS
|
|
196
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
197
|
+
--json Format output as json.
|
|
198
|
+
|
|
199
|
+
DESCRIPTION
|
|
200
|
+
Add a reaction to a comment
|
|
201
|
+
|
|
202
|
+
EXAMPLES
|
|
203
|
+
$ twentythree comment reaction add 789 --object-id 123 --object-token abc --reaction "👍"
|
|
204
|
+
|
|
205
|
+
$ twentythree comment reaction add 789 --object-id 123 --object-token abc --reaction "❤️" --object-type photo
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
_See code: [src/commands/comment/reaction/add.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/reaction/add.ts)_
|
|
209
|
+
|
|
210
|
+
## `twentythree comment reaction list`
|
|
211
|
+
|
|
212
|
+
List reactions on comments for an object
|
|
213
|
+
|
|
214
|
+
```
|
|
215
|
+
USAGE
|
|
216
|
+
$ twentythree comment reaction list --object-id <value> --object-token <value> [--json] [-w <value>] [--object-type
|
|
217
|
+
<value>] [--uuid <value>]
|
|
218
|
+
|
|
219
|
+
FLAGS
|
|
220
|
+
--object-id=<value> (required) Object ID to list reactions for
|
|
221
|
+
--object-token=<value> (required) Object token for the target object
|
|
222
|
+
--object-type=<value> Object type (live, photo, album)
|
|
223
|
+
--uuid=<value> UUID identifier
|
|
224
|
+
|
|
225
|
+
GLOBAL FLAGS
|
|
226
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
227
|
+
--json Format output as json.
|
|
228
|
+
|
|
229
|
+
DESCRIPTION
|
|
230
|
+
List reactions on comments for an object
|
|
231
|
+
|
|
232
|
+
EXAMPLES
|
|
233
|
+
$ twentythree comment reaction list --object-id 123 --object-token abc
|
|
234
|
+
|
|
235
|
+
$ twentythree comment reaction list --object-id 123 --object-token abc --object-type photo
|
|
236
|
+
```
|
|
237
|
+
|
|
238
|
+
_See code: [src/commands/comment/reaction/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/reaction/list.ts)_
|
|
239
|
+
|
|
240
|
+
## `twentythree comment reaction remove ID`
|
|
241
|
+
|
|
242
|
+
Remove a reaction from a comment
|
|
243
|
+
|
|
244
|
+
```
|
|
245
|
+
USAGE
|
|
246
|
+
$ twentythree comment reaction remove ID --reaction <value> --object-id <value> --object-token <value> [--json] [-w
|
|
247
|
+
<value>] [--object-type <value>] [--uuid <value>]
|
|
248
|
+
|
|
249
|
+
ARGUMENTS
|
|
250
|
+
ID Comment ID
|
|
251
|
+
|
|
252
|
+
FLAGS
|
|
253
|
+
--object-id=<value> (required) Object ID the comment belongs to
|
|
254
|
+
--object-token=<value> (required) Object token for the target object
|
|
255
|
+
--object-type=<value> Object type (live, photo, album)
|
|
256
|
+
--reaction=<value> (required) Reaction emoji to remove
|
|
257
|
+
--uuid=<value> UUID identifier
|
|
258
|
+
|
|
259
|
+
GLOBAL FLAGS
|
|
260
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
261
|
+
--json Format output as json.
|
|
262
|
+
|
|
263
|
+
DESCRIPTION
|
|
264
|
+
Remove a reaction from a comment
|
|
265
|
+
|
|
266
|
+
EXAMPLES
|
|
267
|
+
$ twentythree comment reaction remove 789 --object-id 123 --object-token abc --reaction "👍"
|
|
268
|
+
|
|
269
|
+
$ twentythree comment reaction remove 789 --object-id 123 --object-token abc --reaction "❤️" --object-type photo
|
|
270
|
+
```
|
|
271
|
+
|
|
272
|
+
_See code: [src/commands/comment/reaction/remove.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/reaction/remove.ts)_
|
|
273
|
+
|
|
274
|
+
## `twentythree comment set-order`
|
|
275
|
+
|
|
276
|
+
Set display order of comments on an object
|
|
277
|
+
|
|
278
|
+
```
|
|
279
|
+
USAGE
|
|
280
|
+
$ twentythree comment set-order --object-id <value> --order <value> [--json] [-w <value>] [--comment-type <value>]
|
|
281
|
+
|
|
282
|
+
FLAGS
|
|
283
|
+
--comment-type=<value> Comment type to reorder (default: question)
|
|
284
|
+
--object-id=<value> (required) Object ID whose comments are being reordered
|
|
285
|
+
--order=<value> (required) Comma-separated list of comment IDs in desired display order
|
|
286
|
+
|
|
287
|
+
GLOBAL FLAGS
|
|
288
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
289
|
+
--json Format output as json.
|
|
290
|
+
|
|
291
|
+
DESCRIPTION
|
|
292
|
+
Set display order of comments on an object
|
|
293
|
+
|
|
294
|
+
EXAMPLES
|
|
295
|
+
$ twentythree comment set-order --object-id 123 --order "789,456,123"
|
|
296
|
+
|
|
297
|
+
$ twentythree comment set-order --object-id 123 --order "789,456" --comment-type question
|
|
298
|
+
```
|
|
299
|
+
|
|
300
|
+
_See code: [src/commands/comment/set-order.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/set-order.ts)_
|
|
301
|
+
|
|
302
|
+
## `twentythree comment update ID`
|
|
303
|
+
|
|
304
|
+
Update a comment's status
|
|
305
|
+
|
|
306
|
+
```
|
|
307
|
+
USAGE
|
|
308
|
+
$ twentythree comment update ID --object-id <value> [--json] [-w <value>] [--status <value>]
|
|
309
|
+
|
|
310
|
+
ARGUMENTS
|
|
311
|
+
ID Comment ID
|
|
312
|
+
|
|
313
|
+
FLAGS
|
|
314
|
+
--object-id=<value> (required) Object ID the comment belongs to
|
|
315
|
+
--status=<value> Comment status (answered, dismissed, or empty to clear)
|
|
316
|
+
|
|
317
|
+
GLOBAL FLAGS
|
|
318
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
319
|
+
--json Format output as json.
|
|
320
|
+
|
|
321
|
+
DESCRIPTION
|
|
322
|
+
Update a comment's status
|
|
323
|
+
|
|
324
|
+
EXAMPLES
|
|
325
|
+
$ twentythree comment update 789 --object-id 123 --status answered
|
|
326
|
+
|
|
327
|
+
$ twentythree comment update 789 --object-id 123 --status dismissed
|
|
328
|
+
```
|
|
329
|
+
|
|
330
|
+
_See code: [src/commands/comment/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/comment/update.ts)_
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
`twentythree doctor`
|
|
2
|
+
====================
|
|
3
|
+
|
|
4
|
+
Check CLI credentials, connectivity, and token validity
|
|
5
|
+
|
|
6
|
+
* [`twentythree doctor`](#twentythree-doctor)
|
|
7
|
+
|
|
8
|
+
## `twentythree doctor`
|
|
9
|
+
|
|
10
|
+
Check CLI credentials, connectivity, and token validity
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree doctor [--json]
|
|
15
|
+
|
|
16
|
+
GLOBAL FLAGS
|
|
17
|
+
--json Format output as json.
|
|
18
|
+
|
|
19
|
+
DESCRIPTION
|
|
20
|
+
Check CLI credentials, connectivity, and token validity
|
|
21
|
+
|
|
22
|
+
EXAMPLES
|
|
23
|
+
$ twentythree doctor
|
|
24
|
+
|
|
25
|
+
$ twentythree doctor --json
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
_See code: [src/commands/doctor.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/doctor.ts)_
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
`twentythree openupload:list`
|
|
2
|
+
=============================
|
|
3
|
+
|
|
4
|
+
List open upload tokens in the active workspace
|
|
5
|
+
|
|
6
|
+
* [`twentythree openupload list`](#twentythree-openupload-list)
|
|
7
|
+
|
|
8
|
+
## `twentythree openupload list`
|
|
9
|
+
|
|
10
|
+
List open upload tokens in the active workspace
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree openupload list [--json] [-w <value>] [--token-upload-id <value>] [--token <value>] [--app]
|
|
15
|
+
|
|
16
|
+
FLAGS
|
|
17
|
+
--app Filter by app open uploads
|
|
18
|
+
--token=<value> Filter by open upload token
|
|
19
|
+
--token-upload-id=<value> Filter by open upload token upload ID
|
|
20
|
+
|
|
21
|
+
GLOBAL FLAGS
|
|
22
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
23
|
+
--json Format output as json.
|
|
24
|
+
|
|
25
|
+
DESCRIPTION
|
|
26
|
+
List open upload tokens in the active workspace
|
|
27
|
+
|
|
28
|
+
EXAMPLES
|
|
29
|
+
$ twentythree openupload list
|
|
30
|
+
|
|
31
|
+
$ twentythree openupload list --token-upload-id 123
|
|
32
|
+
|
|
33
|
+
$ twentythree openupload list --json
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
_See code: [src/commands/openupload/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/openupload/list.ts)_
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
`twentythree openupload:update-file`
|
|
2
|
+
====================================
|
|
3
|
+
|
|
4
|
+
Update metadata for an open upload entry
|
|
5
|
+
|
|
6
|
+
* [`twentythree openupload update-file`](#twentythree-openupload-update-file)
|
|
7
|
+
|
|
8
|
+
## `twentythree openupload update-file`
|
|
9
|
+
|
|
10
|
+
Update metadata for an open upload entry
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree openupload update-file --token-upload-id <value> --token <value> --upload-key <value> [--json] [-w <value>]
|
|
15
|
+
[--title <value>] [--description <value>] [--tags <value>]
|
|
16
|
+
|
|
17
|
+
FLAGS
|
|
18
|
+
--description=<value> New description for the uploaded file
|
|
19
|
+
--tags=<value> Tags for the uploaded file (space-separated)
|
|
20
|
+
--title=<value> New title for the uploaded file
|
|
21
|
+
--token=<value> (required) Open upload token
|
|
22
|
+
--token-upload-id=<value> (required) Open upload token upload ID
|
|
23
|
+
--upload-key=<value> (required) Upload key identifying the uploaded file
|
|
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
|
+
Update metadata for an open upload entry
|
|
31
|
+
|
|
32
|
+
EXAMPLES
|
|
33
|
+
$ twentythree openupload update-file --token-upload-id 123 --token abc123 --upload-key key456 --title "My Video"
|
|
34
|
+
|
|
35
|
+
$ twentythree openupload update-file --token-upload-id 123 --token abc123 --upload-key key456 --tags "demo tutorial"
|
|
36
|
+
|
|
37
|
+
$ twentythree openupload update-file --token-upload-id 123 --token abc123 --upload-key key456 --json
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
_See code: [src/commands/openupload/update-file.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/openupload/update-file.ts)_
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
`twentythree openupload:upload-file`
|
|
2
|
+
====================================
|
|
3
|
+
|
|
4
|
+
Upload a file via an open upload token using the chunked upload engine
|
|
5
|
+
|
|
6
|
+
* [`twentythree openupload upload-file`](#twentythree-openupload-upload-file)
|
|
7
|
+
|
|
8
|
+
## `twentythree openupload upload-file`
|
|
9
|
+
|
|
10
|
+
Upload a file via an open upload token using the chunked upload engine
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree openupload upload-file --file-path <value> --token-upload-id <value> --token <value> [--json] [-w <value>]
|
|
15
|
+
[--chunk-size <value>] [--concurrency <value>]
|
|
16
|
+
|
|
17
|
+
FLAGS
|
|
18
|
+
--chunk-size=<value> [default: 5242880] Chunk size in bytes (default: 5242880 = 100MB)
|
|
19
|
+
--concurrency=<value> [default: 5] Number of chunks to upload in parallel (default: 5)
|
|
20
|
+
--file-path=<value> (required) Path to the file to upload
|
|
21
|
+
--token=<value> (required) Open upload token
|
|
22
|
+
--token-upload-id=<value> (required) Open upload token upload ID
|
|
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
|
+
Upload a file via an open upload token using the chunked upload engine
|
|
30
|
+
|
|
31
|
+
EXAMPLES
|
|
32
|
+
$ twentythree openupload upload-file --file-path ./video.mp4 --token-upload-id 123 --token abc123
|
|
33
|
+
|
|
34
|
+
$ twentythree openupload upload-file --file-path ./video.mp4 --token-upload-id 123 --token abc123 --chunk-size 52428800
|
|
35
|
+
|
|
36
|
+
$ twentythree openupload upload-file --file-path ./video.mp4 --token-upload-id 123 --token abc123 --json
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
_See code: [src/commands/openupload/upload-file.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/openupload/upload-file.ts)_
|