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,113 @@
|
|
|
1
|
+
`twentythree analytics:conversions`
|
|
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
|
+
|
|
10
|
+
## `twentythree analytics conversions`
|
|
11
|
+
|
|
12
|
+
Get conversion analytics data
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
USAGE
|
|
16
|
+
$ twentythree analytics conversions [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
17
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
18
|
+
|
|
19
|
+
FLAGS
|
|
20
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
21
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
22
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
23
|
+
--groupby=<value> Group results by dimension
|
|
24
|
+
--order=<value> Sort direction (asc/desc)
|
|
25
|
+
--orderby=<value> Order results by field
|
|
26
|
+
--selection=<value> Scope to specific objects/types
|
|
27
|
+
|
|
28
|
+
GLOBAL FLAGS
|
|
29
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
30
|
+
--json Format output as json.
|
|
31
|
+
|
|
32
|
+
DESCRIPTION
|
|
33
|
+
Get conversion analytics data
|
|
34
|
+
|
|
35
|
+
EXAMPLES
|
|
36
|
+
$ twentythree analytics conversions --date-expression thisweek
|
|
37
|
+
|
|
38
|
+
$ twentythree analytics conversions --date-start 2024-01-01 --date-end 2024-01-31
|
|
39
|
+
|
|
40
|
+
$ twentythree analytics conversions --json
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
_See code: [src/commands/analytics/conversions/index.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/conversions/index.ts)_
|
|
44
|
+
|
|
45
|
+
## `twentythree analytics conversions timeseries`
|
|
46
|
+
|
|
47
|
+
Get conversion analytics time series data
|
|
48
|
+
|
|
49
|
+
```
|
|
50
|
+
USAGE
|
|
51
|
+
$ twentythree analytics conversions timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
52
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
53
|
+
|
|
54
|
+
FLAGS
|
|
55
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
56
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
57
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
58
|
+
--groupby=<value> Group results by dimension
|
|
59
|
+
--order=<value> Sort direction (asc/desc)
|
|
60
|
+
--orderby=<value> Order results by field
|
|
61
|
+
--selection=<value> Scope to specific objects/types
|
|
62
|
+
|
|
63
|
+
GLOBAL FLAGS
|
|
64
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
65
|
+
--json Format output as json.
|
|
66
|
+
|
|
67
|
+
DESCRIPTION
|
|
68
|
+
Get conversion analytics time series data
|
|
69
|
+
|
|
70
|
+
EXAMPLES
|
|
71
|
+
$ twentythree analytics conversions timeseries --date-expression thisweek
|
|
72
|
+
|
|
73
|
+
$ twentythree analytics conversions timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
74
|
+
|
|
75
|
+
$ twentythree analytics conversions timeseries --json
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
_See code: [src/commands/analytics/conversions/timeseries.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/conversions/timeseries.ts)_
|
|
79
|
+
|
|
80
|
+
## `twentythree analytics conversions totals`
|
|
81
|
+
|
|
82
|
+
Get conversion analytics totals
|
|
83
|
+
|
|
84
|
+
```
|
|
85
|
+
USAGE
|
|
86
|
+
$ twentythree analytics conversions totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
87
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
88
|
+
|
|
89
|
+
FLAGS
|
|
90
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
91
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
92
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
93
|
+
--groupby=<value> Group results by dimension
|
|
94
|
+
--order=<value> Sort direction (asc/desc)
|
|
95
|
+
--orderby=<value> Order results by field
|
|
96
|
+
--selection=<value> Scope to specific objects/types
|
|
97
|
+
|
|
98
|
+
GLOBAL FLAGS
|
|
99
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
100
|
+
--json Format output as json.
|
|
101
|
+
|
|
102
|
+
DESCRIPTION
|
|
103
|
+
Get conversion analytics totals
|
|
104
|
+
|
|
105
|
+
EXAMPLES
|
|
106
|
+
$ twentythree analytics conversions totals --date-expression thisweek
|
|
107
|
+
|
|
108
|
+
$ twentythree analytics conversions totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
109
|
+
|
|
110
|
+
$ twentythree analytics conversions totals --json
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
_See code: [src/commands/analytics/conversions/totals.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/conversions/totals.ts)_
|
|
@@ -0,0 +1,338 @@
|
|
|
1
|
+
`twentythree analytics:live`
|
|
2
|
+
============================
|
|
3
|
+
|
|
4
|
+
Get live/webinar analytics data
|
|
5
|
+
|
|
6
|
+
* [`twentythree analytics live`](#twentythree-analytics-live)
|
|
7
|
+
* [`twentythree analytics live event`](#twentythree-analytics-live-event)
|
|
8
|
+
* [`twentythree analytics live event-timeseries`](#twentythree-analytics-live-event-timeseries)
|
|
9
|
+
* [`twentythree analytics live event-totals`](#twentythree-analytics-live-event-totals)
|
|
10
|
+
* [`twentythree analytics live timeseries`](#twentythree-analytics-live-timeseries)
|
|
11
|
+
* [`twentythree analytics live totals`](#twentythree-analytics-live-totals)
|
|
12
|
+
* [`twentythree analytics live weekday`](#twentythree-analytics-live-weekday)
|
|
13
|
+
* [`twentythree analytics live weekday timeseries`](#twentythree-analytics-live-weekday-timeseries)
|
|
14
|
+
* [`twentythree analytics live weekday totals`](#twentythree-analytics-live-weekday-totals)
|
|
15
|
+
|
|
16
|
+
## `twentythree analytics live`
|
|
17
|
+
|
|
18
|
+
Get live/webinar analytics data
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
USAGE
|
|
22
|
+
$ twentythree analytics live [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
23
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
24
|
+
<value>]
|
|
25
|
+
|
|
26
|
+
FLAGS
|
|
27
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
28
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
29
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
30
|
+
--groupby=<value> Group results by dimension
|
|
31
|
+
--order=<value> Sort direction (asc/desc)
|
|
32
|
+
--orderby=<value> Order results by field
|
|
33
|
+
--page=<value> Page number
|
|
34
|
+
--selection=<value> Scope to specific objects/types
|
|
35
|
+
--size=<value> Page size
|
|
36
|
+
|
|
37
|
+
GLOBAL FLAGS
|
|
38
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
39
|
+
--json Format output as json.
|
|
40
|
+
|
|
41
|
+
DESCRIPTION
|
|
42
|
+
Get live/webinar analytics data
|
|
43
|
+
|
|
44
|
+
EXAMPLES
|
|
45
|
+
$ twentythree analytics live --date-expression thisweek
|
|
46
|
+
|
|
47
|
+
$ twentythree analytics live --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
48
|
+
|
|
49
|
+
$ twentythree analytics live --json
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
_See code: [src/commands/analytics/live/index.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/live/index.ts)_
|
|
53
|
+
|
|
54
|
+
## `twentythree analytics live event`
|
|
55
|
+
|
|
56
|
+
Get live/webinar event analytics
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
USAGE
|
|
60
|
+
$ twentythree analytics live event [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
61
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
62
|
+
<value>]
|
|
63
|
+
|
|
64
|
+
FLAGS
|
|
65
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
66
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
67
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
68
|
+
--groupby=<value> Group results by dimension
|
|
69
|
+
--order=<value> Sort direction (asc/desc)
|
|
70
|
+
--orderby=<value> Order results by field
|
|
71
|
+
--page=<value> Page number
|
|
72
|
+
--selection=<value> Scope to specific objects/types
|
|
73
|
+
--size=<value> Page size
|
|
74
|
+
|
|
75
|
+
GLOBAL FLAGS
|
|
76
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
77
|
+
--json Format output as json.
|
|
78
|
+
|
|
79
|
+
DESCRIPTION
|
|
80
|
+
Get live/webinar event analytics
|
|
81
|
+
|
|
82
|
+
EXAMPLES
|
|
83
|
+
$ twentythree analytics live event --date-expression thismonth
|
|
84
|
+
|
|
85
|
+
$ twentythree analytics live event --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
86
|
+
|
|
87
|
+
$ twentythree analytics live event --json
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
_See code: [src/commands/analytics/live/event.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/live/event.ts)_
|
|
91
|
+
|
|
92
|
+
## `twentythree analytics live event-timeseries`
|
|
93
|
+
|
|
94
|
+
Get live/webinar event time series analytics
|
|
95
|
+
|
|
96
|
+
```
|
|
97
|
+
USAGE
|
|
98
|
+
$ twentythree analytics live event-timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
99
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
100
|
+
|
|
101
|
+
FLAGS
|
|
102
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
103
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
104
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
105
|
+
--groupby=<value> Group results by dimension
|
|
106
|
+
--order=<value> Sort direction (asc/desc)
|
|
107
|
+
--orderby=<value> Order results by field
|
|
108
|
+
--selection=<value> Scope to specific objects/types
|
|
109
|
+
|
|
110
|
+
GLOBAL FLAGS
|
|
111
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
112
|
+
--json Format output as json.
|
|
113
|
+
|
|
114
|
+
DESCRIPTION
|
|
115
|
+
Get live/webinar event time series analytics
|
|
116
|
+
|
|
117
|
+
EXAMPLES
|
|
118
|
+
$ twentythree analytics live event-timeseries --date-expression thisweek
|
|
119
|
+
|
|
120
|
+
$ twentythree analytics live event-timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
121
|
+
|
|
122
|
+
$ twentythree analytics live event-timeseries --json
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
_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)_
|
|
126
|
+
|
|
127
|
+
## `twentythree analytics live event-totals`
|
|
128
|
+
|
|
129
|
+
Get live/webinar event totals analytics
|
|
130
|
+
|
|
131
|
+
```
|
|
132
|
+
USAGE
|
|
133
|
+
$ twentythree analytics live event-totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
134
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
135
|
+
|
|
136
|
+
FLAGS
|
|
137
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
138
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
139
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
140
|
+
--groupby=<value> Group results by dimension
|
|
141
|
+
--order=<value> Sort direction (asc/desc)
|
|
142
|
+
--orderby=<value> Order results by field
|
|
143
|
+
--selection=<value> Scope to specific objects/types
|
|
144
|
+
|
|
145
|
+
GLOBAL FLAGS
|
|
146
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
147
|
+
--json Format output as json.
|
|
148
|
+
|
|
149
|
+
DESCRIPTION
|
|
150
|
+
Get live/webinar event totals analytics
|
|
151
|
+
|
|
152
|
+
EXAMPLES
|
|
153
|
+
$ twentythree analytics live event-totals --date-expression thisweek
|
|
154
|
+
|
|
155
|
+
$ twentythree analytics live event-totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
156
|
+
|
|
157
|
+
$ twentythree analytics live event-totals --json
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
_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)_
|
|
161
|
+
|
|
162
|
+
## `twentythree analytics live timeseries`
|
|
163
|
+
|
|
164
|
+
Get live/webinar analytics time series data
|
|
165
|
+
|
|
166
|
+
```
|
|
167
|
+
USAGE
|
|
168
|
+
$ twentythree analytics live timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
169
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
170
|
+
|
|
171
|
+
FLAGS
|
|
172
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
173
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
174
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
175
|
+
--groupby=<value> Group results by dimension
|
|
176
|
+
--order=<value> Sort direction (asc/desc)
|
|
177
|
+
--orderby=<value> Order results by field
|
|
178
|
+
--selection=<value> Scope to specific objects/types
|
|
179
|
+
|
|
180
|
+
GLOBAL FLAGS
|
|
181
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
182
|
+
--json Format output as json.
|
|
183
|
+
|
|
184
|
+
DESCRIPTION
|
|
185
|
+
Get live/webinar analytics time series data
|
|
186
|
+
|
|
187
|
+
EXAMPLES
|
|
188
|
+
$ twentythree analytics live timeseries --date-expression thisweek
|
|
189
|
+
|
|
190
|
+
$ twentythree analytics live timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
191
|
+
|
|
192
|
+
$ twentythree analytics live timeseries --json
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
_See code: [src/commands/analytics/live/timeseries.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/live/timeseries.ts)_
|
|
196
|
+
|
|
197
|
+
## `twentythree analytics live totals`
|
|
198
|
+
|
|
199
|
+
Get live/webinar analytics totals
|
|
200
|
+
|
|
201
|
+
```
|
|
202
|
+
USAGE
|
|
203
|
+
$ twentythree analytics live totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
204
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
205
|
+
|
|
206
|
+
FLAGS
|
|
207
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
208
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
209
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
210
|
+
--groupby=<value> Group results by dimension
|
|
211
|
+
--order=<value> Sort direction (asc/desc)
|
|
212
|
+
--orderby=<value> Order results by field
|
|
213
|
+
--selection=<value> Scope to specific objects/types
|
|
214
|
+
|
|
215
|
+
GLOBAL FLAGS
|
|
216
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
217
|
+
--json Format output as json.
|
|
218
|
+
|
|
219
|
+
DESCRIPTION
|
|
220
|
+
Get live/webinar analytics totals
|
|
221
|
+
|
|
222
|
+
EXAMPLES
|
|
223
|
+
$ twentythree analytics live totals --date-expression thisweek
|
|
224
|
+
|
|
225
|
+
$ twentythree analytics live totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
226
|
+
|
|
227
|
+
$ twentythree analytics live totals --json
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
_See code: [src/commands/analytics/live/totals.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/live/totals.ts)_
|
|
231
|
+
|
|
232
|
+
## `twentythree analytics live weekday`
|
|
233
|
+
|
|
234
|
+
Get live/webinar analytics by day of week
|
|
235
|
+
|
|
236
|
+
```
|
|
237
|
+
USAGE
|
|
238
|
+
$ twentythree analytics live weekday [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
239
|
+
<value>] [--page <value>] [--size <value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order
|
|
240
|
+
<value>]
|
|
241
|
+
|
|
242
|
+
FLAGS
|
|
243
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
244
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
245
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
246
|
+
--groupby=<value> Group results by dimension
|
|
247
|
+
--order=<value> Sort direction (asc/desc)
|
|
248
|
+
--orderby=<value> Order results by field
|
|
249
|
+
--page=<value> Page number
|
|
250
|
+
--selection=<value> Scope to specific objects/types
|
|
251
|
+
--size=<value> Page size
|
|
252
|
+
|
|
253
|
+
GLOBAL FLAGS
|
|
254
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
255
|
+
--json Format output as json.
|
|
256
|
+
|
|
257
|
+
DESCRIPTION
|
|
258
|
+
Get live/webinar analytics by day of week
|
|
259
|
+
|
|
260
|
+
EXAMPLES
|
|
261
|
+
$ twentythree analytics live weekday --date-expression thismonth
|
|
262
|
+
|
|
263
|
+
$ twentythree analytics live weekday --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20
|
|
264
|
+
|
|
265
|
+
$ twentythree analytics live weekday --json
|
|
266
|
+
```
|
|
267
|
+
|
|
268
|
+
_See code: [src/commands/analytics/live/weekday.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/analytics/live/weekday.ts)_
|
|
269
|
+
|
|
270
|
+
## `twentythree analytics live weekday timeseries`
|
|
271
|
+
|
|
272
|
+
Get live/webinar analytics by weekday - time series
|
|
273
|
+
|
|
274
|
+
```
|
|
275
|
+
USAGE
|
|
276
|
+
$ twentythree analytics live weekday timeseries [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
277
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
278
|
+
|
|
279
|
+
FLAGS
|
|
280
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
281
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
282
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
283
|
+
--groupby=<value> Group results by dimension
|
|
284
|
+
--order=<value> Sort direction (asc/desc)
|
|
285
|
+
--orderby=<value> Order results by field
|
|
286
|
+
--selection=<value> Scope to specific objects/types
|
|
287
|
+
|
|
288
|
+
GLOBAL FLAGS
|
|
289
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
290
|
+
--json Format output as json.
|
|
291
|
+
|
|
292
|
+
DESCRIPTION
|
|
293
|
+
Get live/webinar analytics by weekday - time series
|
|
294
|
+
|
|
295
|
+
EXAMPLES
|
|
296
|
+
$ twentythree analytics live weekday timeseries --date-expression thisweek
|
|
297
|
+
|
|
298
|
+
$ twentythree analytics live weekday timeseries --date-start 2024-01-01 --date-end 2024-01-31
|
|
299
|
+
|
|
300
|
+
$ twentythree analytics live weekday timeseries --json
|
|
301
|
+
```
|
|
302
|
+
|
|
303
|
+
_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)_
|
|
304
|
+
|
|
305
|
+
## `twentythree analytics live weekday totals`
|
|
306
|
+
|
|
307
|
+
Get aggregated live/webinar analytics by weekday - totals
|
|
308
|
+
|
|
309
|
+
```
|
|
310
|
+
USAGE
|
|
311
|
+
$ twentythree analytics live weekday totals [--json] [-w <value>] [--date-start <value>] [--date-end <value>] [--date-expression
|
|
312
|
+
<value>] [--selection <value>] [--groupby <value>] [--orderby <value>] [--order <value>]
|
|
313
|
+
|
|
314
|
+
FLAGS
|
|
315
|
+
--date-end=<value> Last date (YYYY-MM-DD)
|
|
316
|
+
--date-expression=<value> Predefined date range (e.g. thisweek, lastyear)
|
|
317
|
+
--date-start=<value> First date (YYYY-MM-DD)
|
|
318
|
+
--groupby=<value> Group results by dimension
|
|
319
|
+
--order=<value> Sort direction (asc/desc)
|
|
320
|
+
--orderby=<value> Order results by field
|
|
321
|
+
--selection=<value> Scope to specific objects/types
|
|
322
|
+
|
|
323
|
+
GLOBAL FLAGS
|
|
324
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
325
|
+
--json Format output as json.
|
|
326
|
+
|
|
327
|
+
DESCRIPTION
|
|
328
|
+
Get aggregated live/webinar analytics by weekday - totals
|
|
329
|
+
|
|
330
|
+
EXAMPLES
|
|
331
|
+
$ twentythree analytics live weekday totals --date-expression thismonth
|
|
332
|
+
|
|
333
|
+
$ twentythree analytics live weekday totals --date-start 2024-01-01 --date-end 2024-01-31
|
|
334
|
+
|
|
335
|
+
$ twentythree analytics live weekday totals --json
|
|
336
|
+
```
|
|
337
|
+
|
|
338
|
+
_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)_
|