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,41 @@
|
|
|
1
|
+
`twentythree audience:timelines`
|
|
2
|
+
================================
|
|
3
|
+
|
|
4
|
+
Get audience member timelines
|
|
5
|
+
|
|
6
|
+
* [`twentythree audience timelines`](#twentythree-audience-timelines)
|
|
7
|
+
|
|
8
|
+
## `twentythree audience timelines`
|
|
9
|
+
|
|
10
|
+
Get audience member timelines
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree audience timelines [--json] [-w <value>] [--page <value>] [--size <value>] [--offset <value>] [--uuid
|
|
15
|
+
<value>] [--objects <value>] [--orderby <value>] [--order <value>]
|
|
16
|
+
|
|
17
|
+
FLAGS
|
|
18
|
+
--objects=<value> Filter by object IDs (space-separated)
|
|
19
|
+
--offset=<value> Offset for pagination
|
|
20
|
+
--order=<value> Sort direction (asc/desc)
|
|
21
|
+
--orderby=<value> Order by field
|
|
22
|
+
--page=<value> Page number
|
|
23
|
+
--size=<value> Page size
|
|
24
|
+
--uuid=<value> Filter by audience member UUID
|
|
25
|
+
|
|
26
|
+
GLOBAL FLAGS
|
|
27
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
28
|
+
--json Format output as json.
|
|
29
|
+
|
|
30
|
+
DESCRIPTION
|
|
31
|
+
Get audience member timelines
|
|
32
|
+
|
|
33
|
+
EXAMPLES
|
|
34
|
+
$ twentythree audience timelines
|
|
35
|
+
|
|
36
|
+
$ twentythree audience timelines --uuid "abc-123" --size 20
|
|
37
|
+
|
|
38
|
+
$ twentythree audience timelines --objects "456 789" --json
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
_See code: [src/commands/audience/timelines.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/audience/timelines.ts)_
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
`twentythree audience:unregister`
|
|
2
|
+
=================================
|
|
3
|
+
|
|
4
|
+
Remove a registration for an audience contact
|
|
5
|
+
|
|
6
|
+
* [`twentythree audience unregister`](#twentythree-audience-unregister)
|
|
7
|
+
|
|
8
|
+
## `twentythree audience unregister`
|
|
9
|
+
|
|
10
|
+
Remove a registration for an audience contact
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree audience unregister --object-id <value> [--json] [-w <value>] [--email <value>] [--uuid <value>]
|
|
15
|
+
|
|
16
|
+
FLAGS
|
|
17
|
+
--email=<value> Contact email
|
|
18
|
+
--object-id=<value> (required) Object ID to unregister from
|
|
19
|
+
--uuid=<value> Contact UUID
|
|
20
|
+
|
|
21
|
+
GLOBAL FLAGS
|
|
22
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
23
|
+
--json Format output as json.
|
|
24
|
+
|
|
25
|
+
DESCRIPTION
|
|
26
|
+
Remove a registration for an audience contact
|
|
27
|
+
|
|
28
|
+
EXAMPLES
|
|
29
|
+
$ twentythree audience unregister --object-id 123 --email "jane@example.com"
|
|
30
|
+
|
|
31
|
+
$ twentythree audience unregister --object-id 456 --uuid "abc-def-ghi"
|
|
32
|
+
|
|
33
|
+
$ twentythree audience unregister --object-id 789 --json
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
_See code: [src/commands/audience/unregister.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/audience/unregister.ts)_
|
|
@@ -0,0 +1,485 @@
|
|
|
1
|
+
`twentythree audience`
|
|
2
|
+
======================
|
|
3
|
+
|
|
4
|
+
List audience companies
|
|
5
|
+
|
|
6
|
+
* [`twentythree audience companies`](#twentythree-audience-companies)
|
|
7
|
+
* [`twentythree audience field list`](#twentythree-audience-field-list)
|
|
8
|
+
* [`twentythree audience field remove`](#twentythree-audience-field-remove)
|
|
9
|
+
* [`twentythree audience field set`](#twentythree-audience-field-set)
|
|
10
|
+
* [`twentythree audience field types`](#twentythree-audience-field-types)
|
|
11
|
+
* [`twentythree audience funnel`](#twentythree-audience-funnel)
|
|
12
|
+
* [`twentythree audience identity-sources`](#twentythree-audience-identity-sources)
|
|
13
|
+
* [`twentythree audience list`](#twentythree-audience-list)
|
|
14
|
+
* [`twentythree audience list-collectors`](#twentythree-audience-list-collectors)
|
|
15
|
+
* [`twentythree audience metrics`](#twentythree-audience-metrics)
|
|
16
|
+
* [`twentythree audience register`](#twentythree-audience-register)
|
|
17
|
+
* [`twentythree audience remove`](#twentythree-audience-remove)
|
|
18
|
+
* [`twentythree audience search`](#twentythree-audience-search)
|
|
19
|
+
* [`twentythree audience timelines`](#twentythree-audience-timelines)
|
|
20
|
+
* [`twentythree audience unregister`](#twentythree-audience-unregister)
|
|
21
|
+
|
|
22
|
+
## `twentythree audience companies`
|
|
23
|
+
|
|
24
|
+
List audience companies
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
USAGE
|
|
28
|
+
$ twentythree audience companies [--json] [-w <value>] [--page <value>] [--size <value>] [--offset <value>] [--orderby
|
|
29
|
+
<value>] [--order <value>] [--identified] [--domains <value>]
|
|
30
|
+
|
|
31
|
+
FLAGS
|
|
32
|
+
--domains=<value> Filter by company domains (space-separated)
|
|
33
|
+
--[no-]identified Filter to identified companies only
|
|
34
|
+
--offset=<value> Offset for pagination
|
|
35
|
+
--order=<value> Sort direction (asc/desc)
|
|
36
|
+
--orderby=<value> Order by field
|
|
37
|
+
--page=<value> Page number
|
|
38
|
+
--size=<value> Page size
|
|
39
|
+
|
|
40
|
+
GLOBAL FLAGS
|
|
41
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
42
|
+
--json Format output as json.
|
|
43
|
+
|
|
44
|
+
DESCRIPTION
|
|
45
|
+
List audience companies
|
|
46
|
+
|
|
47
|
+
EXAMPLES
|
|
48
|
+
$ twentythree audience companies
|
|
49
|
+
|
|
50
|
+
$ twentythree audience companies --identified --size 50
|
|
51
|
+
|
|
52
|
+
$ twentythree audience companies --domains "acme.com" --json
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
_See code: [src/commands/audience/companies.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/audience/companies.ts)_
|
|
56
|
+
|
|
57
|
+
## `twentythree audience field list`
|
|
58
|
+
|
|
59
|
+
List custom audience fields
|
|
60
|
+
|
|
61
|
+
```
|
|
62
|
+
USAGE
|
|
63
|
+
$ twentythree audience field list [--json] [-w <value>] [--include-widget-html]
|
|
64
|
+
|
|
65
|
+
FLAGS
|
|
66
|
+
--include-widget-html Include HTML widget for each field
|
|
67
|
+
|
|
68
|
+
GLOBAL FLAGS
|
|
69
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
70
|
+
--json Format output as json.
|
|
71
|
+
|
|
72
|
+
DESCRIPTION
|
|
73
|
+
List custom audience fields
|
|
74
|
+
|
|
75
|
+
EXAMPLES
|
|
76
|
+
$ twentythree audience field list
|
|
77
|
+
|
|
78
|
+
$ twentythree audience field list --include-widget-html
|
|
79
|
+
|
|
80
|
+
$ twentythree audience field list --json
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
_See code: [src/commands/audience/field/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/audience/field/list.ts)_
|
|
84
|
+
|
|
85
|
+
## `twentythree audience field remove`
|
|
86
|
+
|
|
87
|
+
Remove a custom audience field
|
|
88
|
+
|
|
89
|
+
```
|
|
90
|
+
USAGE
|
|
91
|
+
$ twentythree audience field remove --key <value> [--json] [-w <value>]
|
|
92
|
+
|
|
93
|
+
FLAGS
|
|
94
|
+
--key=<value> (required) Field key to remove
|
|
95
|
+
|
|
96
|
+
GLOBAL FLAGS
|
|
97
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
98
|
+
--json Format output as json.
|
|
99
|
+
|
|
100
|
+
DESCRIPTION
|
|
101
|
+
Remove a custom audience field
|
|
102
|
+
|
|
103
|
+
EXAMPLES
|
|
104
|
+
$ twentythree audience field remove --key "department"
|
|
105
|
+
|
|
106
|
+
$ twentythree audience field remove --key "old-field" --json
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
_See code: [src/commands/audience/field/remove.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/audience/field/remove.ts)_
|
|
110
|
+
|
|
111
|
+
## `twentythree audience field set`
|
|
112
|
+
|
|
113
|
+
Create or update a custom audience field
|
|
114
|
+
|
|
115
|
+
```
|
|
116
|
+
USAGE
|
|
117
|
+
$ twentythree audience field set --key <value> --type <value> --label <value> [--json] [-w <value>] [--options
|
|
118
|
+
<value>] [--priority <value>]
|
|
119
|
+
|
|
120
|
+
FLAGS
|
|
121
|
+
--key=<value> (required) Unique field key
|
|
122
|
+
--label=<value> (required) Human-readable label
|
|
123
|
+
--options=<value> Semicolon-separated options (for enumerable types)
|
|
124
|
+
--priority=<value> Display order priority
|
|
125
|
+
--type=<value> (required) Field type (use audience field types to list valid values)
|
|
126
|
+
|
|
127
|
+
GLOBAL FLAGS
|
|
128
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
129
|
+
--json Format output as json.
|
|
130
|
+
|
|
131
|
+
DESCRIPTION
|
|
132
|
+
Create or update a custom audience field
|
|
133
|
+
|
|
134
|
+
EXAMPLES
|
|
135
|
+
$ twentythree audience field set --key "department" --type text --label "Department"
|
|
136
|
+
|
|
137
|
+
$ twentythree audience field set --key "tier" --type enum --label "Customer Tier" --options "free;pro;enterprise"
|
|
138
|
+
|
|
139
|
+
$ twentythree audience field set --key "score" --type number --label "NPS Score" --priority 1 --json
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
_See code: [src/commands/audience/field/set.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/audience/field/set.ts)_
|
|
143
|
+
|
|
144
|
+
## `twentythree audience field types`
|
|
145
|
+
|
|
146
|
+
List valid audience field types
|
|
147
|
+
|
|
148
|
+
```
|
|
149
|
+
USAGE
|
|
150
|
+
$ twentythree audience field types [--json] [-w <value>]
|
|
151
|
+
|
|
152
|
+
GLOBAL FLAGS
|
|
153
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
154
|
+
--json Format output as json.
|
|
155
|
+
|
|
156
|
+
DESCRIPTION
|
|
157
|
+
List valid audience field types
|
|
158
|
+
|
|
159
|
+
EXAMPLES
|
|
160
|
+
$ twentythree audience field types
|
|
161
|
+
|
|
162
|
+
$ twentythree audience field types --json
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
_See code: [src/commands/audience/field/types.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/audience/field/types.ts)_
|
|
166
|
+
|
|
167
|
+
## `twentythree audience funnel`
|
|
168
|
+
|
|
169
|
+
Get audience funnel analytics
|
|
170
|
+
|
|
171
|
+
```
|
|
172
|
+
USAGE
|
|
173
|
+
$ twentythree audience funnel [--json] [-w <value>] [--objects <value>] [--live-type <value>]
|
|
174
|
+
[--resolve-recordings] [--resolve-live-series]
|
|
175
|
+
|
|
176
|
+
FLAGS
|
|
177
|
+
--live-type=<value> Live event type filter
|
|
178
|
+
--objects=<value> Filter by object IDs (space-separated)
|
|
179
|
+
--resolve-live-series Resolve live series details
|
|
180
|
+
--resolve-recordings Resolve recording details
|
|
181
|
+
|
|
182
|
+
GLOBAL FLAGS
|
|
183
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
184
|
+
--json Format output as json.
|
|
185
|
+
|
|
186
|
+
DESCRIPTION
|
|
187
|
+
Get audience funnel analytics
|
|
188
|
+
|
|
189
|
+
EXAMPLES
|
|
190
|
+
$ twentythree audience funnel
|
|
191
|
+
|
|
192
|
+
$ twentythree audience funnel --objects "123 456" --json
|
|
193
|
+
|
|
194
|
+
$ twentythree audience funnel --live-type on_demand --resolve-recordings
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
_See code: [src/commands/audience/funnel.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/audience/funnel.ts)_
|
|
198
|
+
|
|
199
|
+
## `twentythree audience identity-sources`
|
|
200
|
+
|
|
201
|
+
List audience identity sources
|
|
202
|
+
|
|
203
|
+
```
|
|
204
|
+
USAGE
|
|
205
|
+
$ twentythree audience identity-sources [--json] [-w <value>]
|
|
206
|
+
|
|
207
|
+
GLOBAL FLAGS
|
|
208
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
209
|
+
--json Format output as json.
|
|
210
|
+
|
|
211
|
+
DESCRIPTION
|
|
212
|
+
List audience identity sources
|
|
213
|
+
|
|
214
|
+
EXAMPLES
|
|
215
|
+
$ twentythree audience identity-sources
|
|
216
|
+
|
|
217
|
+
$ twentythree audience identity-sources --json
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
_See code: [src/commands/audience/identity-sources.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/audience/identity-sources.ts)_
|
|
221
|
+
|
|
222
|
+
## `twentythree audience list`
|
|
223
|
+
|
|
224
|
+
List audience members
|
|
225
|
+
|
|
226
|
+
```
|
|
227
|
+
USAGE
|
|
228
|
+
$ twentythree audience list [--json] [-w <value>] [--page <value>] [--size <value>] [--offset <value>] [--orderby
|
|
229
|
+
<value>] [--order <value>] [--search <value>] [--identified] [--objects <value>]
|
|
230
|
+
|
|
231
|
+
FLAGS
|
|
232
|
+
--[no-]identified Filter to identified profiles only
|
|
233
|
+
--objects=<value> Filter by viewed object IDs (space-separated)
|
|
234
|
+
--offset=<value> Offset for pagination
|
|
235
|
+
--order=<value> Sort direction (asc/desc)
|
|
236
|
+
--orderby=<value> Order by field (recent, timeline_count, score, first)
|
|
237
|
+
--page=<value> Page number
|
|
238
|
+
--search=<value> Free-text search across names and emails
|
|
239
|
+
--size=<value> Page size (max 500)
|
|
240
|
+
|
|
241
|
+
GLOBAL FLAGS
|
|
242
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
243
|
+
--json Format output as json.
|
|
244
|
+
|
|
245
|
+
DESCRIPTION
|
|
246
|
+
List audience members
|
|
247
|
+
|
|
248
|
+
EXAMPLES
|
|
249
|
+
$ twentythree audience list
|
|
250
|
+
|
|
251
|
+
$ twentythree audience list --page 2 --size 50
|
|
252
|
+
|
|
253
|
+
$ twentythree audience list --search "john" --identified --json
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
_See code: [src/commands/audience/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/audience/list.ts)_
|
|
257
|
+
|
|
258
|
+
## `twentythree audience list-collectors`
|
|
259
|
+
|
|
260
|
+
List collectors linked to audience
|
|
261
|
+
|
|
262
|
+
```
|
|
263
|
+
USAGE
|
|
264
|
+
$ twentythree audience list-collectors [--json] [-w <value>] [--object-id <value>] [--action-id <value>]
|
|
265
|
+
|
|
266
|
+
FLAGS
|
|
267
|
+
--action-id=<value> Filter by action ID
|
|
268
|
+
--object-id=<value> Filter by object ID
|
|
269
|
+
|
|
270
|
+
GLOBAL FLAGS
|
|
271
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
272
|
+
--json Format output as json.
|
|
273
|
+
|
|
274
|
+
DESCRIPTION
|
|
275
|
+
List collectors linked to audience
|
|
276
|
+
|
|
277
|
+
EXAMPLES
|
|
278
|
+
$ twentythree audience list-collectors
|
|
279
|
+
|
|
280
|
+
$ twentythree audience list-collectors --object-id 123
|
|
281
|
+
|
|
282
|
+
$ twentythree audience list-collectors --action-id 456 --json
|
|
283
|
+
```
|
|
284
|
+
|
|
285
|
+
_See code: [src/commands/audience/list-collectors.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/audience/list-collectors.ts)_
|
|
286
|
+
|
|
287
|
+
## `twentythree audience metrics`
|
|
288
|
+
|
|
289
|
+
Get audience aggregate metrics
|
|
290
|
+
|
|
291
|
+
```
|
|
292
|
+
USAGE
|
|
293
|
+
$ twentythree audience metrics [--json] [-w <value>] [--page <value>] [--size <value>] [--offset <value>] [--search
|
|
294
|
+
<value>] [--identified] [--objects <value>]
|
|
295
|
+
|
|
296
|
+
FLAGS
|
|
297
|
+
--[no-]identified Filter to identified profiles only
|
|
298
|
+
--objects=<value> Filter by viewed object IDs (space-separated)
|
|
299
|
+
--offset=<value> Offset for pagination
|
|
300
|
+
--page=<value> Page number
|
|
301
|
+
--search=<value> Free-text search filter
|
|
302
|
+
--size=<value> Page size
|
|
303
|
+
|
|
304
|
+
GLOBAL FLAGS
|
|
305
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
306
|
+
--json Format output as json.
|
|
307
|
+
|
|
308
|
+
DESCRIPTION
|
|
309
|
+
Get audience aggregate metrics
|
|
310
|
+
|
|
311
|
+
EXAMPLES
|
|
312
|
+
$ twentythree audience metrics
|
|
313
|
+
|
|
314
|
+
$ twentythree audience metrics --identified --json
|
|
315
|
+
|
|
316
|
+
$ twentythree audience metrics --search "acme" --size 100
|
|
317
|
+
```
|
|
318
|
+
|
|
319
|
+
_See code: [src/commands/audience/metrics.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/audience/metrics.ts)_
|
|
320
|
+
|
|
321
|
+
## `twentythree audience register`
|
|
322
|
+
|
|
323
|
+
Register an audience contact
|
|
324
|
+
|
|
325
|
+
```
|
|
326
|
+
USAGE
|
|
327
|
+
$ twentythree audience register --email <value> [--json] [-w <value>] [--object-id <value>] [--uuid <value>]
|
|
328
|
+
[--action-id <value>] [--firstname <value>] [--lastname <value>] [--company <value>] [--phone <value>] [--return-url
|
|
329
|
+
<value>] [--source <value>]
|
|
330
|
+
|
|
331
|
+
FLAGS
|
|
332
|
+
--action-id=<value> Collector action ID
|
|
333
|
+
--company=<value> Company name
|
|
334
|
+
--email=<value> (required) Contact email address
|
|
335
|
+
--firstname=<value> First name
|
|
336
|
+
--lastname=<value> Last name
|
|
337
|
+
--object-id=<value> Webinar/video ID to register for
|
|
338
|
+
--phone=<value> Phone number
|
|
339
|
+
--return-url=<value> Base URL for tracking URL
|
|
340
|
+
--source=<value> Registration source (api, import, site, custom)
|
|
341
|
+
--uuid=<value> Existing contact UUID
|
|
342
|
+
|
|
343
|
+
GLOBAL FLAGS
|
|
344
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
345
|
+
--json Format output as json.
|
|
346
|
+
|
|
347
|
+
DESCRIPTION
|
|
348
|
+
Register an audience contact
|
|
349
|
+
|
|
350
|
+
EXAMPLES
|
|
351
|
+
$ twentythree audience register --email "jane@example.com"
|
|
352
|
+
|
|
353
|
+
$ twentythree audience register --email "john@acme.com" --object-id 123 --firstname "John" --lastname "Doe"
|
|
354
|
+
|
|
355
|
+
$ twentythree audience register --email "user@co.com" --company "Acme Corp" --source api --json
|
|
356
|
+
```
|
|
357
|
+
|
|
358
|
+
_See code: [src/commands/audience/register.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/audience/register.ts)_
|
|
359
|
+
|
|
360
|
+
## `twentythree audience remove`
|
|
361
|
+
|
|
362
|
+
Permanently remove an audience contact
|
|
363
|
+
|
|
364
|
+
```
|
|
365
|
+
USAGE
|
|
366
|
+
$ twentythree audience remove [--json] [-w <value>] [--email <value>] [--uuid <value>]
|
|
367
|
+
|
|
368
|
+
FLAGS
|
|
369
|
+
--email=<value> Contact email address
|
|
370
|
+
--uuid=<value> Contact UUID
|
|
371
|
+
|
|
372
|
+
GLOBAL FLAGS
|
|
373
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
374
|
+
--json Format output as json.
|
|
375
|
+
|
|
376
|
+
DESCRIPTION
|
|
377
|
+
Permanently remove an audience contact
|
|
378
|
+
|
|
379
|
+
EXAMPLES
|
|
380
|
+
$ twentythree audience remove --email "jane@example.com"
|
|
381
|
+
|
|
382
|
+
$ twentythree audience remove --uuid "abc-def-ghi"
|
|
383
|
+
|
|
384
|
+
$ twentythree audience remove --email "user@co.com" --json
|
|
385
|
+
```
|
|
386
|
+
|
|
387
|
+
_See code: [src/commands/audience/remove.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/audience/remove.ts)_
|
|
388
|
+
|
|
389
|
+
## `twentythree audience search`
|
|
390
|
+
|
|
391
|
+
Search audience members
|
|
392
|
+
|
|
393
|
+
```
|
|
394
|
+
USAGE
|
|
395
|
+
$ twentythree audience search --text <value> [--json] [-w <value>] [--size <value>] [--offset <value>] [--orderby
|
|
396
|
+
<value>] [--order <value>]
|
|
397
|
+
|
|
398
|
+
FLAGS
|
|
399
|
+
--offset=<value> Results offset
|
|
400
|
+
--order=<value> Sort direction (asc/desc)
|
|
401
|
+
--orderby=<value> Order by field
|
|
402
|
+
--size=<value> Number of results
|
|
403
|
+
--text=<value> (required) Search text (required)
|
|
404
|
+
|
|
405
|
+
GLOBAL FLAGS
|
|
406
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
407
|
+
--json Format output as json.
|
|
408
|
+
|
|
409
|
+
DESCRIPTION
|
|
410
|
+
Search audience members
|
|
411
|
+
|
|
412
|
+
EXAMPLES
|
|
413
|
+
$ twentythree audience search --text "john doe"
|
|
414
|
+
|
|
415
|
+
$ twentythree audience search --text "acme" --size 20 --json
|
|
416
|
+
|
|
417
|
+
$ twentythree audience search --text "jane" --orderby score --order desc
|
|
418
|
+
```
|
|
419
|
+
|
|
420
|
+
_See code: [src/commands/audience/search.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/audience/search.ts)_
|
|
421
|
+
|
|
422
|
+
## `twentythree audience timelines`
|
|
423
|
+
|
|
424
|
+
Get audience member timelines
|
|
425
|
+
|
|
426
|
+
```
|
|
427
|
+
USAGE
|
|
428
|
+
$ twentythree audience timelines [--json] [-w <value>] [--page <value>] [--size <value>] [--offset <value>] [--uuid
|
|
429
|
+
<value>] [--objects <value>] [--orderby <value>] [--order <value>]
|
|
430
|
+
|
|
431
|
+
FLAGS
|
|
432
|
+
--objects=<value> Filter by object IDs (space-separated)
|
|
433
|
+
--offset=<value> Offset for pagination
|
|
434
|
+
--order=<value> Sort direction (asc/desc)
|
|
435
|
+
--orderby=<value> Order by field
|
|
436
|
+
--page=<value> Page number
|
|
437
|
+
--size=<value> Page size
|
|
438
|
+
--uuid=<value> Filter by audience member UUID
|
|
439
|
+
|
|
440
|
+
GLOBAL FLAGS
|
|
441
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
442
|
+
--json Format output as json.
|
|
443
|
+
|
|
444
|
+
DESCRIPTION
|
|
445
|
+
Get audience member timelines
|
|
446
|
+
|
|
447
|
+
EXAMPLES
|
|
448
|
+
$ twentythree audience timelines
|
|
449
|
+
|
|
450
|
+
$ twentythree audience timelines --uuid "abc-123" --size 20
|
|
451
|
+
|
|
452
|
+
$ twentythree audience timelines --objects "456 789" --json
|
|
453
|
+
```
|
|
454
|
+
|
|
455
|
+
_See code: [src/commands/audience/timelines.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/audience/timelines.ts)_
|
|
456
|
+
|
|
457
|
+
## `twentythree audience unregister`
|
|
458
|
+
|
|
459
|
+
Remove a registration for an audience contact
|
|
460
|
+
|
|
461
|
+
```
|
|
462
|
+
USAGE
|
|
463
|
+
$ twentythree audience unregister --object-id <value> [--json] [-w <value>] [--email <value>] [--uuid <value>]
|
|
464
|
+
|
|
465
|
+
FLAGS
|
|
466
|
+
--email=<value> Contact email
|
|
467
|
+
--object-id=<value> (required) Object ID to unregister from
|
|
468
|
+
--uuid=<value> Contact UUID
|
|
469
|
+
|
|
470
|
+
GLOBAL FLAGS
|
|
471
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
472
|
+
--json Format output as json.
|
|
473
|
+
|
|
474
|
+
DESCRIPTION
|
|
475
|
+
Remove a registration for an audience contact
|
|
476
|
+
|
|
477
|
+
EXAMPLES
|
|
478
|
+
$ twentythree audience unregister --object-id 123 --email "jane@example.com"
|
|
479
|
+
|
|
480
|
+
$ twentythree audience unregister --object-id 456 --uuid "abc-def-ghi"
|
|
481
|
+
|
|
482
|
+
$ twentythree audience unregister --object-id 789 --json
|
|
483
|
+
```
|
|
484
|
+
|
|
485
|
+
_See code: [src/commands/audience/unregister.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/audience/unregister.ts)_
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
`twentythree auth:credentials`
|
|
2
|
+
==============================
|
|
3
|
+
|
|
4
|
+
Configure domain and bearer token for a TwentyThree workspace
|
|
5
|
+
|
|
6
|
+
* [`twentythree auth credentials`](#twentythree-auth-credentials)
|
|
7
|
+
|
|
8
|
+
## `twentythree auth credentials`
|
|
9
|
+
|
|
10
|
+
Configure domain and bearer token for a TwentyThree workspace
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree auth credentials
|
|
15
|
+
|
|
16
|
+
DESCRIPTION
|
|
17
|
+
Configure domain and bearer token for a TwentyThree workspace
|
|
18
|
+
|
|
19
|
+
EXAMPLES
|
|
20
|
+
$ twentythree auth credentials
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
_See code: [src/commands/auth/credentials.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/auth/credentials.ts)_
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
`twentythree auth:status`
|
|
2
|
+
=========================
|
|
3
|
+
|
|
4
|
+
Show authentication status and active workspace
|
|
5
|
+
|
|
6
|
+
* [`twentythree auth status`](#twentythree-auth-status)
|
|
7
|
+
|
|
8
|
+
## `twentythree auth status`
|
|
9
|
+
|
|
10
|
+
Show authentication status and active workspace
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree auth status [--json] [-w <value>]
|
|
15
|
+
|
|
16
|
+
GLOBAL FLAGS
|
|
17
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
18
|
+
--json Format output as json.
|
|
19
|
+
|
|
20
|
+
DESCRIPTION
|
|
21
|
+
Show authentication status and active workspace
|
|
22
|
+
|
|
23
|
+
EXAMPLES
|
|
24
|
+
$ twentythree auth status
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
_See code: [src/commands/auth/status.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/auth/status.ts)_
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
`twentythree auth`
|
|
2
|
+
==================
|
|
3
|
+
|
|
4
|
+
Configure domain and bearer token for a TwentyThree workspace
|
|
5
|
+
|
|
6
|
+
* [`twentythree auth credentials`](#twentythree-auth-credentials)
|
|
7
|
+
* [`twentythree auth status`](#twentythree-auth-status)
|
|
8
|
+
|
|
9
|
+
## `twentythree auth credentials`
|
|
10
|
+
|
|
11
|
+
Configure domain and bearer token for a TwentyThree workspace
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
USAGE
|
|
15
|
+
$ twentythree auth credentials
|
|
16
|
+
|
|
17
|
+
DESCRIPTION
|
|
18
|
+
Configure domain and bearer token for a TwentyThree workspace
|
|
19
|
+
|
|
20
|
+
EXAMPLES
|
|
21
|
+
$ twentythree auth credentials
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
_See code: [src/commands/auth/credentials.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/auth/credentials.ts)_
|
|
25
|
+
|
|
26
|
+
## `twentythree auth status`
|
|
27
|
+
|
|
28
|
+
Show authentication status and active workspace
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
USAGE
|
|
32
|
+
$ twentythree auth status [--json] [-w <value>]
|
|
33
|
+
|
|
34
|
+
GLOBAL FLAGS
|
|
35
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
36
|
+
--json Format output as json.
|
|
37
|
+
|
|
38
|
+
DESCRIPTION
|
|
39
|
+
Show authentication status and active workspace
|
|
40
|
+
|
|
41
|
+
EXAMPLES
|
|
42
|
+
$ twentythree auth status
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
_See code: [src/commands/auth/status.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/auth/status.ts)_
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
`twentythree category:create`
|
|
2
|
+
=============================
|
|
3
|
+
|
|
4
|
+
Create a new category
|
|
5
|
+
|
|
6
|
+
* [`twentythree category create`](#twentythree-category-create)
|
|
7
|
+
|
|
8
|
+
## `twentythree category create`
|
|
9
|
+
|
|
10
|
+
Create a new category
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
USAGE
|
|
14
|
+
$ twentythree category create --title <value> [--json] [-w <value>] [--description <value>] [--hidden]
|
|
15
|
+
|
|
16
|
+
FLAGS
|
|
17
|
+
--description=<value> Description for the new category
|
|
18
|
+
--[no-]hidden Create as hidden category
|
|
19
|
+
--title=<value> (required) Title for the new category
|
|
20
|
+
|
|
21
|
+
GLOBAL FLAGS
|
|
22
|
+
-w, --workspace=<value> Workspace domain or display name to use for this invocation.
|
|
23
|
+
--json Format output as json.
|
|
24
|
+
|
|
25
|
+
DESCRIPTION
|
|
26
|
+
Create a new category
|
|
27
|
+
|
|
28
|
+
EXAMPLES
|
|
29
|
+
$ twentythree category create --title "My Category"
|
|
30
|
+
|
|
31
|
+
$ twentythree category create --title "My Category" --json
|
|
32
|
+
|
|
33
|
+
$ twentythree category create --title "Hidden Category" --hidden
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
_See code: [src/commands/category/create.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/category/create.ts)_
|