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,1559 @@
|
|
|
1
|
+
`twentythree analytics`
|
|
2
|
+
=======================
|
|
3
|
+
|
|
4
|
+
Get conversion analytics data
|
|
5
|
+
|
|
6
|
+
* [`twentythree analytics conversions`](#twentythree-analytics-conversions)
|
|
7
|
+
* [`twentythree analytics conversions timeseries`](#twentythree-analytics-conversions-timeseries)
|
|
8
|
+
* [`twentythree analytics conversions totals`](#twentythree-analytics-conversions-totals)
|
|
9
|
+
* [`twentythree analytics live`](#twentythree-analytics-live)
|
|
10
|
+
* [`twentythree analytics live event`](#twentythree-analytics-live-event)
|
|
11
|
+
* [`twentythree analytics live event-timeseries`](#twentythree-analytics-live-event-timeseries)
|
|
12
|
+
* [`twentythree analytics live event-totals`](#twentythree-analytics-live-event-totals)
|
|
13
|
+
* [`twentythree analytics live timeseries`](#twentythree-analytics-live-timeseries)
|
|
14
|
+
* [`twentythree analytics live totals`](#twentythree-analytics-live-totals)
|
|
15
|
+
* [`twentythree analytics live weekday`](#twentythree-analytics-live-weekday)
|
|
16
|
+
* [`twentythree analytics live weekday timeseries`](#twentythree-analytics-live-weekday-timeseries)
|
|
17
|
+
* [`twentythree analytics live weekday totals`](#twentythree-analytics-live-weekday-totals)
|
|
18
|
+
* [`twentythree analytics usage devices`](#twentythree-analytics-usage-devices)
|
|
19
|
+
* [`twentythree analytics usage devices timeseries`](#twentythree-analytics-usage-devices-timeseries)
|
|
20
|
+
* [`twentythree analytics usage devices totals`](#twentythree-analytics-usage-devices-totals)
|
|
21
|
+
* [`twentythree analytics usage domains`](#twentythree-analytics-usage-domains)
|
|
22
|
+
* [`twentythree analytics usage domains totals`](#twentythree-analytics-usage-domains-totals)
|
|
23
|
+
* [`twentythree analytics usage locations`](#twentythree-analytics-usage-locations)
|
|
24
|
+
* [`twentythree analytics usage locations totals`](#twentythree-analytics-usage-locations-totals)
|
|
25
|
+
* [`twentythree analytics usage sourceids`](#twentythree-analytics-usage-sourceids)
|
|
26
|
+
* [`twentythree analytics usage sourceids totals`](#twentythree-analytics-usage-sourceids-totals)
|
|
27
|
+
* [`twentythree analytics usage sources`](#twentythree-analytics-usage-sources)
|
|
28
|
+
* [`twentythree analytics usage sources totals`](#twentythree-analytics-usage-sources-totals)
|
|
29
|
+
* [`twentythree analytics usage spots`](#twentythree-analytics-usage-spots)
|
|
30
|
+
* [`twentythree analytics usage spots timeseries`](#twentythree-analytics-usage-spots-timeseries)
|
|
31
|
+
* [`twentythree analytics usage spots totals`](#twentythree-analytics-usage-spots-totals)
|
|
32
|
+
* [`twentythree analytics usage storage`](#twentythree-analytics-usage-storage)
|
|
33
|
+
* [`twentythree analytics usage traffic`](#twentythree-analytics-usage-traffic)
|
|
34
|
+
* [`twentythree analytics usage traffic timeseries`](#twentythree-analytics-usage-traffic-timeseries)
|
|
35
|
+
* [`twentythree analytics usage traffic totals`](#twentythree-analytics-usage-traffic-totals)
|
|
36
|
+
* [`twentythree analytics video`](#twentythree-analytics-video)
|
|
37
|
+
* [`twentythree analytics video performance`](#twentythree-analytics-video-performance)
|
|
38
|
+
* [`twentythree analytics video performance timeseries`](#twentythree-analytics-video-performance-timeseries)
|
|
39
|
+
* [`twentythree analytics video performance totals`](#twentythree-analytics-video-performance-totals)
|
|
40
|
+
* [`twentythree analytics video published`](#twentythree-analytics-video-published)
|
|
41
|
+
* [`twentythree analytics video published timeseries`](#twentythree-analytics-video-published-timeseries)
|
|
42
|
+
* [`twentythree analytics video published totals`](#twentythree-analytics-video-published-totals)
|
|
43
|
+
* [`twentythree analytics video timeseries`](#twentythree-analytics-video-timeseries)
|
|
44
|
+
* [`twentythree analytics video totals`](#twentythree-analytics-video-totals)
|
|
45
|
+
* [`twentythree analytics video weekday`](#twentythree-analytics-video-weekday)
|
|
46
|
+
* [`twentythree analytics video weekday timeseries`](#twentythree-analytics-video-weekday-timeseries)
|
|
47
|
+
* [`twentythree analytics video weekday totals`](#twentythree-analytics-video-weekday-totals)
|
|
48
|
+
|
|
49
|
+
## `twentythree analytics conversions`
|
|
50
|
+
|
|
51
|
+
Get conversion analytics data
|
|
52
|
+
|
|
53
|
+
```
|
|
54
|
+
USAGE
|
|
55
|
+
$ twentythree analytics conversions [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
56
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
57
|
+
|
|
58
|
+
FLAGS
|
|
59
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
60
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
61
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
62
|
+
--groupby=<value> Group results by dimension
|
|
63
|
+
--order=<value> Sort direction (asc/desc)
|
|
64
|
+
--orderby=<value> Order results by field
|
|
65
|
+
--selection=<value> Scope to specific objects/types
|
|
66
|
+
|
|
67
|
+
GLOBAL FLAGS
|
|
68
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
69
|
+
--json Format output as json.
|
|
70
|
+
|
|
71
|
+
DESCRIPTION
|
|
72
|
+
Get conversion analytics data
|
|
73
|
+
|
|
74
|
+
EXAMPLES
|
|
75
|
+
$ twentythree analytics conversions --date-expression thisweek
|
|
76
|
+
|
|
77
|
+
$ twentythree analytics conversions --date-start 2024-01-01 --date-end 2024-01-31
|
|
78
|
+
|
|
79
|
+
$ twentythree analytics conversions --json
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
_See code: [src/commands/analytics/conversions/index.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/conversions/index.ts)_
|
|
83
|
+
|
|
84
|
+
## `twentythree analytics conversions timeseries`
|
|
85
|
+
|
|
86
|
+
Get conversion analytics time series data
|
|
87
|
+
|
|
88
|
+
```
|
|
89
|
+
USAGE
|
|
90
|
+
$ twentythree analytics conversions timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
91
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
92
|
+
|
|
93
|
+
FLAGS
|
|
94
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
95
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
96
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
97
|
+
--groupby=<value> Group results by dimension
|
|
98
|
+
--order=<value> Sort direction (asc/desc)
|
|
99
|
+
--orderby=<value> Order results by field
|
|
100
|
+
--selection=<value> Scope to specific objects/types
|
|
101
|
+
|
|
102
|
+
GLOBAL FLAGS
|
|
103
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
104
|
+
--json Format output as json.
|
|
105
|
+
|
|
106
|
+
DESCRIPTION
|
|
107
|
+
Get conversion analytics time series data
|
|
108
|
+
|
|
109
|
+
EXAMPLES
|
|
110
|
+
$ twentythree analytics conversions timeseries --date-expression thisweek
|
|
111
|
+
|
|
112
|
+
$ twentythree analytics conversions timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
113
|
+
|
|
114
|
+
$ twentythree analytics conversions timeseries --json
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
_See code: [src/commands/analytics/conversions/timeseries.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/conversions/timeseries.ts)_
|
|
118
|
+
|
|
119
|
+
## `twentythree analytics conversions totals`
|
|
120
|
+
|
|
121
|
+
Get conversion analytics totals
|
|
122
|
+
|
|
123
|
+
```
|
|
124
|
+
USAGE
|
|
125
|
+
$ twentythree analytics conversions totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
126
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
127
|
+
|
|
128
|
+
FLAGS
|
|
129
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
130
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
131
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
132
|
+
--groupby=<value> Group results by dimension
|
|
133
|
+
--order=<value> Sort direction (asc/desc)
|
|
134
|
+
--orderby=<value> Order results by field
|
|
135
|
+
--selection=<value> Scope to specific objects/types
|
|
136
|
+
|
|
137
|
+
GLOBAL FLAGS
|
|
138
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
139
|
+
--json Format output as json.
|
|
140
|
+
|
|
141
|
+
DESCRIPTION
|
|
142
|
+
Get conversion analytics totals
|
|
143
|
+
|
|
144
|
+
EXAMPLES
|
|
145
|
+
$ twentythree analytics conversions totals --date-expression thisweek
|
|
146
|
+
|
|
147
|
+
$ twentythree analytics conversions totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
148
|
+
|
|
149
|
+
$ twentythree analytics conversions totals --json
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
_See code: [src/commands/analytics/conversions/totals.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/conversions/totals.ts)_
|
|
153
|
+
|
|
154
|
+
## `twentythree analytics live`
|
|
155
|
+
|
|
156
|
+
Get live/webinar analytics data
|
|
157
|
+
|
|
158
|
+
```
|
|
159
|
+
USAGE
|
|
160
|
+
$ twentythree analytics live [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
161
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
162
|
+
<value>]
|
|
163
|
+
|
|
164
|
+
FLAGS
|
|
165
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
166
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
167
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
168
|
+
--groupby=<value> Group results by dimension
|
|
169
|
+
--order=<value> Sort direction (asc/desc)
|
|
170
|
+
--orderby=<value> Order results by field
|
|
171
|
+
--page=<value> Page number
|
|
172
|
+
--selection=<value> Scope to specific objects/types
|
|
173
|
+
--size=<value> Page size
|
|
174
|
+
|
|
175
|
+
GLOBAL FLAGS
|
|
176
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
177
|
+
--json Format output as json.
|
|
178
|
+
|
|
179
|
+
DESCRIPTION
|
|
180
|
+
Get live/webinar analytics data
|
|
181
|
+
|
|
182
|
+
EXAMPLES
|
|
183
|
+
$ twentythree analytics live --date-expression thisweek
|
|
184
|
+
|
|
185
|
+
$ twentythree analytics live --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
186
|
+
|
|
187
|
+
$ twentythree analytics live --json
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
_See code: [src/commands/analytics/live/index.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/live/index.ts)_
|
|
191
|
+
|
|
192
|
+
## `twentythree analytics live event`
|
|
193
|
+
|
|
194
|
+
Get live/webinar event analytics
|
|
195
|
+
|
|
196
|
+
```
|
|
197
|
+
USAGE
|
|
198
|
+
$ twentythree analytics live event [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
199
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
200
|
+
<value>]
|
|
201
|
+
|
|
202
|
+
FLAGS
|
|
203
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
204
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
205
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
206
|
+
--groupby=<value> Group results by dimension
|
|
207
|
+
--order=<value> Sort direction (asc/desc)
|
|
208
|
+
--orderby=<value> Order results by field
|
|
209
|
+
--page=<value> Page number
|
|
210
|
+
--selection=<value> Scope to specific objects/types
|
|
211
|
+
--size=<value> Page size
|
|
212
|
+
|
|
213
|
+
GLOBAL FLAGS
|
|
214
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
215
|
+
--json Format output as json.
|
|
216
|
+
|
|
217
|
+
DESCRIPTION
|
|
218
|
+
Get live/webinar event analytics
|
|
219
|
+
|
|
220
|
+
EXAMPLES
|
|
221
|
+
$ twentythree analytics live event --date-expression thismonth
|
|
222
|
+
|
|
223
|
+
$ twentythree analytics live event --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
224
|
+
|
|
225
|
+
$ twentythree analytics live event --json
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
_See code: [src/commands/analytics/live/event.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/live/event.ts)_
|
|
229
|
+
|
|
230
|
+
## `twentythree analytics live event-timeseries`
|
|
231
|
+
|
|
232
|
+
Get live/webinar event time series analytics
|
|
233
|
+
|
|
234
|
+
```
|
|
235
|
+
USAGE
|
|
236
|
+
$ twentythree analytics live event-timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
237
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
238
|
+
|
|
239
|
+
FLAGS
|
|
240
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
241
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
242
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
243
|
+
--groupby=<value> Group results by dimension
|
|
244
|
+
--order=<value> Sort direction (asc/desc)
|
|
245
|
+
--orderby=<value> Order results by field
|
|
246
|
+
--selection=<value> Scope to specific objects/types
|
|
247
|
+
|
|
248
|
+
GLOBAL FLAGS
|
|
249
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
250
|
+
--json Format output as json.
|
|
251
|
+
|
|
252
|
+
DESCRIPTION
|
|
253
|
+
Get live/webinar event time series analytics
|
|
254
|
+
|
|
255
|
+
EXAMPLES
|
|
256
|
+
$ twentythree analytics live event-timeseries --date-expression thisweek
|
|
257
|
+
|
|
258
|
+
$ twentythree analytics live event-timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
259
|
+
|
|
260
|
+
$ twentythree analytics live event-timeseries --json
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
_See code: [src/commands/analytics/live/event-timeseries.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/live/event-timeseries.ts)_
|
|
264
|
+
|
|
265
|
+
## `twentythree analytics live event-totals`
|
|
266
|
+
|
|
267
|
+
Get live/webinar event totals analytics
|
|
268
|
+
|
|
269
|
+
```
|
|
270
|
+
USAGE
|
|
271
|
+
$ twentythree analytics live event-totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
272
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
273
|
+
|
|
274
|
+
FLAGS
|
|
275
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
276
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
277
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
278
|
+
--groupby=<value> Group results by dimension
|
|
279
|
+
--order=<value> Sort direction (asc/desc)
|
|
280
|
+
--orderby=<value> Order results by field
|
|
281
|
+
--selection=<value> Scope to specific objects/types
|
|
282
|
+
|
|
283
|
+
GLOBAL FLAGS
|
|
284
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
285
|
+
--json Format output as json.
|
|
286
|
+
|
|
287
|
+
DESCRIPTION
|
|
288
|
+
Get live/webinar event totals analytics
|
|
289
|
+
|
|
290
|
+
EXAMPLES
|
|
291
|
+
$ twentythree analytics live event-totals --date-expression thisweek
|
|
292
|
+
|
|
293
|
+
$ twentythree analytics live event-totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
294
|
+
|
|
295
|
+
$ twentythree analytics live event-totals --json
|
|
296
|
+
```
|
|
297
|
+
|
|
298
|
+
_See code: [src/commands/analytics/live/event-totals.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/live/event-totals.ts)_
|
|
299
|
+
|
|
300
|
+
## `twentythree analytics live timeseries`
|
|
301
|
+
|
|
302
|
+
Get live/webinar analytics time series data
|
|
303
|
+
|
|
304
|
+
```
|
|
305
|
+
USAGE
|
|
306
|
+
$ twentythree analytics live timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
307
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
308
|
+
|
|
309
|
+
FLAGS
|
|
310
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
311
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
312
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
313
|
+
--groupby=<value> Group results by dimension
|
|
314
|
+
--order=<value> Sort direction (asc/desc)
|
|
315
|
+
--orderby=<value> Order results by field
|
|
316
|
+
--selection=<value> Scope to specific objects/types
|
|
317
|
+
|
|
318
|
+
GLOBAL FLAGS
|
|
319
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
320
|
+
--json Format output as json.
|
|
321
|
+
|
|
322
|
+
DESCRIPTION
|
|
323
|
+
Get live/webinar analytics time series data
|
|
324
|
+
|
|
325
|
+
EXAMPLES
|
|
326
|
+
$ twentythree analytics live timeseries --date-expression thisweek
|
|
327
|
+
|
|
328
|
+
$ twentythree analytics live timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
329
|
+
|
|
330
|
+
$ twentythree analytics live timeseries --json
|
|
331
|
+
```
|
|
332
|
+
|
|
333
|
+
_See code: [src/commands/analytics/live/timeseries.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/live/timeseries.ts)_
|
|
334
|
+
|
|
335
|
+
## `twentythree analytics live totals`
|
|
336
|
+
|
|
337
|
+
Get live/webinar analytics totals
|
|
338
|
+
|
|
339
|
+
```
|
|
340
|
+
USAGE
|
|
341
|
+
$ twentythree analytics live totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
342
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
343
|
+
|
|
344
|
+
FLAGS
|
|
345
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
346
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
347
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
348
|
+
--groupby=<value> Group results by dimension
|
|
349
|
+
--order=<value> Sort direction (asc/desc)
|
|
350
|
+
--orderby=<value> Order results by field
|
|
351
|
+
--selection=<value> Scope to specific objects/types
|
|
352
|
+
|
|
353
|
+
GLOBAL FLAGS
|
|
354
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
355
|
+
--json Format output as json.
|
|
356
|
+
|
|
357
|
+
DESCRIPTION
|
|
358
|
+
Get live/webinar analytics totals
|
|
359
|
+
|
|
360
|
+
EXAMPLES
|
|
361
|
+
$ twentythree analytics live totals --date-expression thisweek
|
|
362
|
+
|
|
363
|
+
$ twentythree analytics live totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
364
|
+
|
|
365
|
+
$ twentythree analytics live totals --json
|
|
366
|
+
```
|
|
367
|
+
|
|
368
|
+
_See code: [src/commands/analytics/live/totals.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/live/totals.ts)_
|
|
369
|
+
|
|
370
|
+
## `twentythree analytics live weekday`
|
|
371
|
+
|
|
372
|
+
Get live/webinar analytics by day of week
|
|
373
|
+
|
|
374
|
+
```
|
|
375
|
+
USAGE
|
|
376
|
+
$ twentythree analytics live weekday [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
377
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
378
|
+
<value>]
|
|
379
|
+
|
|
380
|
+
FLAGS
|
|
381
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
382
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
383
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
384
|
+
--groupby=<value> Group results by dimension
|
|
385
|
+
--order=<value> Sort direction (asc/desc)
|
|
386
|
+
--orderby=<value> Order results by field
|
|
387
|
+
--page=<value> Page number
|
|
388
|
+
--selection=<value> Scope to specific objects/types
|
|
389
|
+
--size=<value> Page size
|
|
390
|
+
|
|
391
|
+
GLOBAL FLAGS
|
|
392
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
393
|
+
--json Format output as json.
|
|
394
|
+
|
|
395
|
+
DESCRIPTION
|
|
396
|
+
Get live/webinar analytics by day of week
|
|
397
|
+
|
|
398
|
+
EXAMPLES
|
|
399
|
+
$ twentythree analytics live weekday --date-expression thismonth
|
|
400
|
+
|
|
401
|
+
$ twentythree analytics live weekday --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
402
|
+
|
|
403
|
+
$ twentythree analytics live weekday --json
|
|
404
|
+
```
|
|
405
|
+
|
|
406
|
+
_See code: [src/commands/analytics/live/weekday.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/live/weekday.ts)_
|
|
407
|
+
|
|
408
|
+
## `twentythree analytics live weekday timeseries`
|
|
409
|
+
|
|
410
|
+
Get live/webinar analytics by weekday - time series
|
|
411
|
+
|
|
412
|
+
```
|
|
413
|
+
USAGE
|
|
414
|
+
$ twentythree analytics live weekday timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
415
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
416
|
+
|
|
417
|
+
FLAGS
|
|
418
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
419
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
420
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
421
|
+
--groupby=<value> Group results by dimension
|
|
422
|
+
--order=<value> Sort direction (asc/desc)
|
|
423
|
+
--orderby=<value> Order results by field
|
|
424
|
+
--selection=<value> Scope to specific objects/types
|
|
425
|
+
|
|
426
|
+
GLOBAL FLAGS
|
|
427
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
428
|
+
--json Format output as json.
|
|
429
|
+
|
|
430
|
+
DESCRIPTION
|
|
431
|
+
Get live/webinar analytics by weekday - time series
|
|
432
|
+
|
|
433
|
+
EXAMPLES
|
|
434
|
+
$ twentythree analytics live weekday timeseries --date-expression thisweek
|
|
435
|
+
|
|
436
|
+
$ twentythree analytics live weekday timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
437
|
+
|
|
438
|
+
$ twentythree analytics live weekday timeseries --json
|
|
439
|
+
```
|
|
440
|
+
|
|
441
|
+
_See code: [src/commands/analytics/live/weekday/timeseries.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/live/weekday/timeseries.ts)_
|
|
442
|
+
|
|
443
|
+
## `twentythree analytics live weekday totals`
|
|
444
|
+
|
|
445
|
+
Get aggregated live/webinar analytics by weekday - totals
|
|
446
|
+
|
|
447
|
+
```
|
|
448
|
+
USAGE
|
|
449
|
+
$ twentythree analytics live weekday totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
450
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
451
|
+
|
|
452
|
+
FLAGS
|
|
453
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
454
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
455
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
456
|
+
--groupby=<value> Group results by dimension
|
|
457
|
+
--order=<value> Sort direction (asc/desc)
|
|
458
|
+
--orderby=<value> Order results by field
|
|
459
|
+
--selection=<value> Scope to specific objects/types
|
|
460
|
+
|
|
461
|
+
GLOBAL FLAGS
|
|
462
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
463
|
+
--json Format output as json.
|
|
464
|
+
|
|
465
|
+
DESCRIPTION
|
|
466
|
+
Get aggregated live/webinar analytics by weekday - totals
|
|
467
|
+
|
|
468
|
+
EXAMPLES
|
|
469
|
+
$ twentythree analytics live weekday totals --date-expression thismonth
|
|
470
|
+
|
|
471
|
+
$ twentythree analytics live weekday totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
472
|
+
|
|
473
|
+
$ twentythree analytics live weekday totals --json
|
|
474
|
+
```
|
|
475
|
+
|
|
476
|
+
_See code: [src/commands/analytics/live/weekday/totals.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/live/weekday/totals.ts)_
|
|
477
|
+
|
|
478
|
+
## `twentythree analytics usage devices`
|
|
479
|
+
|
|
480
|
+
Get usage analytics by device type
|
|
481
|
+
|
|
482
|
+
```
|
|
483
|
+
USAGE
|
|
484
|
+
$ twentythree analytics usage devices [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
485
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
486
|
+
<value>]
|
|
487
|
+
|
|
488
|
+
FLAGS
|
|
489
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
490
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
491
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
492
|
+
--groupby=<value> Group results by dimension
|
|
493
|
+
--order=<value> Sort direction (asc/desc)
|
|
494
|
+
--orderby=<value> Order results by field
|
|
495
|
+
--page=<value> Page number
|
|
496
|
+
--selection=<value> Scope to specific objects/types
|
|
497
|
+
--size=<value> Page size
|
|
498
|
+
|
|
499
|
+
GLOBAL FLAGS
|
|
500
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
501
|
+
--json Format output as json.
|
|
502
|
+
|
|
503
|
+
DESCRIPTION
|
|
504
|
+
Get usage analytics by device type
|
|
505
|
+
|
|
506
|
+
EXAMPLES
|
|
507
|
+
$ twentythree analytics usage devices --date-expression thismonth
|
|
508
|
+
|
|
509
|
+
$ twentythree analytics usage devices --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
510
|
+
|
|
511
|
+
$ twentythree analytics usage devices --json
|
|
512
|
+
```
|
|
513
|
+
|
|
514
|
+
_See code: [src/commands/analytics/usage/devices.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/devices.ts)_
|
|
515
|
+
|
|
516
|
+
## `twentythree analytics usage devices timeseries`
|
|
517
|
+
|
|
518
|
+
Get usage analytics by device type - time series
|
|
519
|
+
|
|
520
|
+
```
|
|
521
|
+
USAGE
|
|
522
|
+
$ twentythree analytics usage devices timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
523
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
524
|
+
|
|
525
|
+
FLAGS
|
|
526
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
527
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
528
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
529
|
+
--groupby=<value> Group results by dimension
|
|
530
|
+
--order=<value> Sort direction (asc/desc)
|
|
531
|
+
--orderby=<value> Order results by field
|
|
532
|
+
--selection=<value> Scope to specific objects/types
|
|
533
|
+
|
|
534
|
+
GLOBAL FLAGS
|
|
535
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
536
|
+
--json Format output as json.
|
|
537
|
+
|
|
538
|
+
DESCRIPTION
|
|
539
|
+
Get usage analytics by device type - time series
|
|
540
|
+
|
|
541
|
+
EXAMPLES
|
|
542
|
+
$ twentythree analytics usage devices timeseries --date-expression thisweek
|
|
543
|
+
|
|
544
|
+
$ twentythree analytics usage devices timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
545
|
+
|
|
546
|
+
$ twentythree analytics usage devices timeseries --json
|
|
547
|
+
```
|
|
548
|
+
|
|
549
|
+
_See code: [src/commands/analytics/usage/devices/timeseries.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/devices/timeseries.ts)_
|
|
550
|
+
|
|
551
|
+
## `twentythree analytics usage devices totals`
|
|
552
|
+
|
|
553
|
+
Get aggregated usage analytics by device type - totals
|
|
554
|
+
|
|
555
|
+
```
|
|
556
|
+
USAGE
|
|
557
|
+
$ twentythree analytics usage devices totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
558
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
559
|
+
|
|
560
|
+
FLAGS
|
|
561
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
562
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
563
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
564
|
+
--groupby=<value> Group results by dimension
|
|
565
|
+
--order=<value> Sort direction (asc/desc)
|
|
566
|
+
--orderby=<value> Order results by field
|
|
567
|
+
--selection=<value> Scope to specific objects/types
|
|
568
|
+
|
|
569
|
+
GLOBAL FLAGS
|
|
570
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
571
|
+
--json Format output as json.
|
|
572
|
+
|
|
573
|
+
DESCRIPTION
|
|
574
|
+
Get aggregated usage analytics by device type - totals
|
|
575
|
+
|
|
576
|
+
EXAMPLES
|
|
577
|
+
$ twentythree analytics usage devices totals --date-expression thismonth
|
|
578
|
+
|
|
579
|
+
$ twentythree analytics usage devices totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
580
|
+
|
|
581
|
+
$ twentythree analytics usage devices totals --json
|
|
582
|
+
```
|
|
583
|
+
|
|
584
|
+
_See code: [src/commands/analytics/usage/devices/totals.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/devices/totals.ts)_
|
|
585
|
+
|
|
586
|
+
## `twentythree analytics usage domains`
|
|
587
|
+
|
|
588
|
+
Get usage analytics by domain
|
|
589
|
+
|
|
590
|
+
```
|
|
591
|
+
USAGE
|
|
592
|
+
$ twentythree analytics usage domains [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
593
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
594
|
+
<value>]
|
|
595
|
+
|
|
596
|
+
FLAGS
|
|
597
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
598
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
599
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
600
|
+
--groupby=<value> Group results by dimension
|
|
601
|
+
--order=<value> Sort direction (asc/desc)
|
|
602
|
+
--orderby=<value> Order results by field
|
|
603
|
+
--page=<value> Page number
|
|
604
|
+
--selection=<value> Scope to specific objects/types
|
|
605
|
+
--size=<value> Page size
|
|
606
|
+
|
|
607
|
+
GLOBAL FLAGS
|
|
608
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
609
|
+
--json Format output as json.
|
|
610
|
+
|
|
611
|
+
DESCRIPTION
|
|
612
|
+
Get usage analytics by domain
|
|
613
|
+
|
|
614
|
+
EXAMPLES
|
|
615
|
+
$ twentythree analytics usage domains --date-expression thismonth
|
|
616
|
+
|
|
617
|
+
$ twentythree analytics usage domains --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
618
|
+
|
|
619
|
+
$ twentythree analytics usage domains --json
|
|
620
|
+
```
|
|
621
|
+
|
|
622
|
+
_See code: [src/commands/analytics/usage/domains.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/domains.ts)_
|
|
623
|
+
|
|
624
|
+
## `twentythree analytics usage domains totals`
|
|
625
|
+
|
|
626
|
+
Get aggregated usage analytics by embed domain - totals
|
|
627
|
+
|
|
628
|
+
```
|
|
629
|
+
USAGE
|
|
630
|
+
$ twentythree analytics usage domains totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
631
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
632
|
+
|
|
633
|
+
FLAGS
|
|
634
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
635
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
636
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
637
|
+
--groupby=<value> Group results by dimension
|
|
638
|
+
--order=<value> Sort direction (asc/desc)
|
|
639
|
+
--orderby=<value> Order results by field
|
|
640
|
+
--selection=<value> Scope to specific objects/types
|
|
641
|
+
|
|
642
|
+
GLOBAL FLAGS
|
|
643
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
644
|
+
--json Format output as json.
|
|
645
|
+
|
|
646
|
+
DESCRIPTION
|
|
647
|
+
Get aggregated usage analytics by embed domain - totals
|
|
648
|
+
|
|
649
|
+
EXAMPLES
|
|
650
|
+
$ twentythree analytics usage domains totals --date-expression thismonth
|
|
651
|
+
|
|
652
|
+
$ twentythree analytics usage domains totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
653
|
+
|
|
654
|
+
$ twentythree analytics usage domains totals --json
|
|
655
|
+
```
|
|
656
|
+
|
|
657
|
+
_See code: [src/commands/analytics/usage/domains/totals.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/domains/totals.ts)_
|
|
658
|
+
|
|
659
|
+
## `twentythree analytics usage locations`
|
|
660
|
+
|
|
661
|
+
Get usage analytics by location
|
|
662
|
+
|
|
663
|
+
```
|
|
664
|
+
USAGE
|
|
665
|
+
$ twentythree analytics usage locations [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
666
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
667
|
+
<value>]
|
|
668
|
+
|
|
669
|
+
FLAGS
|
|
670
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
671
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
672
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
673
|
+
--groupby=<value> Group results by dimension
|
|
674
|
+
--order=<value> Sort direction (asc/desc)
|
|
675
|
+
--orderby=<value> Order results by field
|
|
676
|
+
--page=<value> Page number
|
|
677
|
+
--selection=<value> Scope to specific objects/types
|
|
678
|
+
--size=<value> Page size
|
|
679
|
+
|
|
680
|
+
GLOBAL FLAGS
|
|
681
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
682
|
+
--json Format output as json.
|
|
683
|
+
|
|
684
|
+
DESCRIPTION
|
|
685
|
+
Get usage analytics by location
|
|
686
|
+
|
|
687
|
+
EXAMPLES
|
|
688
|
+
$ twentythree analytics usage locations --date-expression thismonth
|
|
689
|
+
|
|
690
|
+
$ twentythree analytics usage locations --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
691
|
+
|
|
692
|
+
$ twentythree analytics usage locations --json
|
|
693
|
+
```
|
|
694
|
+
|
|
695
|
+
_See code: [src/commands/analytics/usage/locations.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/locations.ts)_
|
|
696
|
+
|
|
697
|
+
## `twentythree analytics usage locations totals`
|
|
698
|
+
|
|
699
|
+
Get aggregated usage analytics by location - totals
|
|
700
|
+
|
|
701
|
+
```
|
|
702
|
+
USAGE
|
|
703
|
+
$ twentythree analytics usage locations totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
704
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
705
|
+
|
|
706
|
+
FLAGS
|
|
707
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
708
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
709
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
710
|
+
--groupby=<value> Group results by dimension
|
|
711
|
+
--order=<value> Sort direction (asc/desc)
|
|
712
|
+
--orderby=<value> Order results by field
|
|
713
|
+
--selection=<value> Scope to specific objects/types
|
|
714
|
+
|
|
715
|
+
GLOBAL FLAGS
|
|
716
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
717
|
+
--json Format output as json.
|
|
718
|
+
|
|
719
|
+
DESCRIPTION
|
|
720
|
+
Get aggregated usage analytics by location - totals
|
|
721
|
+
|
|
722
|
+
EXAMPLES
|
|
723
|
+
$ twentythree analytics usage locations totals --date-expression thismonth
|
|
724
|
+
|
|
725
|
+
$ twentythree analytics usage locations totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
726
|
+
|
|
727
|
+
$ twentythree analytics usage locations totals --json
|
|
728
|
+
```
|
|
729
|
+
|
|
730
|
+
_See code: [src/commands/analytics/usage/locations/totals.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/locations/totals.ts)_
|
|
731
|
+
|
|
732
|
+
## `twentythree analytics usage sourceids`
|
|
733
|
+
|
|
734
|
+
Get usage analytics by source ID
|
|
735
|
+
|
|
736
|
+
```
|
|
737
|
+
USAGE
|
|
738
|
+
$ twentythree analytics usage sourceids [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
739
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
740
|
+
<value>]
|
|
741
|
+
|
|
742
|
+
FLAGS
|
|
743
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
744
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
745
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
746
|
+
--groupby=<value> Group results by dimension
|
|
747
|
+
--order=<value> Sort direction (asc/desc)
|
|
748
|
+
--orderby=<value> Order results by field
|
|
749
|
+
--page=<value> Page number
|
|
750
|
+
--selection=<value> Scope to specific objects/types
|
|
751
|
+
--size=<value> Page size
|
|
752
|
+
|
|
753
|
+
GLOBAL FLAGS
|
|
754
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
755
|
+
--json Format output as json.
|
|
756
|
+
|
|
757
|
+
DESCRIPTION
|
|
758
|
+
Get usage analytics by source ID
|
|
759
|
+
|
|
760
|
+
EXAMPLES
|
|
761
|
+
$ twentythree analytics usage sourceids --date-expression thismonth
|
|
762
|
+
|
|
763
|
+
$ twentythree analytics usage sourceids --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
764
|
+
|
|
765
|
+
$ twentythree analytics usage sourceids --json
|
|
766
|
+
```
|
|
767
|
+
|
|
768
|
+
_See code: [src/commands/analytics/usage/sourceids.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/sourceids.ts)_
|
|
769
|
+
|
|
770
|
+
## `twentythree analytics usage sourceids totals`
|
|
771
|
+
|
|
772
|
+
Get aggregated usage analytics by source ID - totals
|
|
773
|
+
|
|
774
|
+
```
|
|
775
|
+
USAGE
|
|
776
|
+
$ twentythree analytics usage sourceids totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
777
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
778
|
+
|
|
779
|
+
FLAGS
|
|
780
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
781
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
782
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
783
|
+
--groupby=<value> Group results by dimension
|
|
784
|
+
--order=<value> Sort direction (asc/desc)
|
|
785
|
+
--orderby=<value> Order results by field
|
|
786
|
+
--selection=<value> Scope to specific objects/types
|
|
787
|
+
|
|
788
|
+
GLOBAL FLAGS
|
|
789
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
790
|
+
--json Format output as json.
|
|
791
|
+
|
|
792
|
+
DESCRIPTION
|
|
793
|
+
Get aggregated usage analytics by source ID - totals
|
|
794
|
+
|
|
795
|
+
EXAMPLES
|
|
796
|
+
$ twentythree analytics usage sourceids totals --date-expression thismonth
|
|
797
|
+
|
|
798
|
+
$ twentythree analytics usage sourceids totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
799
|
+
|
|
800
|
+
$ twentythree analytics usage sourceids totals --json
|
|
801
|
+
```
|
|
802
|
+
|
|
803
|
+
_See code: [src/commands/analytics/usage/sourceids/totals.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/sourceids/totals.ts)_
|
|
804
|
+
|
|
805
|
+
## `twentythree analytics usage sources`
|
|
806
|
+
|
|
807
|
+
Get usage analytics by traffic source
|
|
808
|
+
|
|
809
|
+
```
|
|
810
|
+
USAGE
|
|
811
|
+
$ twentythree analytics usage sources [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
812
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
813
|
+
<value>]
|
|
814
|
+
|
|
815
|
+
FLAGS
|
|
816
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
817
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
818
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
819
|
+
--groupby=<value> Group results by dimension
|
|
820
|
+
--order=<value> Sort direction (asc/desc)
|
|
821
|
+
--orderby=<value> Order results by field
|
|
822
|
+
--page=<value> Page number
|
|
823
|
+
--selection=<value> Scope to specific objects/types
|
|
824
|
+
--size=<value> Page size
|
|
825
|
+
|
|
826
|
+
GLOBAL FLAGS
|
|
827
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
828
|
+
--json Format output as json.
|
|
829
|
+
|
|
830
|
+
DESCRIPTION
|
|
831
|
+
Get usage analytics by traffic source
|
|
832
|
+
|
|
833
|
+
EXAMPLES
|
|
834
|
+
$ twentythree analytics usage sources --date-expression thismonth
|
|
835
|
+
|
|
836
|
+
$ twentythree analytics usage sources --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
837
|
+
|
|
838
|
+
$ twentythree analytics usage sources --json
|
|
839
|
+
```
|
|
840
|
+
|
|
841
|
+
_See code: [src/commands/analytics/usage/sources.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/sources.ts)_
|
|
842
|
+
|
|
843
|
+
## `twentythree analytics usage sources totals`
|
|
844
|
+
|
|
845
|
+
Get aggregated usage analytics by source - totals
|
|
846
|
+
|
|
847
|
+
```
|
|
848
|
+
USAGE
|
|
849
|
+
$ twentythree analytics usage sources totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
850
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
851
|
+
|
|
852
|
+
FLAGS
|
|
853
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
854
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
855
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
856
|
+
--groupby=<value> Group results by dimension
|
|
857
|
+
--order=<value> Sort direction (asc/desc)
|
|
858
|
+
--orderby=<value> Order results by field
|
|
859
|
+
--selection=<value> Scope to specific objects/types
|
|
860
|
+
|
|
861
|
+
GLOBAL FLAGS
|
|
862
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
863
|
+
--json Format output as json.
|
|
864
|
+
|
|
865
|
+
DESCRIPTION
|
|
866
|
+
Get aggregated usage analytics by source - totals
|
|
867
|
+
|
|
868
|
+
EXAMPLES
|
|
869
|
+
$ twentythree analytics usage sources totals --date-expression thismonth
|
|
870
|
+
|
|
871
|
+
$ twentythree analytics usage sources totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
872
|
+
|
|
873
|
+
$ twentythree analytics usage sources totals --json
|
|
874
|
+
```
|
|
875
|
+
|
|
876
|
+
_See code: [src/commands/analytics/usage/sources/totals.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/sources/totals.ts)_
|
|
877
|
+
|
|
878
|
+
## `twentythree analytics usage spots`
|
|
879
|
+
|
|
880
|
+
Get usage analytics by spot
|
|
881
|
+
|
|
882
|
+
```
|
|
883
|
+
USAGE
|
|
884
|
+
$ twentythree analytics usage spots [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
885
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
886
|
+
<value>]
|
|
887
|
+
|
|
888
|
+
FLAGS
|
|
889
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
890
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
891
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
892
|
+
--groupby=<value> Group results by dimension
|
|
893
|
+
--order=<value> Sort direction (asc/desc)
|
|
894
|
+
--orderby=<value> Order results by field
|
|
895
|
+
--page=<value> Page number
|
|
896
|
+
--selection=<value> Scope to specific objects/types
|
|
897
|
+
--size=<value> Page size
|
|
898
|
+
|
|
899
|
+
GLOBAL FLAGS
|
|
900
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
901
|
+
--json Format output as json.
|
|
902
|
+
|
|
903
|
+
DESCRIPTION
|
|
904
|
+
Get usage analytics by spot
|
|
905
|
+
|
|
906
|
+
EXAMPLES
|
|
907
|
+
$ twentythree analytics usage spots --date-expression thismonth
|
|
908
|
+
|
|
909
|
+
$ twentythree analytics usage spots --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
910
|
+
|
|
911
|
+
$ twentythree analytics usage spots --json
|
|
912
|
+
```
|
|
913
|
+
|
|
914
|
+
_See code: [src/commands/analytics/usage/spots.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/spots.ts)_
|
|
915
|
+
|
|
916
|
+
## `twentythree analytics usage spots timeseries`
|
|
917
|
+
|
|
918
|
+
Get spot usage analytics - time series
|
|
919
|
+
|
|
920
|
+
```
|
|
921
|
+
USAGE
|
|
922
|
+
$ twentythree analytics usage spots timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
923
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
924
|
+
|
|
925
|
+
FLAGS
|
|
926
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
927
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
928
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
929
|
+
--groupby=<value> Group results by dimension
|
|
930
|
+
--order=<value> Sort direction (asc/desc)
|
|
931
|
+
--orderby=<value> Order results by field
|
|
932
|
+
--selection=<value> Scope to specific objects/types
|
|
933
|
+
|
|
934
|
+
GLOBAL FLAGS
|
|
935
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
936
|
+
--json Format output as json.
|
|
937
|
+
|
|
938
|
+
DESCRIPTION
|
|
939
|
+
Get spot usage analytics - time series
|
|
940
|
+
|
|
941
|
+
EXAMPLES
|
|
942
|
+
$ twentythree analytics usage spots timeseries --date-expression thisweek
|
|
943
|
+
|
|
944
|
+
$ twentythree analytics usage spots timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
945
|
+
|
|
946
|
+
$ twentythree analytics usage spots timeseries --json
|
|
947
|
+
```
|
|
948
|
+
|
|
949
|
+
_See code: [src/commands/analytics/usage/spots/timeseries.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/spots/timeseries.ts)_
|
|
950
|
+
|
|
951
|
+
## `twentythree analytics usage spots totals`
|
|
952
|
+
|
|
953
|
+
Get aggregated spot usage analytics - totals
|
|
954
|
+
|
|
955
|
+
```
|
|
956
|
+
USAGE
|
|
957
|
+
$ twentythree analytics usage spots totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
958
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
959
|
+
|
|
960
|
+
FLAGS
|
|
961
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
962
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
963
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
964
|
+
--groupby=<value> Group results by dimension
|
|
965
|
+
--order=<value> Sort direction (asc/desc)
|
|
966
|
+
--orderby=<value> Order results by field
|
|
967
|
+
--selection=<value> Scope to specific objects/types
|
|
968
|
+
|
|
969
|
+
GLOBAL FLAGS
|
|
970
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
971
|
+
--json Format output as json.
|
|
972
|
+
|
|
973
|
+
DESCRIPTION
|
|
974
|
+
Get aggregated spot usage analytics - totals
|
|
975
|
+
|
|
976
|
+
EXAMPLES
|
|
977
|
+
$ twentythree analytics usage spots totals --date-expression thismonth
|
|
978
|
+
|
|
979
|
+
$ twentythree analytics usage spots totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
980
|
+
|
|
981
|
+
$ twentythree analytics usage spots totals --json
|
|
982
|
+
```
|
|
983
|
+
|
|
984
|
+
_See code: [src/commands/analytics/usage/spots/totals.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/spots/totals.ts)_
|
|
985
|
+
|
|
986
|
+
## `twentythree analytics usage storage`
|
|
987
|
+
|
|
988
|
+
Get storage usage analytics
|
|
989
|
+
|
|
990
|
+
```
|
|
991
|
+
USAGE
|
|
992
|
+
$ twentythree analytics usage storage [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
993
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
994
|
+
|
|
995
|
+
FLAGS
|
|
996
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
997
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
998
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
999
|
+
--groupby=<value> Group results by dimension
|
|
1000
|
+
--order=<value> Sort direction (asc/desc)
|
|
1001
|
+
--orderby=<value> Order results by field
|
|
1002
|
+
--selection=<value> Scope to specific objects/types
|
|
1003
|
+
|
|
1004
|
+
GLOBAL FLAGS
|
|
1005
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
1006
|
+
--json Format output as json.
|
|
1007
|
+
|
|
1008
|
+
DESCRIPTION
|
|
1009
|
+
Get storage usage analytics
|
|
1010
|
+
|
|
1011
|
+
EXAMPLES
|
|
1012
|
+
$ twentythree analytics usage storage
|
|
1013
|
+
|
|
1014
|
+
$ twentythree analytics usage storage --json
|
|
1015
|
+
|
|
1016
|
+
$ twentythree analytics usage storage --selection videos
|
|
1017
|
+
```
|
|
1018
|
+
|
|
1019
|
+
_See code: [src/commands/analytics/usage/storage.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/storage.ts)_
|
|
1020
|
+
|
|
1021
|
+
## `twentythree analytics usage traffic`
|
|
1022
|
+
|
|
1023
|
+
Get usage analytics by traffic type
|
|
1024
|
+
|
|
1025
|
+
```
|
|
1026
|
+
USAGE
|
|
1027
|
+
$ twentythree analytics usage traffic [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
1028
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
1029
|
+
<value>]
|
|
1030
|
+
|
|
1031
|
+
FLAGS
|
|
1032
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
1033
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
1034
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
1035
|
+
--groupby=<value> Group results by dimension
|
|
1036
|
+
--order=<value> Sort direction (asc/desc)
|
|
1037
|
+
--orderby=<value> Order results by field
|
|
1038
|
+
--page=<value> Page number
|
|
1039
|
+
--selection=<value> Scope to specific objects/types
|
|
1040
|
+
--size=<value> Page size
|
|
1041
|
+
|
|
1042
|
+
GLOBAL FLAGS
|
|
1043
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
1044
|
+
--json Format output as json.
|
|
1045
|
+
|
|
1046
|
+
DESCRIPTION
|
|
1047
|
+
Get usage analytics by traffic type
|
|
1048
|
+
|
|
1049
|
+
EXAMPLES
|
|
1050
|
+
$ twentythree analytics usage traffic --date-expression thismonth
|
|
1051
|
+
|
|
1052
|
+
$ twentythree analytics usage traffic --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
1053
|
+
|
|
1054
|
+
$ twentythree analytics usage traffic --json
|
|
1055
|
+
```
|
|
1056
|
+
|
|
1057
|
+
_See code: [src/commands/analytics/usage/traffic.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/traffic.ts)_
|
|
1058
|
+
|
|
1059
|
+
## `twentythree analytics usage traffic timeseries`
|
|
1060
|
+
|
|
1061
|
+
Get traffic usage analytics - time series
|
|
1062
|
+
|
|
1063
|
+
```
|
|
1064
|
+
USAGE
|
|
1065
|
+
$ twentythree analytics usage traffic timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
1066
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
1067
|
+
|
|
1068
|
+
FLAGS
|
|
1069
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
1070
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
1071
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
1072
|
+
--groupby=<value> Group results by dimension
|
|
1073
|
+
--order=<value> Sort direction (asc/desc)
|
|
1074
|
+
--orderby=<value> Order results by field
|
|
1075
|
+
--selection=<value> Scope to specific objects/types
|
|
1076
|
+
|
|
1077
|
+
GLOBAL FLAGS
|
|
1078
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
1079
|
+
--json Format output as json.
|
|
1080
|
+
|
|
1081
|
+
DESCRIPTION
|
|
1082
|
+
Get traffic usage analytics - time series
|
|
1083
|
+
|
|
1084
|
+
EXAMPLES
|
|
1085
|
+
$ twentythree analytics usage traffic timeseries --date-expression thisweek
|
|
1086
|
+
|
|
1087
|
+
$ twentythree analytics usage traffic timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
1088
|
+
|
|
1089
|
+
$ twentythree analytics usage traffic timeseries --json
|
|
1090
|
+
```
|
|
1091
|
+
|
|
1092
|
+
_See code: [src/commands/analytics/usage/traffic/timeseries.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/traffic/timeseries.ts)_
|
|
1093
|
+
|
|
1094
|
+
## `twentythree analytics usage traffic totals`
|
|
1095
|
+
|
|
1096
|
+
Get aggregated traffic usage analytics - totals
|
|
1097
|
+
|
|
1098
|
+
```
|
|
1099
|
+
USAGE
|
|
1100
|
+
$ twentythree analytics usage traffic totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
1101
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
1102
|
+
|
|
1103
|
+
FLAGS
|
|
1104
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
1105
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
1106
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
1107
|
+
--groupby=<value> Group results by dimension
|
|
1108
|
+
--order=<value> Sort direction (asc/desc)
|
|
1109
|
+
--orderby=<value> Order results by field
|
|
1110
|
+
--selection=<value> Scope to specific objects/types
|
|
1111
|
+
|
|
1112
|
+
GLOBAL FLAGS
|
|
1113
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
1114
|
+
--json Format output as json.
|
|
1115
|
+
|
|
1116
|
+
DESCRIPTION
|
|
1117
|
+
Get aggregated traffic usage analytics - totals
|
|
1118
|
+
|
|
1119
|
+
EXAMPLES
|
|
1120
|
+
$ twentythree analytics usage traffic totals --date-expression thismonth
|
|
1121
|
+
|
|
1122
|
+
$ twentythree analytics usage traffic totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
1123
|
+
|
|
1124
|
+
$ twentythree analytics usage traffic totals --json
|
|
1125
|
+
```
|
|
1126
|
+
|
|
1127
|
+
_See code: [src/commands/analytics/usage/traffic/totals.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/traffic/totals.ts)_
|
|
1128
|
+
|
|
1129
|
+
## `twentythree analytics video`
|
|
1130
|
+
|
|
1131
|
+
Get video analytics data
|
|
1132
|
+
|
|
1133
|
+
```
|
|
1134
|
+
USAGE
|
|
1135
|
+
$ twentythree analytics video [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
1136
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
1137
|
+
<value>]
|
|
1138
|
+
|
|
1139
|
+
FLAGS
|
|
1140
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
1141
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
1142
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
1143
|
+
--groupby=<value> Group results by dimension
|
|
1144
|
+
--order=<value> Sort direction (asc/desc)
|
|
1145
|
+
--orderby=<value> Order results by field
|
|
1146
|
+
--page=<value> Page number
|
|
1147
|
+
--selection=<value> Scope to specific objects/types
|
|
1148
|
+
--size=<value> Page size
|
|
1149
|
+
|
|
1150
|
+
GLOBAL FLAGS
|
|
1151
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
1152
|
+
--json Format output as json.
|
|
1153
|
+
|
|
1154
|
+
DESCRIPTION
|
|
1155
|
+
Get video analytics data
|
|
1156
|
+
|
|
1157
|
+
EXAMPLES
|
|
1158
|
+
$ twentythree analytics video --date-expression thisweek
|
|
1159
|
+
|
|
1160
|
+
$ twentythree analytics video --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
1161
|
+
|
|
1162
|
+
$ twentythree analytics video --json
|
|
1163
|
+
```
|
|
1164
|
+
|
|
1165
|
+
_See code: [src/commands/analytics/video/index.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/video/index.ts)_
|
|
1166
|
+
|
|
1167
|
+
## `twentythree analytics video performance`
|
|
1168
|
+
|
|
1169
|
+
Get video performance analytics
|
|
1170
|
+
|
|
1171
|
+
```
|
|
1172
|
+
USAGE
|
|
1173
|
+
$ twentythree analytics video performance [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
1174
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
1175
|
+
<value>]
|
|
1176
|
+
|
|
1177
|
+
FLAGS
|
|
1178
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
1179
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
1180
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
1181
|
+
--groupby=<value> Group results by dimension
|
|
1182
|
+
--order=<value> Sort direction (asc/desc)
|
|
1183
|
+
--orderby=<value> Order results by field
|
|
1184
|
+
--page=<value> Page number
|
|
1185
|
+
--selection=<value> Scope to specific objects/types
|
|
1186
|
+
--size=<value> Page size
|
|
1187
|
+
|
|
1188
|
+
GLOBAL FLAGS
|
|
1189
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
1190
|
+
--json Format output as json.
|
|
1191
|
+
|
|
1192
|
+
DESCRIPTION
|
|
1193
|
+
Get video performance analytics
|
|
1194
|
+
|
|
1195
|
+
EXAMPLES
|
|
1196
|
+
$ twentythree analytics video performance --date-expression thismonth
|
|
1197
|
+
|
|
1198
|
+
$ twentythree analytics video performance --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
1199
|
+
|
|
1200
|
+
$ twentythree analytics video performance --json
|
|
1201
|
+
```
|
|
1202
|
+
|
|
1203
|
+
_See code: [src/commands/analytics/video/performance.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/video/performance.ts)_
|
|
1204
|
+
|
|
1205
|
+
## `twentythree analytics video performance timeseries`
|
|
1206
|
+
|
|
1207
|
+
Get video playthrough performance - time series
|
|
1208
|
+
|
|
1209
|
+
```
|
|
1210
|
+
USAGE
|
|
1211
|
+
$ twentythree analytics video performance timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
1212
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
1213
|
+
|
|
1214
|
+
FLAGS
|
|
1215
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
1216
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
1217
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
1218
|
+
--groupby=<value> Group results by dimension
|
|
1219
|
+
--order=<value> Sort direction (asc/desc)
|
|
1220
|
+
--orderby=<value> Order results by field
|
|
1221
|
+
--selection=<value> Scope to specific objects/types
|
|
1222
|
+
|
|
1223
|
+
GLOBAL FLAGS
|
|
1224
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
1225
|
+
--json Format output as json.
|
|
1226
|
+
|
|
1227
|
+
DESCRIPTION
|
|
1228
|
+
Get video playthrough performance - time series
|
|
1229
|
+
|
|
1230
|
+
EXAMPLES
|
|
1231
|
+
$ twentythree analytics video performance timeseries --date-expression thisweek
|
|
1232
|
+
|
|
1233
|
+
$ twentythree analytics video performance timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
1234
|
+
|
|
1235
|
+
$ twentythree analytics video performance timeseries --json
|
|
1236
|
+
```
|
|
1237
|
+
|
|
1238
|
+
_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)_
|
|
1239
|
+
|
|
1240
|
+
## `twentythree analytics video performance totals`
|
|
1241
|
+
|
|
1242
|
+
Get aggregated video playthrough performance - totals
|
|
1243
|
+
|
|
1244
|
+
```
|
|
1245
|
+
USAGE
|
|
1246
|
+
$ twentythree analytics video performance totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
1247
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
1248
|
+
|
|
1249
|
+
FLAGS
|
|
1250
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
1251
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
1252
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
1253
|
+
--groupby=<value> Group results by dimension
|
|
1254
|
+
--order=<value> Sort direction (asc/desc)
|
|
1255
|
+
--orderby=<value> Order results by field
|
|
1256
|
+
--selection=<value> Scope to specific objects/types
|
|
1257
|
+
|
|
1258
|
+
GLOBAL FLAGS
|
|
1259
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
1260
|
+
--json Format output as json.
|
|
1261
|
+
|
|
1262
|
+
DESCRIPTION
|
|
1263
|
+
Get aggregated video playthrough performance - totals
|
|
1264
|
+
|
|
1265
|
+
EXAMPLES
|
|
1266
|
+
$ twentythree analytics video performance totals --date-expression thisweek
|
|
1267
|
+
|
|
1268
|
+
$ twentythree analytics video performance totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
1269
|
+
|
|
1270
|
+
$ twentythree analytics video performance totals --json
|
|
1271
|
+
```
|
|
1272
|
+
|
|
1273
|
+
_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)_
|
|
1274
|
+
|
|
1275
|
+
## `twentythree analytics video published`
|
|
1276
|
+
|
|
1277
|
+
Get analytics for published videos
|
|
1278
|
+
|
|
1279
|
+
```
|
|
1280
|
+
USAGE
|
|
1281
|
+
$ twentythree analytics video published [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
1282
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
1283
|
+
<value>]
|
|
1284
|
+
|
|
1285
|
+
FLAGS
|
|
1286
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
1287
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
1288
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
1289
|
+
--groupby=<value> Group results by dimension
|
|
1290
|
+
--order=<value> Sort direction (asc/desc)
|
|
1291
|
+
--orderby=<value> Order results by field
|
|
1292
|
+
--page=<value> Page number
|
|
1293
|
+
--selection=<value> Scope to specific objects/types
|
|
1294
|
+
--size=<value> Page size
|
|
1295
|
+
|
|
1296
|
+
GLOBAL FLAGS
|
|
1297
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
1298
|
+
--json Format output as json.
|
|
1299
|
+
|
|
1300
|
+
DESCRIPTION
|
|
1301
|
+
Get analytics for published videos
|
|
1302
|
+
|
|
1303
|
+
EXAMPLES
|
|
1304
|
+
$ twentythree analytics video published --date-expression thismonth
|
|
1305
|
+
|
|
1306
|
+
$ twentythree analytics video published --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
1307
|
+
|
|
1308
|
+
$ twentythree analytics video published --json
|
|
1309
|
+
```
|
|
1310
|
+
|
|
1311
|
+
_See code: [src/commands/analytics/video/published.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/video/published.ts)_
|
|
1312
|
+
|
|
1313
|
+
## `twentythree analytics video published timeseries`
|
|
1314
|
+
|
|
1315
|
+
Get video analytics by publish date - time series
|
|
1316
|
+
|
|
1317
|
+
```
|
|
1318
|
+
USAGE
|
|
1319
|
+
$ twentythree analytics video published timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
1320
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
1321
|
+
|
|
1322
|
+
FLAGS
|
|
1323
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
1324
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
1325
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
1326
|
+
--groupby=<value> Group results by dimension
|
|
1327
|
+
--order=<value> Sort direction (asc/desc)
|
|
1328
|
+
--orderby=<value> Order results by field
|
|
1329
|
+
--selection=<value> Scope to specific objects/types
|
|
1330
|
+
|
|
1331
|
+
GLOBAL FLAGS
|
|
1332
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
1333
|
+
--json Format output as json.
|
|
1334
|
+
|
|
1335
|
+
DESCRIPTION
|
|
1336
|
+
Get video analytics by publish date - time series
|
|
1337
|
+
|
|
1338
|
+
EXAMPLES
|
|
1339
|
+
$ twentythree analytics video published timeseries --date-expression thisweek
|
|
1340
|
+
|
|
1341
|
+
$ twentythree analytics video published timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
1342
|
+
|
|
1343
|
+
$ twentythree analytics video published timeseries --json
|
|
1344
|
+
```
|
|
1345
|
+
|
|
1346
|
+
_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)_
|
|
1347
|
+
|
|
1348
|
+
## `twentythree analytics video published totals`
|
|
1349
|
+
|
|
1350
|
+
Get aggregated video analytics by publish date - totals
|
|
1351
|
+
|
|
1352
|
+
```
|
|
1353
|
+
USAGE
|
|
1354
|
+
$ twentythree analytics video published totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
1355
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
1356
|
+
|
|
1357
|
+
FLAGS
|
|
1358
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
1359
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
1360
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
1361
|
+
--groupby=<value> Group results by dimension
|
|
1362
|
+
--order=<value> Sort direction (asc/desc)
|
|
1363
|
+
--orderby=<value> Order results by field
|
|
1364
|
+
--selection=<value> Scope to specific objects/types
|
|
1365
|
+
|
|
1366
|
+
GLOBAL FLAGS
|
|
1367
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
1368
|
+
--json Format output as json.
|
|
1369
|
+
|
|
1370
|
+
DESCRIPTION
|
|
1371
|
+
Get aggregated video analytics by publish date - totals
|
|
1372
|
+
|
|
1373
|
+
EXAMPLES
|
|
1374
|
+
$ twentythree analytics video published totals --date-expression thisweek
|
|
1375
|
+
|
|
1376
|
+
$ twentythree analytics video published totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
1377
|
+
|
|
1378
|
+
$ twentythree analytics video published totals --json
|
|
1379
|
+
```
|
|
1380
|
+
|
|
1381
|
+
_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)_
|
|
1382
|
+
|
|
1383
|
+
## `twentythree analytics video timeseries`
|
|
1384
|
+
|
|
1385
|
+
Get video analytics time series data
|
|
1386
|
+
|
|
1387
|
+
```
|
|
1388
|
+
USAGE
|
|
1389
|
+
$ twentythree analytics video timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
1390
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
1391
|
+
|
|
1392
|
+
FLAGS
|
|
1393
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
1394
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
1395
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
1396
|
+
--groupby=<value> Group results by dimension
|
|
1397
|
+
--order=<value> Sort direction (asc/desc)
|
|
1398
|
+
--orderby=<value> Order results by field
|
|
1399
|
+
--selection=<value> Scope to specific objects/types
|
|
1400
|
+
|
|
1401
|
+
GLOBAL FLAGS
|
|
1402
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
1403
|
+
--json Format output as json.
|
|
1404
|
+
|
|
1405
|
+
DESCRIPTION
|
|
1406
|
+
Get video analytics time series data
|
|
1407
|
+
|
|
1408
|
+
EXAMPLES
|
|
1409
|
+
$ twentythree analytics video timeseries --date-expression thisweek
|
|
1410
|
+
|
|
1411
|
+
$ twentythree analytics video timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
1412
|
+
|
|
1413
|
+
$ twentythree analytics video timeseries --json
|
|
1414
|
+
```
|
|
1415
|
+
|
|
1416
|
+
_See code: [src/commands/analytics/video/timeseries.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/video/timeseries.ts)_
|
|
1417
|
+
|
|
1418
|
+
## `twentythree analytics video totals`
|
|
1419
|
+
|
|
1420
|
+
Get aggregated video analytics totals
|
|
1421
|
+
|
|
1422
|
+
```
|
|
1423
|
+
USAGE
|
|
1424
|
+
$ twentythree analytics video totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
1425
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
1426
|
+
|
|
1427
|
+
FLAGS
|
|
1428
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
1429
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
1430
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
1431
|
+
--groupby=<value> Group results by dimension
|
|
1432
|
+
--order=<value> Sort direction (asc/desc)
|
|
1433
|
+
--orderby=<value> Order results by field
|
|
1434
|
+
--selection=<value> Scope to specific objects/types
|
|
1435
|
+
|
|
1436
|
+
GLOBAL FLAGS
|
|
1437
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
1438
|
+
--json Format output as json.
|
|
1439
|
+
|
|
1440
|
+
DESCRIPTION
|
|
1441
|
+
Get aggregated video analytics totals
|
|
1442
|
+
|
|
1443
|
+
EXAMPLES
|
|
1444
|
+
$ twentythree analytics video totals --date-expression thismonth
|
|
1445
|
+
|
|
1446
|
+
$ twentythree analytics video totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
1447
|
+
|
|
1448
|
+
$ twentythree analytics video totals --json
|
|
1449
|
+
```
|
|
1450
|
+
|
|
1451
|
+
_See code: [src/commands/analytics/video/totals.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/video/totals.ts)_
|
|
1452
|
+
|
|
1453
|
+
## `twentythree analytics video weekday`
|
|
1454
|
+
|
|
1455
|
+
Get video analytics broken down by day of week
|
|
1456
|
+
|
|
1457
|
+
```
|
|
1458
|
+
USAGE
|
|
1459
|
+
$ twentythree analytics video weekday [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
1460
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
1461
|
+
<value>]
|
|
1462
|
+
|
|
1463
|
+
FLAGS
|
|
1464
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
1465
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
1466
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
1467
|
+
--groupby=<value> Group results by dimension
|
|
1468
|
+
--order=<value> Sort direction (asc/desc)
|
|
1469
|
+
--orderby=<value> Order results by field
|
|
1470
|
+
--page=<value> Page number
|
|
1471
|
+
--selection=<value> Scope to specific objects/types
|
|
1472
|
+
--size=<value> Page size
|
|
1473
|
+
|
|
1474
|
+
GLOBAL FLAGS
|
|
1475
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
1476
|
+
--json Format output as json.
|
|
1477
|
+
|
|
1478
|
+
DESCRIPTION
|
|
1479
|
+
Get video analytics broken down by day of week
|
|
1480
|
+
|
|
1481
|
+
EXAMPLES
|
|
1482
|
+
$ twentythree analytics video weekday --date-expression thismonth
|
|
1483
|
+
|
|
1484
|
+
$ twentythree analytics video weekday --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
1485
|
+
|
|
1486
|
+
$ twentythree analytics video weekday --json
|
|
1487
|
+
```
|
|
1488
|
+
|
|
1489
|
+
_See code: [src/commands/analytics/video/weekday.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/video/weekday.ts)_
|
|
1490
|
+
|
|
1491
|
+
## `twentythree analytics video weekday timeseries`
|
|
1492
|
+
|
|
1493
|
+
Get video analytics by weekday - time series
|
|
1494
|
+
|
|
1495
|
+
```
|
|
1496
|
+
USAGE
|
|
1497
|
+
$ twentythree analytics video weekday timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
1498
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
1499
|
+
|
|
1500
|
+
FLAGS
|
|
1501
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
1502
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
1503
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
1504
|
+
--groupby=<value> Group results by dimension
|
|
1505
|
+
--order=<value> Sort direction (asc/desc)
|
|
1506
|
+
--orderby=<value> Order results by field
|
|
1507
|
+
--selection=<value> Scope to specific objects/types
|
|
1508
|
+
|
|
1509
|
+
GLOBAL FLAGS
|
|
1510
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
1511
|
+
--json Format output as json.
|
|
1512
|
+
|
|
1513
|
+
DESCRIPTION
|
|
1514
|
+
Get video analytics by weekday - time series
|
|
1515
|
+
|
|
1516
|
+
EXAMPLES
|
|
1517
|
+
$ twentythree analytics video weekday timeseries --date-expression thisweek
|
|
1518
|
+
|
|
1519
|
+
$ twentythree analytics video weekday timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
1520
|
+
|
|
1521
|
+
$ twentythree analytics video weekday timeseries --json
|
|
1522
|
+
```
|
|
1523
|
+
|
|
1524
|
+
_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)_
|
|
1525
|
+
|
|
1526
|
+
## `twentythree analytics video weekday totals`
|
|
1527
|
+
|
|
1528
|
+
Get aggregated video analytics by weekday - totals
|
|
1529
|
+
|
|
1530
|
+
```
|
|
1531
|
+
USAGE
|
|
1532
|
+
$ twentythree analytics video weekday totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
1533
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
1534
|
+
|
|
1535
|
+
FLAGS
|
|
1536
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
1537
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
1538
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
1539
|
+
--groupby=<value> Group results by dimension
|
|
1540
|
+
--order=<value> Sort direction (asc/desc)
|
|
1541
|
+
--orderby=<value> Order results by field
|
|
1542
|
+
--selection=<value> Scope to specific objects/types
|
|
1543
|
+
|
|
1544
|
+
GLOBAL FLAGS
|
|
1545
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
1546
|
+
--json Format output as json.
|
|
1547
|
+
|
|
1548
|
+
DESCRIPTION
|
|
1549
|
+
Get aggregated video analytics by weekday - totals
|
|
1550
|
+
|
|
1551
|
+
EXAMPLES
|
|
1552
|
+
$ twentythree analytics video weekday totals --date-expression thisweek
|
|
1553
|
+
|
|
1554
|
+
$ twentythree analytics video weekday totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
1555
|
+
|
|
1556
|
+
$ twentythree analytics video weekday totals --json
|
|
1557
|
+
```
|
|
1558
|
+
|
|
1559
|
+
_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)_
|