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