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,449 @@
|
|
|
1
|
+
`twentythree analytics:video`
|
|
2
|
+
=============================
|
|
3
|
+
|
|
4
|
+
Get video analytics data
|
|
5
|
+
|
|
6
|
+
* [`twentythree analytics video`](#twentythree-analytics-video)
|
|
7
|
+
* [`twentythree analytics video performance`](#twentythree-analytics-video-performance)
|
|
8
|
+
* [`twentythree analytics video performance timeseries`](#twentythree-analytics-video-performance-timeseries)
|
|
9
|
+
* [`twentythree analytics video performance totals`](#twentythree-analytics-video-performance-totals)
|
|
10
|
+
* [`twentythree analytics video published`](#twentythree-analytics-video-published)
|
|
11
|
+
* [`twentythree analytics video published timeseries`](#twentythree-analytics-video-published-timeseries)
|
|
12
|
+
* [`twentythree analytics video published totals`](#twentythree-analytics-video-published-totals)
|
|
13
|
+
* [`twentythree analytics video timeseries`](#twentythree-analytics-video-timeseries)
|
|
14
|
+
* [`twentythree analytics video totals`](#twentythree-analytics-video-totals)
|
|
15
|
+
* [`twentythree analytics video weekday`](#twentythree-analytics-video-weekday)
|
|
16
|
+
* [`twentythree analytics video weekday timeseries`](#twentythree-analytics-video-weekday-timeseries)
|
|
17
|
+
* [`twentythree analytics video weekday totals`](#twentythree-analytics-video-weekday-totals)
|
|
18
|
+
|
|
19
|
+
## `twentythree analytics video`
|
|
20
|
+
|
|
21
|
+
Get video analytics data
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
USAGE
|
|
25
|
+
$ twentythree analytics video [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
26
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
27
|
+
<value>]
|
|
28
|
+
|
|
29
|
+
FLAGS
|
|
30
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
31
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
32
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
33
|
+
--groupby=<value> Group results by dimension
|
|
34
|
+
--order=<value> Sort direction (asc/desc)
|
|
35
|
+
--orderby=<value> Order results by field
|
|
36
|
+
--page=<value> Page number
|
|
37
|
+
--selection=<value> Scope to specific objects/types
|
|
38
|
+
--size=<value> Page size
|
|
39
|
+
|
|
40
|
+
GLOBAL FLAGS
|
|
41
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
42
|
+
--json Format output as json.
|
|
43
|
+
|
|
44
|
+
DESCRIPTION
|
|
45
|
+
Get video analytics data
|
|
46
|
+
|
|
47
|
+
EXAMPLES
|
|
48
|
+
$ twentythree analytics video --date-expression thisweek
|
|
49
|
+
|
|
50
|
+
$ twentythree analytics video --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
51
|
+
|
|
52
|
+
$ twentythree analytics video --json
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
_See code: [src/commands/analytics/video/index.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/video/index.ts)_
|
|
56
|
+
|
|
57
|
+
## `twentythree analytics video performance`
|
|
58
|
+
|
|
59
|
+
Get video performance analytics
|
|
60
|
+
|
|
61
|
+
```
|
|
62
|
+
USAGE
|
|
63
|
+
$ twentythree analytics video performance [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
64
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
65
|
+
<value>]
|
|
66
|
+
|
|
67
|
+
FLAGS
|
|
68
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
69
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
70
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
71
|
+
--groupby=<value> Group results by dimension
|
|
72
|
+
--order=<value> Sort direction (asc/desc)
|
|
73
|
+
--orderby=<value> Order results by field
|
|
74
|
+
--page=<value> Page number
|
|
75
|
+
--selection=<value> Scope to specific objects/types
|
|
76
|
+
--size=<value> Page size
|
|
77
|
+
|
|
78
|
+
GLOBAL FLAGS
|
|
79
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
80
|
+
--json Format output as json.
|
|
81
|
+
|
|
82
|
+
DESCRIPTION
|
|
83
|
+
Get video performance analytics
|
|
84
|
+
|
|
85
|
+
EXAMPLES
|
|
86
|
+
$ twentythree analytics video performance --date-expression thismonth
|
|
87
|
+
|
|
88
|
+
$ twentythree analytics video performance --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
89
|
+
|
|
90
|
+
$ twentythree analytics video performance --json
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
_See code: [src/commands/analytics/video/performance.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/video/performance.ts)_
|
|
94
|
+
|
|
95
|
+
## `twentythree analytics video performance timeseries`
|
|
96
|
+
|
|
97
|
+
Get video playthrough performance - time series
|
|
98
|
+
|
|
99
|
+
```
|
|
100
|
+
USAGE
|
|
101
|
+
$ twentythree analytics video performance timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
102
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
103
|
+
|
|
104
|
+
FLAGS
|
|
105
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
106
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
107
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
108
|
+
--groupby=<value> Group results by dimension
|
|
109
|
+
--order=<value> Sort direction (asc/desc)
|
|
110
|
+
--orderby=<value> Order results by field
|
|
111
|
+
--selection=<value> Scope to specific objects/types
|
|
112
|
+
|
|
113
|
+
GLOBAL FLAGS
|
|
114
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
115
|
+
--json Format output as json.
|
|
116
|
+
|
|
117
|
+
DESCRIPTION
|
|
118
|
+
Get video playthrough performance - time series
|
|
119
|
+
|
|
120
|
+
EXAMPLES
|
|
121
|
+
$ twentythree analytics video performance timeseries --date-expression thisweek
|
|
122
|
+
|
|
123
|
+
$ twentythree analytics video performance timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
124
|
+
|
|
125
|
+
$ twentythree analytics video performance timeseries --json
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
_See code: [src/commands/analytics/video/performance/timeseries.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/video/performance/timeseries.ts)_
|
|
129
|
+
|
|
130
|
+
## `twentythree analytics video performance totals`
|
|
131
|
+
|
|
132
|
+
Get aggregated video playthrough performance - totals
|
|
133
|
+
|
|
134
|
+
```
|
|
135
|
+
USAGE
|
|
136
|
+
$ twentythree analytics video performance totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
137
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
138
|
+
|
|
139
|
+
FLAGS
|
|
140
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
141
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
142
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
143
|
+
--groupby=<value> Group results by dimension
|
|
144
|
+
--order=<value> Sort direction (asc/desc)
|
|
145
|
+
--orderby=<value> Order results by field
|
|
146
|
+
--selection=<value> Scope to specific objects/types
|
|
147
|
+
|
|
148
|
+
GLOBAL FLAGS
|
|
149
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
150
|
+
--json Format output as json.
|
|
151
|
+
|
|
152
|
+
DESCRIPTION
|
|
153
|
+
Get aggregated video playthrough performance - totals
|
|
154
|
+
|
|
155
|
+
EXAMPLES
|
|
156
|
+
$ twentythree analytics video performance totals --date-expression thisweek
|
|
157
|
+
|
|
158
|
+
$ twentythree analytics video performance totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
159
|
+
|
|
160
|
+
$ twentythree analytics video performance totals --json
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
_See code: [src/commands/analytics/video/performance/totals.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/video/performance/totals.ts)_
|
|
164
|
+
|
|
165
|
+
## `twentythree analytics video published`
|
|
166
|
+
|
|
167
|
+
Get analytics for published videos
|
|
168
|
+
|
|
169
|
+
```
|
|
170
|
+
USAGE
|
|
171
|
+
$ twentythree analytics video published [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
172
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
173
|
+
<value>]
|
|
174
|
+
|
|
175
|
+
FLAGS
|
|
176
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
177
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
178
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
179
|
+
--groupby=<value> Group results by dimension
|
|
180
|
+
--order=<value> Sort direction (asc/desc)
|
|
181
|
+
--orderby=<value> Order results by field
|
|
182
|
+
--page=<value> Page number
|
|
183
|
+
--selection=<value> Scope to specific objects/types
|
|
184
|
+
--size=<value> Page size
|
|
185
|
+
|
|
186
|
+
GLOBAL FLAGS
|
|
187
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
188
|
+
--json Format output as json.
|
|
189
|
+
|
|
190
|
+
DESCRIPTION
|
|
191
|
+
Get analytics for published videos
|
|
192
|
+
|
|
193
|
+
EXAMPLES
|
|
194
|
+
$ twentythree analytics video published --date-expression thismonth
|
|
195
|
+
|
|
196
|
+
$ twentythree analytics video published --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
197
|
+
|
|
198
|
+
$ twentythree analytics video published --json
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
_See code: [src/commands/analytics/video/published.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/video/published.ts)_
|
|
202
|
+
|
|
203
|
+
## `twentythree analytics video published timeseries`
|
|
204
|
+
|
|
205
|
+
Get video analytics by publish date - time series
|
|
206
|
+
|
|
207
|
+
```
|
|
208
|
+
USAGE
|
|
209
|
+
$ twentythree analytics video published timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
210
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
211
|
+
|
|
212
|
+
FLAGS
|
|
213
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
214
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
215
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
216
|
+
--groupby=<value> Group results by dimension
|
|
217
|
+
--order=<value> Sort direction (asc/desc)
|
|
218
|
+
--orderby=<value> Order results by field
|
|
219
|
+
--selection=<value> Scope to specific objects/types
|
|
220
|
+
|
|
221
|
+
GLOBAL FLAGS
|
|
222
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
223
|
+
--json Format output as json.
|
|
224
|
+
|
|
225
|
+
DESCRIPTION
|
|
226
|
+
Get video analytics by publish date - time series
|
|
227
|
+
|
|
228
|
+
EXAMPLES
|
|
229
|
+
$ twentythree analytics video published timeseries --date-expression thisweek
|
|
230
|
+
|
|
231
|
+
$ twentythree analytics video published timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
232
|
+
|
|
233
|
+
$ twentythree analytics video published timeseries --json
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
_See code: [src/commands/analytics/video/published/timeseries.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/video/published/timeseries.ts)_
|
|
237
|
+
|
|
238
|
+
## `twentythree analytics video published totals`
|
|
239
|
+
|
|
240
|
+
Get aggregated video analytics by publish date - totals
|
|
241
|
+
|
|
242
|
+
```
|
|
243
|
+
USAGE
|
|
244
|
+
$ twentythree analytics video published totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
245
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
246
|
+
|
|
247
|
+
FLAGS
|
|
248
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
249
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
250
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
251
|
+
--groupby=<value> Group results by dimension
|
|
252
|
+
--order=<value> Sort direction (asc/desc)
|
|
253
|
+
--orderby=<value> Order results by field
|
|
254
|
+
--selection=<value> Scope to specific objects/types
|
|
255
|
+
|
|
256
|
+
GLOBAL FLAGS
|
|
257
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
258
|
+
--json Format output as json.
|
|
259
|
+
|
|
260
|
+
DESCRIPTION
|
|
261
|
+
Get aggregated video analytics by publish date - totals
|
|
262
|
+
|
|
263
|
+
EXAMPLES
|
|
264
|
+
$ twentythree analytics video published totals --date-expression thisweek
|
|
265
|
+
|
|
266
|
+
$ twentythree analytics video published totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
267
|
+
|
|
268
|
+
$ twentythree analytics video published totals --json
|
|
269
|
+
```
|
|
270
|
+
|
|
271
|
+
_See code: [src/commands/analytics/video/published/totals.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/video/published/totals.ts)_
|
|
272
|
+
|
|
273
|
+
## `twentythree analytics video timeseries`
|
|
274
|
+
|
|
275
|
+
Get video analytics time series data
|
|
276
|
+
|
|
277
|
+
```
|
|
278
|
+
USAGE
|
|
279
|
+
$ twentythree analytics video timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
280
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
281
|
+
|
|
282
|
+
FLAGS
|
|
283
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
284
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
285
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
286
|
+
--groupby=<value> Group results by dimension
|
|
287
|
+
--order=<value> Sort direction (asc/desc)
|
|
288
|
+
--orderby=<value> Order results by field
|
|
289
|
+
--selection=<value> Scope to specific objects/types
|
|
290
|
+
|
|
291
|
+
GLOBAL FLAGS
|
|
292
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
293
|
+
--json Format output as json.
|
|
294
|
+
|
|
295
|
+
DESCRIPTION
|
|
296
|
+
Get video analytics time series data
|
|
297
|
+
|
|
298
|
+
EXAMPLES
|
|
299
|
+
$ twentythree analytics video timeseries --date-expression thisweek
|
|
300
|
+
|
|
301
|
+
$ twentythree analytics video timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
302
|
+
|
|
303
|
+
$ twentythree analytics video timeseries --json
|
|
304
|
+
```
|
|
305
|
+
|
|
306
|
+
_See code: [src/commands/analytics/video/timeseries.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/video/timeseries.ts)_
|
|
307
|
+
|
|
308
|
+
## `twentythree analytics video totals`
|
|
309
|
+
|
|
310
|
+
Get aggregated video analytics totals
|
|
311
|
+
|
|
312
|
+
```
|
|
313
|
+
USAGE
|
|
314
|
+
$ twentythree analytics video totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
315
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
316
|
+
|
|
317
|
+
FLAGS
|
|
318
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
319
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
320
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
321
|
+
--groupby=<value> Group results by dimension
|
|
322
|
+
--order=<value> Sort direction (asc/desc)
|
|
323
|
+
--orderby=<value> Order results by field
|
|
324
|
+
--selection=<value> Scope to specific objects/types
|
|
325
|
+
|
|
326
|
+
GLOBAL FLAGS
|
|
327
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
328
|
+
--json Format output as json.
|
|
329
|
+
|
|
330
|
+
DESCRIPTION
|
|
331
|
+
Get aggregated video analytics totals
|
|
332
|
+
|
|
333
|
+
EXAMPLES
|
|
334
|
+
$ twentythree analytics video totals --date-expression thismonth
|
|
335
|
+
|
|
336
|
+
$ twentythree analytics video totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
337
|
+
|
|
338
|
+
$ twentythree analytics video totals --json
|
|
339
|
+
```
|
|
340
|
+
|
|
341
|
+
_See code: [src/commands/analytics/video/totals.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/video/totals.ts)_
|
|
342
|
+
|
|
343
|
+
## `twentythree analytics video weekday`
|
|
344
|
+
|
|
345
|
+
Get video analytics broken down by day of week
|
|
346
|
+
|
|
347
|
+
```
|
|
348
|
+
USAGE
|
|
349
|
+
$ twentythree analytics video weekday [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
350
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
351
|
+
<value>]
|
|
352
|
+
|
|
353
|
+
FLAGS
|
|
354
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
355
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
356
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
357
|
+
--groupby=<value> Group results by dimension
|
|
358
|
+
--order=<value> Sort direction (asc/desc)
|
|
359
|
+
--orderby=<value> Order results by field
|
|
360
|
+
--page=<value> Page number
|
|
361
|
+
--selection=<value> Scope to specific objects/types
|
|
362
|
+
--size=<value> Page size
|
|
363
|
+
|
|
364
|
+
GLOBAL FLAGS
|
|
365
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
366
|
+
--json Format output as json.
|
|
367
|
+
|
|
368
|
+
DESCRIPTION
|
|
369
|
+
Get video analytics broken down by day of week
|
|
370
|
+
|
|
371
|
+
EXAMPLES
|
|
372
|
+
$ twentythree analytics video weekday --date-expression thismonth
|
|
373
|
+
|
|
374
|
+
$ twentythree analytics video weekday --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
375
|
+
|
|
376
|
+
$ twentythree analytics video weekday --json
|
|
377
|
+
```
|
|
378
|
+
|
|
379
|
+
_See code: [src/commands/analytics/video/weekday.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/video/weekday.ts)_
|
|
380
|
+
|
|
381
|
+
## `twentythree analytics video weekday timeseries`
|
|
382
|
+
|
|
383
|
+
Get video analytics by weekday - time series
|
|
384
|
+
|
|
385
|
+
```
|
|
386
|
+
USAGE
|
|
387
|
+
$ twentythree analytics video weekday timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
388
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
389
|
+
|
|
390
|
+
FLAGS
|
|
391
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
392
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
393
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
394
|
+
--groupby=<value> Group results by dimension
|
|
395
|
+
--order=<value> Sort direction (asc/desc)
|
|
396
|
+
--orderby=<value> Order results by field
|
|
397
|
+
--selection=<value> Scope to specific objects/types
|
|
398
|
+
|
|
399
|
+
GLOBAL FLAGS
|
|
400
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
401
|
+
--json Format output as json.
|
|
402
|
+
|
|
403
|
+
DESCRIPTION
|
|
404
|
+
Get video analytics by weekday - time series
|
|
405
|
+
|
|
406
|
+
EXAMPLES
|
|
407
|
+
$ twentythree analytics video weekday timeseries --date-expression thisweek
|
|
408
|
+
|
|
409
|
+
$ twentythree analytics video weekday timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
410
|
+
|
|
411
|
+
$ twentythree analytics video weekday timeseries --json
|
|
412
|
+
```
|
|
413
|
+
|
|
414
|
+
_See code: [src/commands/analytics/video/weekday/timeseries.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/video/weekday/timeseries.ts)_
|
|
415
|
+
|
|
416
|
+
## `twentythree analytics video weekday totals`
|
|
417
|
+
|
|
418
|
+
Get aggregated video analytics by weekday - totals
|
|
419
|
+
|
|
420
|
+
```
|
|
421
|
+
USAGE
|
|
422
|
+
$ twentythree analytics video weekday totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
423
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
424
|
+
|
|
425
|
+
FLAGS
|
|
426
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
427
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
428
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
429
|
+
--groupby=<value> Group results by dimension
|
|
430
|
+
--order=<value> Sort direction (asc/desc)
|
|
431
|
+
--orderby=<value> Order results by field
|
|
432
|
+
--selection=<value> Scope to specific objects/types
|
|
433
|
+
|
|
434
|
+
GLOBAL FLAGS
|
|
435
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
436
|
+
--json Format output as json.
|
|
437
|
+
|
|
438
|
+
DESCRIPTION
|
|
439
|
+
Get aggregated video analytics by weekday - totals
|
|
440
|
+
|
|
441
|
+
EXAMPLES
|
|
442
|
+
$ twentythree analytics video weekday totals --date-expression thisweek
|
|
443
|
+
|
|
444
|
+
$ twentythree analytics video weekday totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
445
|
+
|
|
446
|
+
$ twentythree analytics video weekday totals --json
|
|
447
|
+
```
|
|
448
|
+
|
|
449
|
+
_See code: [src/commands/analytics/video/weekday/totals.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/video/weekday/totals.ts)_
|