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,674 @@
|
|
|
1
|
+
`twentythree analytics:usage`
|
|
2
|
+
=============================
|
|
3
|
+
|
|
4
|
+
Get usage analytics by device type
|
|
5
|
+
|
|
6
|
+
* [`twentythree analytics usage devices`](#twentythree-analytics-usage-devices)
|
|
7
|
+
* [`twentythree analytics usage devices timeseries`](#twentythree-analytics-usage-devices-timeseries)
|
|
8
|
+
* [`twentythree analytics usage devices totals`](#twentythree-analytics-usage-devices-totals)
|
|
9
|
+
* [`twentythree analytics usage domains`](#twentythree-analytics-usage-domains)
|
|
10
|
+
* [`twentythree analytics usage domains totals`](#twentythree-analytics-usage-domains-totals)
|
|
11
|
+
* [`twentythree analytics usage locations`](#twentythree-analytics-usage-locations)
|
|
12
|
+
* [`twentythree analytics usage locations totals`](#twentythree-analytics-usage-locations-totals)
|
|
13
|
+
* [`twentythree analytics usage sourceids`](#twentythree-analytics-usage-sourceids)
|
|
14
|
+
* [`twentythree analytics usage sourceids totals`](#twentythree-analytics-usage-sourceids-totals)
|
|
15
|
+
* [`twentythree analytics usage sources`](#twentythree-analytics-usage-sources)
|
|
16
|
+
* [`twentythree analytics usage sources totals`](#twentythree-analytics-usage-sources-totals)
|
|
17
|
+
* [`twentythree analytics usage spots`](#twentythree-analytics-usage-spots)
|
|
18
|
+
* [`twentythree analytics usage spots timeseries`](#twentythree-analytics-usage-spots-timeseries)
|
|
19
|
+
* [`twentythree analytics usage spots totals`](#twentythree-analytics-usage-spots-totals)
|
|
20
|
+
* [`twentythree analytics usage storage`](#twentythree-analytics-usage-storage)
|
|
21
|
+
* [`twentythree analytics usage traffic`](#twentythree-analytics-usage-traffic)
|
|
22
|
+
* [`twentythree analytics usage traffic timeseries`](#twentythree-analytics-usage-traffic-timeseries)
|
|
23
|
+
* [`twentythree analytics usage traffic totals`](#twentythree-analytics-usage-traffic-totals)
|
|
24
|
+
|
|
25
|
+
## `twentythree analytics usage devices`
|
|
26
|
+
|
|
27
|
+
Get usage analytics by device type
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
USAGE
|
|
31
|
+
$ twentythree analytics usage devices [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
32
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
33
|
+
<value>]
|
|
34
|
+
|
|
35
|
+
FLAGS
|
|
36
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
37
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
38
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
39
|
+
--groupby=<value> Group results by dimension
|
|
40
|
+
--order=<value> Sort direction (asc/desc)
|
|
41
|
+
--orderby=<value> Order results by field
|
|
42
|
+
--page=<value> Page number
|
|
43
|
+
--selection=<value> Scope to specific objects/types
|
|
44
|
+
--size=<value> Page size
|
|
45
|
+
|
|
46
|
+
GLOBAL FLAGS
|
|
47
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
48
|
+
--json Format output as json.
|
|
49
|
+
|
|
50
|
+
DESCRIPTION
|
|
51
|
+
Get usage analytics by device type
|
|
52
|
+
|
|
53
|
+
EXAMPLES
|
|
54
|
+
$ twentythree analytics usage devices --date-expression thismonth
|
|
55
|
+
|
|
56
|
+
$ twentythree analytics usage devices --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
57
|
+
|
|
58
|
+
$ twentythree analytics usage devices --json
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
_See code: [src/commands/analytics/usage/devices.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/devices.ts)_
|
|
62
|
+
|
|
63
|
+
## `twentythree analytics usage devices timeseries`
|
|
64
|
+
|
|
65
|
+
Get usage analytics by device type - time series
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
USAGE
|
|
69
|
+
$ twentythree analytics usage devices timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
70
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
71
|
+
|
|
72
|
+
FLAGS
|
|
73
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
74
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
75
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
76
|
+
--groupby=<value> Group results by dimension
|
|
77
|
+
--order=<value> Sort direction (asc/desc)
|
|
78
|
+
--orderby=<value> Order results by field
|
|
79
|
+
--selection=<value> Scope to specific objects/types
|
|
80
|
+
|
|
81
|
+
GLOBAL FLAGS
|
|
82
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
83
|
+
--json Format output as json.
|
|
84
|
+
|
|
85
|
+
DESCRIPTION
|
|
86
|
+
Get usage analytics by device type - time series
|
|
87
|
+
|
|
88
|
+
EXAMPLES
|
|
89
|
+
$ twentythree analytics usage devices timeseries --date-expression thisweek
|
|
90
|
+
|
|
91
|
+
$ twentythree analytics usage devices timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
92
|
+
|
|
93
|
+
$ twentythree analytics usage devices timeseries --json
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
_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)_
|
|
97
|
+
|
|
98
|
+
## `twentythree analytics usage devices totals`
|
|
99
|
+
|
|
100
|
+
Get aggregated usage analytics by device type - totals
|
|
101
|
+
|
|
102
|
+
```
|
|
103
|
+
USAGE
|
|
104
|
+
$ twentythree analytics usage devices totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
105
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
106
|
+
|
|
107
|
+
FLAGS
|
|
108
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
109
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
110
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
111
|
+
--groupby=<value> Group results by dimension
|
|
112
|
+
--order=<value> Sort direction (asc/desc)
|
|
113
|
+
--orderby=<value> Order results by field
|
|
114
|
+
--selection=<value> Scope to specific objects/types
|
|
115
|
+
|
|
116
|
+
GLOBAL FLAGS
|
|
117
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
118
|
+
--json Format output as json.
|
|
119
|
+
|
|
120
|
+
DESCRIPTION
|
|
121
|
+
Get aggregated usage analytics by device type - totals
|
|
122
|
+
|
|
123
|
+
EXAMPLES
|
|
124
|
+
$ twentythree analytics usage devices totals --date-expression thismonth
|
|
125
|
+
|
|
126
|
+
$ twentythree analytics usage devices totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
127
|
+
|
|
128
|
+
$ twentythree analytics usage devices totals --json
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
_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)_
|
|
132
|
+
|
|
133
|
+
## `twentythree analytics usage domains`
|
|
134
|
+
|
|
135
|
+
Get usage analytics by domain
|
|
136
|
+
|
|
137
|
+
```
|
|
138
|
+
USAGE
|
|
139
|
+
$ twentythree analytics usage domains [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
140
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
141
|
+
<value>]
|
|
142
|
+
|
|
143
|
+
FLAGS
|
|
144
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
145
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
146
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
147
|
+
--groupby=<value> Group results by dimension
|
|
148
|
+
--order=<value> Sort direction (asc/desc)
|
|
149
|
+
--orderby=<value> Order results by field
|
|
150
|
+
--page=<value> Page number
|
|
151
|
+
--selection=<value> Scope to specific objects/types
|
|
152
|
+
--size=<value> Page size
|
|
153
|
+
|
|
154
|
+
GLOBAL FLAGS
|
|
155
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
156
|
+
--json Format output as json.
|
|
157
|
+
|
|
158
|
+
DESCRIPTION
|
|
159
|
+
Get usage analytics by domain
|
|
160
|
+
|
|
161
|
+
EXAMPLES
|
|
162
|
+
$ twentythree analytics usage domains --date-expression thismonth
|
|
163
|
+
|
|
164
|
+
$ twentythree analytics usage domains --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
165
|
+
|
|
166
|
+
$ twentythree analytics usage domains --json
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
_See code: [src/commands/analytics/usage/domains.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/domains.ts)_
|
|
170
|
+
|
|
171
|
+
## `twentythree analytics usage domains totals`
|
|
172
|
+
|
|
173
|
+
Get aggregated usage analytics by embed domain - totals
|
|
174
|
+
|
|
175
|
+
```
|
|
176
|
+
USAGE
|
|
177
|
+
$ twentythree analytics usage domains totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
178
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
179
|
+
|
|
180
|
+
FLAGS
|
|
181
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
182
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
183
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
184
|
+
--groupby=<value> Group results by dimension
|
|
185
|
+
--order=<value> Sort direction (asc/desc)
|
|
186
|
+
--orderby=<value> Order results by field
|
|
187
|
+
--selection=<value> Scope to specific objects/types
|
|
188
|
+
|
|
189
|
+
GLOBAL FLAGS
|
|
190
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
191
|
+
--json Format output as json.
|
|
192
|
+
|
|
193
|
+
DESCRIPTION
|
|
194
|
+
Get aggregated usage analytics by embed domain - totals
|
|
195
|
+
|
|
196
|
+
EXAMPLES
|
|
197
|
+
$ twentythree analytics usage domains totals --date-expression thismonth
|
|
198
|
+
|
|
199
|
+
$ twentythree analytics usage domains totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
200
|
+
|
|
201
|
+
$ twentythree analytics usage domains totals --json
|
|
202
|
+
```
|
|
203
|
+
|
|
204
|
+
_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)_
|
|
205
|
+
|
|
206
|
+
## `twentythree analytics usage locations`
|
|
207
|
+
|
|
208
|
+
Get usage analytics by location
|
|
209
|
+
|
|
210
|
+
```
|
|
211
|
+
USAGE
|
|
212
|
+
$ twentythree analytics usage locations [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
213
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
214
|
+
<value>]
|
|
215
|
+
|
|
216
|
+
FLAGS
|
|
217
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
218
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
219
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
220
|
+
--groupby=<value> Group results by dimension
|
|
221
|
+
--order=<value> Sort direction (asc/desc)
|
|
222
|
+
--orderby=<value> Order results by field
|
|
223
|
+
--page=<value> Page number
|
|
224
|
+
--selection=<value> Scope to specific objects/types
|
|
225
|
+
--size=<value> Page size
|
|
226
|
+
|
|
227
|
+
GLOBAL FLAGS
|
|
228
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
229
|
+
--json Format output as json.
|
|
230
|
+
|
|
231
|
+
DESCRIPTION
|
|
232
|
+
Get usage analytics by location
|
|
233
|
+
|
|
234
|
+
EXAMPLES
|
|
235
|
+
$ twentythree analytics usage locations --date-expression thismonth
|
|
236
|
+
|
|
237
|
+
$ twentythree analytics usage locations --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
238
|
+
|
|
239
|
+
$ twentythree analytics usage locations --json
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
_See code: [src/commands/analytics/usage/locations.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/locations.ts)_
|
|
243
|
+
|
|
244
|
+
## `twentythree analytics usage locations totals`
|
|
245
|
+
|
|
246
|
+
Get aggregated usage analytics by location - totals
|
|
247
|
+
|
|
248
|
+
```
|
|
249
|
+
USAGE
|
|
250
|
+
$ twentythree analytics usage locations totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
251
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
252
|
+
|
|
253
|
+
FLAGS
|
|
254
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
255
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
256
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
257
|
+
--groupby=<value> Group results by dimension
|
|
258
|
+
--order=<value> Sort direction (asc/desc)
|
|
259
|
+
--orderby=<value> Order results by field
|
|
260
|
+
--selection=<value> Scope to specific objects/types
|
|
261
|
+
|
|
262
|
+
GLOBAL FLAGS
|
|
263
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
264
|
+
--json Format output as json.
|
|
265
|
+
|
|
266
|
+
DESCRIPTION
|
|
267
|
+
Get aggregated usage analytics by location - totals
|
|
268
|
+
|
|
269
|
+
EXAMPLES
|
|
270
|
+
$ twentythree analytics usage locations totals --date-expression thismonth
|
|
271
|
+
|
|
272
|
+
$ twentythree analytics usage locations totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
273
|
+
|
|
274
|
+
$ twentythree analytics usage locations totals --json
|
|
275
|
+
```
|
|
276
|
+
|
|
277
|
+
_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)_
|
|
278
|
+
|
|
279
|
+
## `twentythree analytics usage sourceids`
|
|
280
|
+
|
|
281
|
+
Get usage analytics by source ID
|
|
282
|
+
|
|
283
|
+
```
|
|
284
|
+
USAGE
|
|
285
|
+
$ twentythree analytics usage sourceids [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
286
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
287
|
+
<value>]
|
|
288
|
+
|
|
289
|
+
FLAGS
|
|
290
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
291
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
292
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
293
|
+
--groupby=<value> Group results by dimension
|
|
294
|
+
--order=<value> Sort direction (asc/desc)
|
|
295
|
+
--orderby=<value> Order results by field
|
|
296
|
+
--page=<value> Page number
|
|
297
|
+
--selection=<value> Scope to specific objects/types
|
|
298
|
+
--size=<value> Page size
|
|
299
|
+
|
|
300
|
+
GLOBAL FLAGS
|
|
301
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
302
|
+
--json Format output as json.
|
|
303
|
+
|
|
304
|
+
DESCRIPTION
|
|
305
|
+
Get usage analytics by source ID
|
|
306
|
+
|
|
307
|
+
EXAMPLES
|
|
308
|
+
$ twentythree analytics usage sourceids --date-expression thismonth
|
|
309
|
+
|
|
310
|
+
$ twentythree analytics usage sourceids --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
311
|
+
|
|
312
|
+
$ twentythree analytics usage sourceids --json
|
|
313
|
+
```
|
|
314
|
+
|
|
315
|
+
_See code: [src/commands/analytics/usage/sourceids.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/sourceids.ts)_
|
|
316
|
+
|
|
317
|
+
## `twentythree analytics usage sourceids totals`
|
|
318
|
+
|
|
319
|
+
Get aggregated usage analytics by source ID - totals
|
|
320
|
+
|
|
321
|
+
```
|
|
322
|
+
USAGE
|
|
323
|
+
$ twentythree analytics usage sourceids totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
324
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
325
|
+
|
|
326
|
+
FLAGS
|
|
327
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
328
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
329
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
330
|
+
--groupby=<value> Group results by dimension
|
|
331
|
+
--order=<value> Sort direction (asc/desc)
|
|
332
|
+
--orderby=<value> Order results by field
|
|
333
|
+
--selection=<value> Scope to specific objects/types
|
|
334
|
+
|
|
335
|
+
GLOBAL FLAGS
|
|
336
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
337
|
+
--json Format output as json.
|
|
338
|
+
|
|
339
|
+
DESCRIPTION
|
|
340
|
+
Get aggregated usage analytics by source ID - totals
|
|
341
|
+
|
|
342
|
+
EXAMPLES
|
|
343
|
+
$ twentythree analytics usage sourceids totals --date-expression thismonth
|
|
344
|
+
|
|
345
|
+
$ twentythree analytics usage sourceids totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
346
|
+
|
|
347
|
+
$ twentythree analytics usage sourceids totals --json
|
|
348
|
+
```
|
|
349
|
+
|
|
350
|
+
_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)_
|
|
351
|
+
|
|
352
|
+
## `twentythree analytics usage sources`
|
|
353
|
+
|
|
354
|
+
Get usage analytics by traffic source
|
|
355
|
+
|
|
356
|
+
```
|
|
357
|
+
USAGE
|
|
358
|
+
$ twentythree analytics usage sources [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
359
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
360
|
+
<value>]
|
|
361
|
+
|
|
362
|
+
FLAGS
|
|
363
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
364
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
365
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
366
|
+
--groupby=<value> Group results by dimension
|
|
367
|
+
--order=<value> Sort direction (asc/desc)
|
|
368
|
+
--orderby=<value> Order results by field
|
|
369
|
+
--page=<value> Page number
|
|
370
|
+
--selection=<value> Scope to specific objects/types
|
|
371
|
+
--size=<value> Page size
|
|
372
|
+
|
|
373
|
+
GLOBAL FLAGS
|
|
374
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
375
|
+
--json Format output as json.
|
|
376
|
+
|
|
377
|
+
DESCRIPTION
|
|
378
|
+
Get usage analytics by traffic source
|
|
379
|
+
|
|
380
|
+
EXAMPLES
|
|
381
|
+
$ twentythree analytics usage sources --date-expression thismonth
|
|
382
|
+
|
|
383
|
+
$ twentythree analytics usage sources --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
384
|
+
|
|
385
|
+
$ twentythree analytics usage sources --json
|
|
386
|
+
```
|
|
387
|
+
|
|
388
|
+
_See code: [src/commands/analytics/usage/sources.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/sources.ts)_
|
|
389
|
+
|
|
390
|
+
## `twentythree analytics usage sources totals`
|
|
391
|
+
|
|
392
|
+
Get aggregated usage analytics by source - totals
|
|
393
|
+
|
|
394
|
+
```
|
|
395
|
+
USAGE
|
|
396
|
+
$ twentythree analytics usage sources totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
397
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
398
|
+
|
|
399
|
+
FLAGS
|
|
400
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
401
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
402
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
403
|
+
--groupby=<value> Group results by dimension
|
|
404
|
+
--order=<value> Sort direction (asc/desc)
|
|
405
|
+
--orderby=<value> Order results by field
|
|
406
|
+
--selection=<value> Scope to specific objects/types
|
|
407
|
+
|
|
408
|
+
GLOBAL FLAGS
|
|
409
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
410
|
+
--json Format output as json.
|
|
411
|
+
|
|
412
|
+
DESCRIPTION
|
|
413
|
+
Get aggregated usage analytics by source - totals
|
|
414
|
+
|
|
415
|
+
EXAMPLES
|
|
416
|
+
$ twentythree analytics usage sources totals --date-expression thismonth
|
|
417
|
+
|
|
418
|
+
$ twentythree analytics usage sources totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
419
|
+
|
|
420
|
+
$ twentythree analytics usage sources totals --json
|
|
421
|
+
```
|
|
422
|
+
|
|
423
|
+
_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)_
|
|
424
|
+
|
|
425
|
+
## `twentythree analytics usage spots`
|
|
426
|
+
|
|
427
|
+
Get usage analytics by spot
|
|
428
|
+
|
|
429
|
+
```
|
|
430
|
+
USAGE
|
|
431
|
+
$ twentythree analytics usage spots [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
432
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
433
|
+
<value>]
|
|
434
|
+
|
|
435
|
+
FLAGS
|
|
436
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
437
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
438
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
439
|
+
--groupby=<value> Group results by dimension
|
|
440
|
+
--order=<value> Sort direction (asc/desc)
|
|
441
|
+
--orderby=<value> Order results by field
|
|
442
|
+
--page=<value> Page number
|
|
443
|
+
--selection=<value> Scope to specific objects/types
|
|
444
|
+
--size=<value> Page size
|
|
445
|
+
|
|
446
|
+
GLOBAL FLAGS
|
|
447
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
448
|
+
--json Format output as json.
|
|
449
|
+
|
|
450
|
+
DESCRIPTION
|
|
451
|
+
Get usage analytics by spot
|
|
452
|
+
|
|
453
|
+
EXAMPLES
|
|
454
|
+
$ twentythree analytics usage spots --date-expression thismonth
|
|
455
|
+
|
|
456
|
+
$ twentythree analytics usage spots --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
457
|
+
|
|
458
|
+
$ twentythree analytics usage spots --json
|
|
459
|
+
```
|
|
460
|
+
|
|
461
|
+
_See code: [src/commands/analytics/usage/spots.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/spots.ts)_
|
|
462
|
+
|
|
463
|
+
## `twentythree analytics usage spots timeseries`
|
|
464
|
+
|
|
465
|
+
Get spot usage analytics - time series
|
|
466
|
+
|
|
467
|
+
```
|
|
468
|
+
USAGE
|
|
469
|
+
$ twentythree analytics usage spots timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
470
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
471
|
+
|
|
472
|
+
FLAGS
|
|
473
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
474
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
475
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
476
|
+
--groupby=<value> Group results by dimension
|
|
477
|
+
--order=<value> Sort direction (asc/desc)
|
|
478
|
+
--orderby=<value> Order results by field
|
|
479
|
+
--selection=<value> Scope to specific objects/types
|
|
480
|
+
|
|
481
|
+
GLOBAL FLAGS
|
|
482
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
483
|
+
--json Format output as json.
|
|
484
|
+
|
|
485
|
+
DESCRIPTION
|
|
486
|
+
Get spot usage analytics - time series
|
|
487
|
+
|
|
488
|
+
EXAMPLES
|
|
489
|
+
$ twentythree analytics usage spots timeseries --date-expression thisweek
|
|
490
|
+
|
|
491
|
+
$ twentythree analytics usage spots timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
492
|
+
|
|
493
|
+
$ twentythree analytics usage spots timeseries --json
|
|
494
|
+
```
|
|
495
|
+
|
|
496
|
+
_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)_
|
|
497
|
+
|
|
498
|
+
## `twentythree analytics usage spots totals`
|
|
499
|
+
|
|
500
|
+
Get aggregated spot usage analytics - totals
|
|
501
|
+
|
|
502
|
+
```
|
|
503
|
+
USAGE
|
|
504
|
+
$ twentythree analytics usage spots totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
505
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
506
|
+
|
|
507
|
+
FLAGS
|
|
508
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
509
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
510
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
511
|
+
--groupby=<value> Group results by dimension
|
|
512
|
+
--order=<value> Sort direction (asc/desc)
|
|
513
|
+
--orderby=<value> Order results by field
|
|
514
|
+
--selection=<value> Scope to specific objects/types
|
|
515
|
+
|
|
516
|
+
GLOBAL FLAGS
|
|
517
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
518
|
+
--json Format output as json.
|
|
519
|
+
|
|
520
|
+
DESCRIPTION
|
|
521
|
+
Get aggregated spot usage analytics - totals
|
|
522
|
+
|
|
523
|
+
EXAMPLES
|
|
524
|
+
$ twentythree analytics usage spots totals --date-expression thismonth
|
|
525
|
+
|
|
526
|
+
$ twentythree analytics usage spots totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
527
|
+
|
|
528
|
+
$ twentythree analytics usage spots totals --json
|
|
529
|
+
```
|
|
530
|
+
|
|
531
|
+
_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)_
|
|
532
|
+
|
|
533
|
+
## `twentythree analytics usage storage`
|
|
534
|
+
|
|
535
|
+
Get storage usage analytics
|
|
536
|
+
|
|
537
|
+
```
|
|
538
|
+
USAGE
|
|
539
|
+
$ twentythree analytics usage storage [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
540
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
541
|
+
|
|
542
|
+
FLAGS
|
|
543
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
544
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
545
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
546
|
+
--groupby=<value> Group results by dimension
|
|
547
|
+
--order=<value> Sort direction (asc/desc)
|
|
548
|
+
--orderby=<value> Order results by field
|
|
549
|
+
--selection=<value> Scope to specific objects/types
|
|
550
|
+
|
|
551
|
+
GLOBAL FLAGS
|
|
552
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
553
|
+
--json Format output as json.
|
|
554
|
+
|
|
555
|
+
DESCRIPTION
|
|
556
|
+
Get storage usage analytics
|
|
557
|
+
|
|
558
|
+
EXAMPLES
|
|
559
|
+
$ twentythree analytics usage storage
|
|
560
|
+
|
|
561
|
+
$ twentythree analytics usage storage --json
|
|
562
|
+
|
|
563
|
+
$ twentythree analytics usage storage --selection videos
|
|
564
|
+
```
|
|
565
|
+
|
|
566
|
+
_See code: [src/commands/analytics/usage/storage.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/storage.ts)_
|
|
567
|
+
|
|
568
|
+
## `twentythree analytics usage traffic`
|
|
569
|
+
|
|
570
|
+
Get usage analytics by traffic type
|
|
571
|
+
|
|
572
|
+
```
|
|
573
|
+
USAGE
|
|
574
|
+
$ twentythree analytics usage traffic [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
575
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
576
|
+
<value>]
|
|
577
|
+
|
|
578
|
+
FLAGS
|
|
579
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
580
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
581
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
582
|
+
--groupby=<value> Group results by dimension
|
|
583
|
+
--order=<value> Sort direction (asc/desc)
|
|
584
|
+
--orderby=<value> Order results by field
|
|
585
|
+
--page=<value> Page number
|
|
586
|
+
--selection=<value> Scope to specific objects/types
|
|
587
|
+
--size=<value> Page size
|
|
588
|
+
|
|
589
|
+
GLOBAL FLAGS
|
|
590
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
591
|
+
--json Format output as json.
|
|
592
|
+
|
|
593
|
+
DESCRIPTION
|
|
594
|
+
Get usage analytics by traffic type
|
|
595
|
+
|
|
596
|
+
EXAMPLES
|
|
597
|
+
$ twentythree analytics usage traffic --date-expression thismonth
|
|
598
|
+
|
|
599
|
+
$ twentythree analytics usage traffic --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
600
|
+
|
|
601
|
+
$ twentythree analytics usage traffic --json
|
|
602
|
+
```
|
|
603
|
+
|
|
604
|
+
_See code: [src/commands/analytics/usage/traffic.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/usage/traffic.ts)_
|
|
605
|
+
|
|
606
|
+
## `twentythree analytics usage traffic timeseries`
|
|
607
|
+
|
|
608
|
+
Get traffic usage analytics - time series
|
|
609
|
+
|
|
610
|
+
```
|
|
611
|
+
USAGE
|
|
612
|
+
$ twentythree analytics usage traffic timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
613
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
614
|
+
|
|
615
|
+
FLAGS
|
|
616
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
617
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
618
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
619
|
+
--groupby=<value> Group results by dimension
|
|
620
|
+
--order=<value> Sort direction (asc/desc)
|
|
621
|
+
--orderby=<value> Order results by field
|
|
622
|
+
--selection=<value> Scope to specific objects/types
|
|
623
|
+
|
|
624
|
+
GLOBAL FLAGS
|
|
625
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
626
|
+
--json Format output as json.
|
|
627
|
+
|
|
628
|
+
DESCRIPTION
|
|
629
|
+
Get traffic usage analytics - time series
|
|
630
|
+
|
|
631
|
+
EXAMPLES
|
|
632
|
+
$ twentythree analytics usage traffic timeseries --date-expression thisweek
|
|
633
|
+
|
|
634
|
+
$ twentythree analytics usage traffic timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
635
|
+
|
|
636
|
+
$ twentythree analytics usage traffic timeseries --json
|
|
637
|
+
```
|
|
638
|
+
|
|
639
|
+
_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)_
|
|
640
|
+
|
|
641
|
+
## `twentythree analytics usage traffic totals`
|
|
642
|
+
|
|
643
|
+
Get aggregated traffic usage analytics - totals
|
|
644
|
+
|
|
645
|
+
```
|
|
646
|
+
USAGE
|
|
647
|
+
$ twentythree analytics usage traffic totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
648
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
649
|
+
|
|
650
|
+
FLAGS
|
|
651
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
652
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
653
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
654
|
+
--groupby=<value> Group results by dimension
|
|
655
|
+
--order=<value> Sort direction (asc/desc)
|
|
656
|
+
--orderby=<value> Order results by field
|
|
657
|
+
--selection=<value> Scope to specific objects/types
|
|
658
|
+
|
|
659
|
+
GLOBAL FLAGS
|
|
660
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
661
|
+
--json Format output as json.
|
|
662
|
+
|
|
663
|
+
DESCRIPTION
|
|
664
|
+
Get aggregated traffic usage analytics - totals
|
|
665
|
+
|
|
666
|
+
EXAMPLES
|
|
667
|
+
$ twentythree analytics usage traffic totals --date-expression thismonth
|
|
668
|
+
|
|
669
|
+
$ twentythree analytics usage traffic totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
670
|
+
|
|
671
|
+
$ twentythree analytics usage traffic totals --json
|
|
672
|
+
```
|
|
673
|
+
|
|
674
|
+
_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)_
|