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,2030 @@
1
+ `twentythree webinar`
2
+ =====================
3
+
4
+ Manage webinars — create, list, update, delete, and more
5
+
6
+ * [`twentythree webinar`](#twentythree-webinar)
7
+ * [`twentythree webinar attachment delete ID`](#twentythree-webinar-attachment-delete-id)
8
+ * [`twentythree webinar attachment list ID`](#twentythree-webinar-attachment-list-id)
9
+ * [`twentythree webinar attachment set-hidden ID`](#twentythree-webinar-attachment-set-hidden-id)
10
+ * [`twentythree webinar attachment upload ID FILE`](#twentythree-webinar-attachment-upload-id-file)
11
+ * [`twentythree webinar clips ID`](#twentythree-webinar-clips-id)
12
+ * [`twentythree webinar create`](#twentythree-webinar-create)
13
+ * [`twentythree webinar delete ID`](#twentythree-webinar-delete-id)
14
+ * [`twentythree webinar highlights ID`](#twentythree-webinar-highlights-id)
15
+ * [`twentythree webinar list`](#twentythree-webinar-list)
16
+ * [`twentythree webinar list-formats`](#twentythree-webinar-list-formats)
17
+ * [`twentythree webinar log ID`](#twentythree-webinar-log-id)
18
+ * [`twentythree webinar mail add [ID]`](#twentythree-webinar-mail-add-id)
19
+ * [`twentythree webinar mail list [ID]`](#twentythree-webinar-mail-list-id)
20
+ * [`twentythree webinar mail preview ID`](#twentythree-webinar-mail-preview-id)
21
+ * [`twentythree webinar mail remove ID`](#twentythree-webinar-mail-remove-id)
22
+ * [`twentythree webinar mail send ID`](#twentythree-webinar-mail-send-id)
23
+ * [`twentythree webinar mail test ID`](#twentythree-webinar-mail-test-id)
24
+ * [`twentythree webinar mail update ID`](#twentythree-webinar-mail-update-id)
25
+ * [`twentythree webinar metrics ID`](#twentythree-webinar-metrics-id)
26
+ * [`twentythree webinar queued-video add ID`](#twentythree-webinar-queued-video-add-id)
27
+ * [`twentythree webinar queued-video remove ID`](#twentythree-webinar-queued-video-remove-id)
28
+ * [`twentythree webinar recording split ID`](#twentythree-webinar-recording-split-id)
29
+ * [`twentythree webinar recording start ID`](#twentythree-webinar-recording-start-id)
30
+ * [`twentythree webinar recording status ID`](#twentythree-webinar-recording-status-id)
31
+ * [`twentythree webinar recording stop ID`](#twentythree-webinar-recording-stop-id)
32
+ * [`twentythree webinar repeat ID`](#twentythree-webinar-repeat-id)
33
+ * [`twentythree webinar room connect ID`](#twentythree-webinar-room-connect-id)
34
+ * [`twentythree webinar room info ID`](#twentythree-webinar-room-info-id)
35
+ * [`twentythree webinar room send-recording ID`](#twentythree-webinar-room-send-recording-id)
36
+ * [`twentythree webinar room themes`](#twentythree-webinar-room-themes)
37
+ * [`twentythree webinar section add ID`](#twentythree-webinar-section-add-id)
38
+ * [`twentythree webinar section list ID`](#twentythree-webinar-section-list-id)
39
+ * [`twentythree webinar section remove WEBINARID ID`](#twentythree-webinar-section-remove-webinarid-id)
40
+ * [`twentythree webinar section update WEBINARID ID`](#twentythree-webinar-section-update-webinarid-id)
41
+ * [`twentythree webinar series apply-recurrence ID`](#twentythree-webinar-series-apply-recurrence-id)
42
+ * [`twentythree webinar series cancel ID`](#twentythree-webinar-series-cancel-id)
43
+ * [`twentythree webinar series create`](#twentythree-webinar-series-create)
44
+ * [`twentythree webinar series delete ID`](#twentythree-webinar-series-delete-id)
45
+ * [`twentythree webinar series list`](#twentythree-webinar-series-list)
46
+ * [`twentythree webinar series mapped-objects ID`](#twentythree-webinar-series-mapped-objects-id)
47
+ * [`twentythree webinar series metrics ID`](#twentythree-webinar-series-metrics-id)
48
+ * [`twentythree webinar series recurrences ID`](#twentythree-webinar-series-recurrences-id)
49
+ * [`twentythree webinar series set-ondemand ID`](#twentythree-webinar-series-set-ondemand-id)
50
+ * [`twentythree webinar series skip-recurrence ID`](#twentythree-webinar-series-skip-recurrence-id)
51
+ * [`twentythree webinar series update ID`](#twentythree-webinar-series-update-id)
52
+ * [`twentythree webinar series upload-thumbnail ID FILE`](#twentythree-webinar-series-upload-thumbnail-id-file)
53
+ * [`twentythree webinar speaker add ID`](#twentythree-webinar-speaker-add-id)
54
+ * [`twentythree webinar speaker add-from-speaker ID`](#twentythree-webinar-speaker-add-from-speaker-id)
55
+ * [`twentythree webinar speaker add-from-user ID`](#twentythree-webinar-speaker-add-from-user-id)
56
+ * [`twentythree webinar speaker cancel-guest-request WEBINARID ID`](#twentythree-webinar-speaker-cancel-guest-request-webinarid-id)
57
+ * [`twentythree webinar speaker connection-types ID`](#twentythree-webinar-speaker-connection-types-id)
58
+ * [`twentythree webinar speaker library`](#twentythree-webinar-speaker-library)
59
+ * [`twentythree webinar speaker list ID`](#twentythree-webinar-speaker-list-id)
60
+ * [`twentythree webinar speaker remove WEBINARID ID`](#twentythree-webinar-speaker-remove-webinarid-id)
61
+ * [`twentythree webinar speaker remove-avatar WEBINARID ID`](#twentythree-webinar-speaker-remove-avatar-webinarid-id)
62
+ * [`twentythree webinar speaker request-guest WEBINARID ID`](#twentythree-webinar-speaker-request-guest-webinarid-id)
63
+ * [`twentythree webinar speaker send-invitation WEBINARID ID`](#twentythree-webinar-speaker-send-invitation-webinarid-id)
64
+ * [`twentythree webinar speaker set-avatar WEBINARID ID FILE`](#twentythree-webinar-speaker-set-avatar-webinarid-id-file)
65
+ * [`twentythree webinar speaker set-order ID`](#twentythree-webinar-speaker-set-order-id)
66
+ * [`twentythree webinar speaker update WEBINARID ID`](#twentythree-webinar-speaker-update-webinarid-id)
67
+ * [`twentythree webinar transcription connect ID`](#twentythree-webinar-transcription-connect-id)
68
+ * [`twentythree webinar transcription list ID`](#twentythree-webinar-transcription-list-id)
69
+ * [`twentythree webinar transcription locales ID`](#twentythree-webinar-transcription-locales-id)
70
+ * [`twentythree webinar transcription transcriptionlist`](#twentythree-webinar-transcription-transcriptionlist)
71
+ * [`twentythree webinar update ID`](#twentythree-webinar-update-id)
72
+ * [`twentythree webinar upload-image ID FILE`](#twentythree-webinar-upload-image-id-file)
73
+
74
+ ## `twentythree webinar`
75
+
76
+ Manage webinars — create, list, update, delete, and more
77
+
78
+ ```
79
+ USAGE
80
+ $ twentythree webinar
81
+
82
+ DESCRIPTION
83
+ Manage webinars — create, list, update, delete, and more
84
+ ```
85
+
86
+ _See code: [src/commands/webinar/index.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/index.ts)_
87
+
88
+ ## `twentythree webinar attachment delete ID`
89
+
90
+ Delete an attachment from a webinar
91
+
92
+ ```
93
+ USAGE
94
+ $ twentythree webinar attachment delete ID [--json] [-w <value>] [--filename <value>]
95
+
96
+ ARGUMENTS
97
+ ID Webinar ID
98
+
99
+ FLAGS
100
+ --filename=<value> Filename of the attachment to delete
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
+ Delete an attachment from a webinar
108
+
109
+ EXAMPLES
110
+ $ twentythree webinar attachment delete 12345 --filename slides.pdf
111
+
112
+ $ twentythree webinar attachment delete 12345 --filename handout.pdf --json
113
+ ```
114
+
115
+ _See code: [src/commands/webinar/attachment/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/attachment/delete.ts)_
116
+
117
+ ## `twentythree webinar attachment list ID`
118
+
119
+ List attachments for a webinar
120
+
121
+ ```
122
+ USAGE
123
+ $ twentythree webinar attachment list ID [--json] [-w <value>] [--token <value>] [--include-hidden]
124
+
125
+ ARGUMENTS
126
+ ID Webinar ID
127
+
128
+ FLAGS
129
+ --[no-]include-hidden Include hidden attachments
130
+ --token=<value> Webinar token (auto-looked up if omitted)
131
+
132
+ GLOBAL FLAGS
133
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
134
+ --json Format output as json.
135
+
136
+ DESCRIPTION
137
+ List attachments for a webinar
138
+
139
+ EXAMPLES
140
+ $ twentythree webinar attachment list 12345
141
+
142
+ $ twentythree webinar attachment list 12345 --json
143
+
144
+ $ twentythree webinar attachment list 12345 --include-hidden
145
+ ```
146
+
147
+ _See code: [src/commands/webinar/attachment/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/attachment/list.ts)_
148
+
149
+ ## `twentythree webinar attachment set-hidden ID`
150
+
151
+ Show or hide a webinar attachment
152
+
153
+ ```
154
+ USAGE
155
+ $ twentythree webinar attachment set-hidden ID --hidden [--json] [-w <value>] [--filename <value>]
156
+
157
+ ARGUMENTS
158
+ ID Webinar ID
159
+
160
+ FLAGS
161
+ --filename=<value> Filename of the attachment
162
+ --[no-]hidden (required) Set hidden (--hidden) or visible (--no-hidden)
163
+
164
+ GLOBAL FLAGS
165
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
166
+ --json Format output as json.
167
+
168
+ DESCRIPTION
169
+ Show or hide a webinar attachment
170
+
171
+ EXAMPLES
172
+ $ twentythree webinar attachment set-hidden 12345 --filename slides.pdf --hidden
173
+
174
+ $ twentythree webinar attachment set-hidden 12345 --filename slides.pdf --no-hidden
175
+
176
+ $ twentythree webinar attachment set-hidden 12345 --filename slides.pdf --hidden --json
177
+ ```
178
+
179
+ _See code: [src/commands/webinar/attachment/set-hidden.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/attachment/set-hidden.ts)_
180
+
181
+ ## `twentythree webinar attachment upload ID FILE`
182
+
183
+ Upload an attachment to a webinar
184
+
185
+ ```
186
+ USAGE
187
+ $ twentythree webinar attachment upload ID FILE [--json] [-w <value>] [--chunk-size <value>] [--concurrency <value>]
188
+ [--hidden]
189
+
190
+ ARGUMENTS
191
+ ID Webinar ID
192
+ FILE Path to file to upload
193
+
194
+ FLAGS
195
+ --chunk-size=<value> [default: 5242880] Chunk size in bytes (default: 5242880)
196
+ --concurrency=<value> [default: 5] Number of chunks to upload in parallel (default: 5)
197
+ --[no-]hidden Upload attachment as hidden
198
+
199
+ GLOBAL FLAGS
200
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
201
+ --json Format output as json.
202
+
203
+ DESCRIPTION
204
+ Upload an attachment to a webinar
205
+
206
+ EXAMPLES
207
+ $ twentythree webinar attachment upload 12345 ./slides.pdf
208
+
209
+ $ twentythree webinar attachment upload 12345 ./handout.pdf --hidden
210
+ ```
211
+
212
+ _See code: [src/commands/webinar/attachment/upload.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/attachment/upload.ts)_
213
+
214
+ ## `twentythree webinar clips ID`
215
+
216
+ List recording clips from a webinar
217
+
218
+ ```
219
+ USAGE
220
+ $ twentythree webinar clips ID [--json] [-w <value>]
221
+
222
+ ARGUMENTS
223
+ ID Webinar ID
224
+
225
+ GLOBAL FLAGS
226
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
227
+ --json Format output as json.
228
+
229
+ DESCRIPTION
230
+ List recording clips from a webinar
231
+
232
+ EXAMPLES
233
+ $ twentythree webinar clips 12345
234
+
235
+ $ twentythree webinar clips 12345 --json
236
+ ```
237
+
238
+ _See code: [src/commands/webinar/clips.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/clips.ts)_
239
+
240
+ ## `twentythree webinar create`
241
+
242
+ Create a new webinar
243
+
244
+ ```
245
+ USAGE
246
+ $ twentythree webinar create --title <value> [--json] [-w <value>] [--description <value>] [--status <value>]
247
+ [--live-date <value>] [--draft] [--publish]
248
+
249
+ FLAGS
250
+ --description=<value> Description for the webinar
251
+ --[no-]draft Set as draft
252
+ --live-date=<value> Schedule date/time (ISO 8601)
253
+ --[no-]publish Publish the webinar
254
+ --status=<value> Webinar status: upcoming, live, or previous
255
+ --title=<value> (required) Title for the new webinar
256
+
257
+ GLOBAL FLAGS
258
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
259
+ --json Format output as json.
260
+
261
+ DESCRIPTION
262
+ Create a new webinar
263
+
264
+ EXAMPLES
265
+ $ twentythree webinar create --title "My Webinar"
266
+
267
+ $ twentythree webinar create --title "My Webinar" --live-date "2024-12-01T14:00:00Z"
268
+
269
+ $ twentythree webinar create --title "My Webinar" --json
270
+ ```
271
+
272
+ _See code: [src/commands/webinar/create.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/create.ts)_
273
+
274
+ ## `twentythree webinar delete ID`
275
+
276
+ Delete a webinar from the active workspace
277
+
278
+ ```
279
+ USAGE
280
+ $ twentythree webinar delete ID [--json] [-w <value>]
281
+
282
+ ARGUMENTS
283
+ ID Webinar ID
284
+
285
+ GLOBAL FLAGS
286
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
287
+ --json Format output as json.
288
+
289
+ DESCRIPTION
290
+ Delete a webinar from the active workspace
291
+
292
+ EXAMPLES
293
+ $ twentythree webinar delete 12345
294
+
295
+ $ twentythree webinar delete 12345 --json
296
+ ```
297
+
298
+ _See code: [src/commands/webinar/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/delete.ts)_
299
+
300
+ ## `twentythree webinar highlights ID`
301
+
302
+ List highlights from a webinar
303
+
304
+ ```
305
+ USAGE
306
+ $ twentythree webinar highlights ID [--json] [-w <value>] [--video-id <value>]
307
+
308
+ ARGUMENTS
309
+ ID Webinar ID
310
+
311
+ FLAGS
312
+ --video-id=<value> Scope to specific recording by video ID
313
+
314
+ GLOBAL FLAGS
315
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
316
+ --json Format output as json.
317
+
318
+ DESCRIPTION
319
+ List highlights from a webinar
320
+
321
+ EXAMPLES
322
+ $ twentythree webinar highlights 12345
323
+
324
+ $ twentythree webinar highlights 12345 --video-id 67890
325
+
326
+ $ twentythree webinar highlights 12345 --json
327
+ ```
328
+
329
+ _See code: [src/commands/webinar/highlights.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/highlights.ts)_
330
+
331
+ ## `twentythree webinar list`
332
+
333
+ List webinars in the active workspace
334
+
335
+ ```
336
+ USAGE
337
+ $ twentythree webinar list [--json] [-w <value>] [--limit <value>] [--all] [--include-private] [--status
338
+ <value>] [--search <value>]
339
+
340
+ FLAGS
341
+ --all Fetch all webinars across all pages (overrides --limit)
342
+ --[no-]include-private Include private webinars in the results
343
+ --limit=<value> [default: 20] Maximum number of webinars to return (default: 20)
344
+ --search=<value> Search webinars by keyword
345
+ --status=<value> Filter by status: upcoming, live, or previous
346
+
347
+ GLOBAL FLAGS
348
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
349
+ --json Format output as json.
350
+
351
+ DESCRIPTION
352
+ List webinars in the active workspace
353
+
354
+ EXAMPLES
355
+ $ twentythree webinar list
356
+
357
+ $ twentythree webinar list --limit 50
358
+
359
+ $ twentythree webinar list --all
360
+
361
+ $ twentythree webinar list --status upcoming --json
362
+ ```
363
+
364
+ _See code: [src/commands/webinar/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/list.ts)_
365
+
366
+ ## `twentythree webinar list-formats`
367
+
368
+ List available webinar formats
369
+
370
+ ```
371
+ USAGE
372
+ $ twentythree webinar list-formats [--json] [-w <value>]
373
+
374
+ GLOBAL FLAGS
375
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
376
+ --json Format output as json.
377
+
378
+ DESCRIPTION
379
+ List available webinar formats
380
+
381
+ EXAMPLES
382
+ $ twentythree webinar list-formats
383
+
384
+ $ twentythree webinar list-formats --json
385
+ ```
386
+
387
+ _See code: [src/commands/webinar/list-formats.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/list-formats.ts)_
388
+
389
+ ## `twentythree webinar log ID`
390
+
391
+ Retrieve the event log for a webinar
392
+
393
+ ```
394
+ USAGE
395
+ $ twentythree webinar log ID [--json] [-w <value>]
396
+
397
+ ARGUMENTS
398
+ ID Webinar ID
399
+
400
+ GLOBAL FLAGS
401
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
402
+ --json Format output as json.
403
+
404
+ DESCRIPTION
405
+ Retrieve the event log for a webinar
406
+
407
+ EXAMPLES
408
+ $ twentythree webinar log 12345
409
+
410
+ $ twentythree webinar log 12345 --json
411
+ ```
412
+
413
+ _See code: [src/commands/webinar/log.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/log.ts)_
414
+
415
+ ## `twentythree webinar mail add [ID]`
416
+
417
+ Add an email to a webinar
418
+
419
+ ```
420
+ USAGE
421
+ $ twentythree webinar mail add [ID] [--json] [-w <value>] [--series-id <value>] [--subject <value>] [--message
422
+ <value>]
423
+
424
+ ARGUMENTS
425
+ [ID] Webinar ID (omit when using --series-id)
426
+
427
+ FLAGS
428
+ --message=<value> Email message body
429
+ --series-id=<value> Series ID — add mail to a series instead of a webinar
430
+ --subject=<value> Email subject
431
+
432
+ GLOBAL FLAGS
433
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
434
+ --json Format output as json.
435
+
436
+ DESCRIPTION
437
+ Add an email to a webinar
438
+
439
+ EXAMPLES
440
+ $ twentythree webinar mail add 12345 --subject "Reminder" --message "Join us tomorrow!"
441
+
442
+ $ twentythree webinar mail add --series-id 67890 --subject "Reminder"
443
+
444
+ $ twentythree webinar mail add 12345 --subject "Reminder" --message "Join us!" --json
445
+ ```
446
+
447
+ _See code: [src/commands/webinar/mail/add.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/mail/add.ts)_
448
+
449
+ ## `twentythree webinar mail list [ID]`
450
+
451
+ List emails for a webinar
452
+
453
+ ```
454
+ USAGE
455
+ $ twentythree webinar mail list [ID] [--json] [-w <value>] [--series-id <value>]
456
+
457
+ ARGUMENTS
458
+ [ID] Webinar ID (omit when using --series-id)
459
+
460
+ FLAGS
461
+ --series-id=<value> Series ID — list mails for a series instead of a webinar
462
+
463
+ GLOBAL FLAGS
464
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
465
+ --json Format output as json.
466
+
467
+ DESCRIPTION
468
+ List emails for a webinar
469
+
470
+ EXAMPLES
471
+ $ twentythree webinar mail list 12345
472
+
473
+ $ twentythree webinar mail list --series-id 67890
474
+
475
+ $ twentythree webinar mail list 12345 --json
476
+ ```
477
+
478
+ _See code: [src/commands/webinar/mail/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/mail/list.ts)_
479
+
480
+ ## `twentythree webinar mail preview ID`
481
+
482
+ Preview a webinar email as raw HTML
483
+
484
+ ```
485
+ USAGE
486
+ $ twentythree webinar mail preview ID [--json] [-w <value>] [--webinar-id <value> | --series-id <value>]
487
+
488
+ ARGUMENTS
489
+ ID Mail ID
490
+
491
+ FLAGS
492
+ --series-id=<value> Series ID (mutually exclusive with --webinar-id)
493
+ --webinar-id=<value> Webinar ID (mutually exclusive with --series-id)
494
+
495
+ GLOBAL FLAGS
496
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
497
+ --json Format output as json.
498
+
499
+ DESCRIPTION
500
+ Preview a webinar email as raw HTML
501
+
502
+ EXAMPLES
503
+ $ twentythree webinar mail preview 555 --webinar-id 12345
504
+
505
+ $ twentythree webinar mail preview 555 --series-id 67890 > preview.html
506
+
507
+ $ twentythree webinar mail preview 555 --webinar-id 12345 --json
508
+ ```
509
+
510
+ _See code: [src/commands/webinar/mail/preview.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/mail/preview.ts)_
511
+
512
+ ## `twentythree webinar mail remove ID`
513
+
514
+ Remove an email from a webinar
515
+
516
+ ```
517
+ USAGE
518
+ $ twentythree webinar mail remove ID [--json] [-w <value>] [--webinar-id <value> | --series-id <value>]
519
+
520
+ ARGUMENTS
521
+ ID Mail ID
522
+
523
+ FLAGS
524
+ --series-id=<value> Series ID (mutually exclusive with --webinar-id)
525
+ --webinar-id=<value> Webinar ID (mutually exclusive with --series-id)
526
+
527
+ GLOBAL FLAGS
528
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
529
+ --json Format output as json.
530
+
531
+ DESCRIPTION
532
+ Remove an email from a webinar
533
+
534
+ EXAMPLES
535
+ $ twentythree webinar mail remove 555 --webinar-id 12345
536
+
537
+ $ twentythree webinar mail remove 555 --series-id 67890 --json
538
+ ```
539
+
540
+ _See code: [src/commands/webinar/mail/remove.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/mail/remove.ts)_
541
+
542
+ ## `twentythree webinar mail send ID`
543
+
544
+ Send a webinar email
545
+
546
+ ```
547
+ USAGE
548
+ $ twentythree webinar mail send ID [--json] [-w <value>] [--webinar-id <value> | --series-id <value>]
549
+
550
+ ARGUMENTS
551
+ ID Mail ID
552
+
553
+ FLAGS
554
+ --series-id=<value> Series ID (mutually exclusive with --webinar-id)
555
+ --webinar-id=<value> Webinar ID (mutually exclusive with --series-id)
556
+
557
+ GLOBAL FLAGS
558
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
559
+ --json Format output as json.
560
+
561
+ DESCRIPTION
562
+ Send a webinar email
563
+
564
+ EXAMPLES
565
+ $ twentythree webinar mail send 555 --webinar-id 12345
566
+
567
+ $ twentythree webinar mail send 555 --series-id 67890 --json
568
+ ```
569
+
570
+ _See code: [src/commands/webinar/mail/send.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/mail/send.ts)_
571
+
572
+ ## `twentythree webinar mail test ID`
573
+
574
+ Send a test email
575
+
576
+ ```
577
+ USAGE
578
+ $ twentythree webinar mail test ID [--json] [-w <value>] [--webinar-id <value> | --series-id <value>] [--email
579
+ <value>]
580
+
581
+ ARGUMENTS
582
+ ID Mail ID
583
+
584
+ FLAGS
585
+ --email=<value> Recipient email for test
586
+ --series-id=<value> Series ID (mutually exclusive with --webinar-id)
587
+ --webinar-id=<value> Webinar ID (mutually exclusive with --series-id)
588
+
589
+ GLOBAL FLAGS
590
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
591
+ --json Format output as json.
592
+
593
+ DESCRIPTION
594
+ Send a test email
595
+
596
+ EXAMPLES
597
+ $ twentythree webinar mail test 555 --webinar-id 12345 --email me@example.com
598
+
599
+ $ twentythree webinar mail test 555 --series-id 67890
600
+
601
+ $ twentythree webinar mail test 555 --webinar-id 12345 --email me@example.com --json
602
+ ```
603
+
604
+ _See code: [src/commands/webinar/mail/test.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/mail/test.ts)_
605
+
606
+ ## `twentythree webinar mail update ID`
607
+
608
+ Update a webinar email
609
+
610
+ ```
611
+ USAGE
612
+ $ twentythree webinar mail update ID [--json] [-w <value>] [--webinar-id <value> | --series-id <value>] [--subject
613
+ <value>] [--message <value>]
614
+
615
+ ARGUMENTS
616
+ ID Mail ID
617
+
618
+ FLAGS
619
+ --message=<value> Email message body
620
+ --series-id=<value> Series ID (mutually exclusive with --webinar-id)
621
+ --subject=<value> Email subject
622
+ --webinar-id=<value> Webinar ID (mutually exclusive with --series-id)
623
+
624
+ GLOBAL FLAGS
625
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
626
+ --json Format output as json.
627
+
628
+ DESCRIPTION
629
+ Update a webinar email
630
+
631
+ EXAMPLES
632
+ $ twentythree webinar mail update 555 --webinar-id 12345 --subject "Updated Subject"
633
+
634
+ $ twentythree webinar mail update 555 --series-id 67890 --message "New content"
635
+
636
+ $ twentythree webinar mail update 555 --webinar-id 12345 --subject "Updated" --json
637
+ ```
638
+
639
+ _See code: [src/commands/webinar/mail/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/mail/update.ts)_
640
+
641
+ ## `twentythree webinar metrics ID`
642
+
643
+ Retrieve metrics for a webinar
644
+
645
+ ```
646
+ USAGE
647
+ $ twentythree webinar metrics ID [--json] [-w <value>]
648
+
649
+ ARGUMENTS
650
+ ID Webinar ID
651
+
652
+ GLOBAL FLAGS
653
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
654
+ --json Format output as json.
655
+
656
+ DESCRIPTION
657
+ Retrieve metrics for a webinar
658
+
659
+ EXAMPLES
660
+ $ twentythree webinar metrics 12345
661
+
662
+ $ twentythree webinar metrics 12345 --json
663
+ ```
664
+
665
+ _See code: [src/commands/webinar/metrics.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/metrics.ts)_
666
+
667
+ ## `twentythree webinar queued-video add ID`
668
+
669
+ Add a queued video to a webinar
670
+
671
+ ```
672
+ USAGE
673
+ $ twentythree webinar queued-video add ID [--json] [-w <value>] [--video-id <value>]
674
+
675
+ ARGUMENTS
676
+ ID Webinar ID
677
+
678
+ FLAGS
679
+ --video-id=<value> Video ID to queue
680
+
681
+ GLOBAL FLAGS
682
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
683
+ --json Format output as json.
684
+
685
+ DESCRIPTION
686
+ Add a queued video to a webinar
687
+
688
+ EXAMPLES
689
+ $ twentythree webinar queued-video add 12345 --video-id 67890
690
+
691
+ $ twentythree webinar queued-video add 12345 --video-id 67890 --json
692
+ ```
693
+
694
+ _See code: [src/commands/webinar/queued-video/add.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/queued-video/add.ts)_
695
+
696
+ ## `twentythree webinar queued-video remove ID`
697
+
698
+ Remove a queued video from a webinar
699
+
700
+ ```
701
+ USAGE
702
+ $ twentythree webinar queued-video remove ID [--json] [-w <value>] [--video-id <value>]
703
+
704
+ ARGUMENTS
705
+ ID Webinar ID
706
+
707
+ FLAGS
708
+ --video-id=<value> Video ID to remove from queue
709
+
710
+ GLOBAL FLAGS
711
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
712
+ --json Format output as json.
713
+
714
+ DESCRIPTION
715
+ Remove a queued video from a webinar
716
+
717
+ EXAMPLES
718
+ $ twentythree webinar queued-video remove 12345 --video-id 67890
719
+
720
+ $ twentythree webinar queued-video remove 12345 --video-id 67890 --json
721
+ ```
722
+
723
+ _See code: [src/commands/webinar/queued-video/remove.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/queued-video/remove.ts)_
724
+
725
+ ## `twentythree webinar recording split ID`
726
+
727
+ Split the current recording into a new segment
728
+
729
+ ```
730
+ USAGE
731
+ $ twentythree webinar recording split ID [--json] [-w <value>]
732
+
733
+ ARGUMENTS
734
+ ID Webinar ID
735
+
736
+ GLOBAL FLAGS
737
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
738
+ --json Format output as json.
739
+
740
+ DESCRIPTION
741
+ Split the current recording into a new segment
742
+
743
+ EXAMPLES
744
+ $ twentythree webinar recording split 12345
745
+
746
+ $ twentythree webinar recording split 12345 --json
747
+ ```
748
+
749
+ _See code: [src/commands/webinar/recording/split.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/recording/split.ts)_
750
+
751
+ ## `twentythree webinar recording start ID`
752
+
753
+ Start recording a webinar
754
+
755
+ ```
756
+ USAGE
757
+ $ twentythree webinar recording start ID [--json] [-w <value>]
758
+
759
+ ARGUMENTS
760
+ ID Webinar ID
761
+
762
+ GLOBAL FLAGS
763
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
764
+ --json Format output as json.
765
+
766
+ DESCRIPTION
767
+ Start recording a webinar
768
+
769
+ EXAMPLES
770
+ $ twentythree webinar recording start 12345
771
+
772
+ $ twentythree webinar recording start 12345 --json
773
+ ```
774
+
775
+ _See code: [src/commands/webinar/recording/start.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/recording/start.ts)_
776
+
777
+ ## `twentythree webinar recording status ID`
778
+
779
+ Get recording status for a webinar
780
+
781
+ ```
782
+ USAGE
783
+ $ twentythree webinar recording status ID [--json] [-w <value>]
784
+
785
+ ARGUMENTS
786
+ ID Webinar ID
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 recording status for a webinar
794
+
795
+ EXAMPLES
796
+ $ twentythree webinar recording status 12345
797
+
798
+ $ twentythree webinar recording status 12345 --json
799
+ ```
800
+
801
+ _See code: [src/commands/webinar/recording/status.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/recording/status.ts)_
802
+
803
+ ## `twentythree webinar recording stop ID`
804
+
805
+ Stop recording a webinar
806
+
807
+ ```
808
+ USAGE
809
+ $ twentythree webinar recording stop ID [--json] [-w <value>]
810
+
811
+ ARGUMENTS
812
+ ID Webinar ID
813
+
814
+ GLOBAL FLAGS
815
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
816
+ --json Format output as json.
817
+
818
+ DESCRIPTION
819
+ Stop recording a webinar
820
+
821
+ EXAMPLES
822
+ $ twentythree webinar recording stop 12345
823
+
824
+ $ twentythree webinar recording stop 12345 --json
825
+ ```
826
+
827
+ _See code: [src/commands/webinar/recording/stop.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/recording/stop.ts)_
828
+
829
+ ## `twentythree webinar repeat ID`
830
+
831
+ Duplicate a webinar and schedule the copy at a new date/time
832
+
833
+ ```
834
+ USAGE
835
+ $ twentythree webinar repeat ID --date <value> [--json] [-w <value>]
836
+
837
+ ARGUMENTS
838
+ ID Webinar ID
839
+
840
+ FLAGS
841
+ --date=<value> (required) Schedule date/time for the new webinar (ISO 8601)
842
+
843
+ GLOBAL FLAGS
844
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
845
+ --json Format output as json.
846
+
847
+ DESCRIPTION
848
+ Duplicate a webinar and schedule the copy at a new date/time
849
+
850
+ EXAMPLES
851
+ $ twentythree webinar repeat 12345 --date "2024-12-01T14:00:00Z"
852
+
853
+ $ twentythree webinar repeat 12345 --date "2024-12-01T14:00:00Z" --json
854
+ ```
855
+
856
+ _See code: [src/commands/webinar/repeat.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/repeat.ts)_
857
+
858
+ ## `twentythree webinar room connect ID`
859
+
860
+ Get connection info for a webinar room
861
+
862
+ ```
863
+ USAGE
864
+ $ twentythree webinar room connect ID [--json] [-w <value>]
865
+
866
+ ARGUMENTS
867
+ ID Webinar ID
868
+
869
+ GLOBAL FLAGS
870
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
871
+ --json Format output as json.
872
+
873
+ DESCRIPTION
874
+ Get connection info for a webinar room
875
+
876
+ EXAMPLES
877
+ $ twentythree webinar room connect 12345
878
+
879
+ $ twentythree webinar room connect 12345 --json
880
+ ```
881
+
882
+ _See code: [src/commands/webinar/room/connect.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/room/connect.ts)_
883
+
884
+ ## `twentythree webinar room info ID`
885
+
886
+ Get room information for a webinar
887
+
888
+ ```
889
+ USAGE
890
+ $ twentythree webinar room info ID [--json] [-w <value>]
891
+
892
+ ARGUMENTS
893
+ ID Webinar ID
894
+
895
+ GLOBAL FLAGS
896
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
897
+ --json Format output as json.
898
+
899
+ DESCRIPTION
900
+ Get room information for a webinar
901
+
902
+ EXAMPLES
903
+ $ twentythree webinar room info 12345
904
+
905
+ $ twentythree webinar room info 12345 --json
906
+ ```
907
+
908
+ _See code: [src/commands/webinar/room/info.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/room/info.ts)_
909
+
910
+ ## `twentythree webinar room send-recording ID`
911
+
912
+ Send a recording from the webinar room
913
+
914
+ ```
915
+ USAGE
916
+ $ twentythree webinar room send-recording ID [--json] [-w <value>]
917
+
918
+ ARGUMENTS
919
+ ID Webinar ID
920
+
921
+ GLOBAL FLAGS
922
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
923
+ --json Format output as json.
924
+
925
+ DESCRIPTION
926
+ Send a recording from the webinar room
927
+
928
+ EXAMPLES
929
+ $ twentythree webinar room send-recording 12345
930
+
931
+ $ twentythree webinar room send-recording 12345 --json
932
+ ```
933
+
934
+ _See code: [src/commands/webinar/room/send-recording.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/room/send-recording.ts)_
935
+
936
+ ## `twentythree webinar room themes`
937
+
938
+ List available room themes
939
+
940
+ ```
941
+ USAGE
942
+ $ twentythree webinar room themes [--json] [-w <value>]
943
+
944
+ GLOBAL FLAGS
945
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
946
+ --json Format output as json.
947
+
948
+ DESCRIPTION
949
+ List available room themes
950
+
951
+ EXAMPLES
952
+ $ twentythree webinar room themes
953
+
954
+ $ twentythree webinar room themes --json
955
+ ```
956
+
957
+ _See code: [src/commands/webinar/room/themes.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/room/themes.ts)_
958
+
959
+ ## `twentythree webinar section add ID`
960
+
961
+ Add an agenda section to a webinar
962
+
963
+ ```
964
+ USAGE
965
+ $ twentythree webinar section add ID [--json] [-w <value>] [--title <value>] [--description <value>] [--start-time
966
+ <value>]
967
+
968
+ ARGUMENTS
969
+ ID Webinar ID
970
+
971
+ FLAGS
972
+ --description=<value> Section description
973
+ --start-time=<value> Start time in seconds
974
+ --title=<value> Section title
975
+
976
+ GLOBAL FLAGS
977
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
978
+ --json Format output as json.
979
+
980
+ DESCRIPTION
981
+ Add an agenda section to a webinar
982
+
983
+ EXAMPLES
984
+ $ twentythree webinar section add 12345 --title "Introduction"
985
+
986
+ $ twentythree webinar section add 12345 --title "Q&A" --start-time 3600
987
+
988
+ $ twentythree webinar section add 12345 --title "Welcome" --description "Opening remarks" --json
989
+ ```
990
+
991
+ _See code: [src/commands/webinar/section/add.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/section/add.ts)_
992
+
993
+ ## `twentythree webinar section list ID`
994
+
995
+ List agenda sections for a webinar
996
+
997
+ ```
998
+ USAGE
999
+ $ twentythree webinar section list ID [--json] [-w <value>] [--token <value>]
1000
+
1001
+ ARGUMENTS
1002
+ ID Webinar ID
1003
+
1004
+ FLAGS
1005
+ --token=<value> Webinar token (auto-looked up if omitted)
1006
+
1007
+ GLOBAL FLAGS
1008
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1009
+ --json Format output as json.
1010
+
1011
+ DESCRIPTION
1012
+ List agenda sections for a webinar
1013
+
1014
+ EXAMPLES
1015
+ $ twentythree webinar section list 12345
1016
+
1017
+ $ twentythree webinar section list 12345 --json
1018
+ ```
1019
+
1020
+ _See code: [src/commands/webinar/section/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/section/list.ts)_
1021
+
1022
+ ## `twentythree webinar section remove WEBINARID ID`
1023
+
1024
+ Remove an agenda section from a webinar
1025
+
1026
+ ```
1027
+ USAGE
1028
+ $ twentythree webinar section remove WEBINARID ID [--json] [-w <value>]
1029
+
1030
+ ARGUMENTS
1031
+ WEBINARID Webinar ID
1032
+ ID Section ID
1033
+
1034
+ GLOBAL FLAGS
1035
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1036
+ --json Format output as json.
1037
+
1038
+ DESCRIPTION
1039
+ Remove an agenda section from a webinar
1040
+
1041
+ EXAMPLES
1042
+ $ twentythree webinar section remove 12345 99
1043
+
1044
+ $ twentythree webinar section remove 12345 99 --json
1045
+ ```
1046
+
1047
+ _See code: [src/commands/webinar/section/remove.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/section/remove.ts)_
1048
+
1049
+ ## `twentythree webinar section update WEBINARID ID`
1050
+
1051
+ Update an agenda section
1052
+
1053
+ ```
1054
+ USAGE
1055
+ $ twentythree webinar section update WEBINARID ID [--json] [-w <value>] [--title <value>] [--description <value>]
1056
+ [--start-time <value>]
1057
+
1058
+ ARGUMENTS
1059
+ WEBINARID Webinar ID
1060
+ ID Section ID
1061
+
1062
+ FLAGS
1063
+ --description=<value> New section description
1064
+ --start-time=<value> New start time in seconds
1065
+ --title=<value> New section title
1066
+
1067
+ GLOBAL FLAGS
1068
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1069
+ --json Format output as json.
1070
+
1071
+ DESCRIPTION
1072
+ Update an agenda section
1073
+
1074
+ EXAMPLES
1075
+ $ twentythree webinar section update 12345 99 --title "Updated Title"
1076
+
1077
+ $ twentythree webinar section update 12345 99 --start-time 1800
1078
+
1079
+ $ twentythree webinar section update 12345 99 --title "Q&A" --description "Audience questions" --json
1080
+ ```
1081
+
1082
+ _See code: [src/commands/webinar/section/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/section/update.ts)_
1083
+
1084
+ ## `twentythree webinar series apply-recurrence ID`
1085
+
1086
+ Apply a recurrence to a webinar series
1087
+
1088
+ ```
1089
+ USAGE
1090
+ $ twentythree webinar series apply-recurrence ID [--json] [-w <value>] [--recurrence-id <value>]
1091
+
1092
+ ARGUMENTS
1093
+ ID Series ID
1094
+
1095
+ FLAGS
1096
+ --recurrence-id=<value> Recurrence ID
1097
+
1098
+ GLOBAL FLAGS
1099
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1100
+ --json Format output as json.
1101
+
1102
+ DESCRIPTION
1103
+ Apply a recurrence to a webinar series
1104
+
1105
+ EXAMPLES
1106
+ $ twentythree webinar series apply-recurrence 42 --recurrence-id 7
1107
+
1108
+ $ twentythree webinar series apply-recurrence 42 --recurrence-id 7 --json
1109
+ ```
1110
+
1111
+ _See code: [src/commands/webinar/series/apply-recurrence.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/apply-recurrence.ts)_
1112
+
1113
+ ## `twentythree webinar series cancel ID`
1114
+
1115
+ Cancel a webinar series
1116
+
1117
+ ```
1118
+ USAGE
1119
+ $ twentythree webinar series cancel ID [--json] [-w <value>] [--cancel-associations]
1120
+
1121
+ ARGUMENTS
1122
+ ID Series ID
1123
+
1124
+ FLAGS
1125
+ --[no-]cancel-associations Also cancel associated webinars
1126
+
1127
+ GLOBAL FLAGS
1128
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1129
+ --json Format output as json.
1130
+
1131
+ DESCRIPTION
1132
+ Cancel a webinar series
1133
+
1134
+ EXAMPLES
1135
+ $ twentythree webinar series cancel 42
1136
+
1137
+ $ twentythree webinar series cancel 42 --cancel-associations
1138
+
1139
+ $ twentythree webinar series cancel 42 --json
1140
+ ```
1141
+
1142
+ _See code: [src/commands/webinar/series/cancel.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/cancel.ts)_
1143
+
1144
+ ## `twentythree webinar series create`
1145
+
1146
+ Create a webinar series
1147
+
1148
+ ```
1149
+ USAGE
1150
+ $ twentythree webinar series create [--json] [-w <value>] [--name <value>] [--description <value>]
1151
+
1152
+ FLAGS
1153
+ --description=<value> Series description
1154
+ --name=<value> Series name
1155
+
1156
+ GLOBAL FLAGS
1157
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1158
+ --json Format output as json.
1159
+
1160
+ DESCRIPTION
1161
+ Create a webinar series
1162
+
1163
+ EXAMPLES
1164
+ $ twentythree webinar series create --name "My Series"
1165
+
1166
+ $ twentythree webinar series create --name "My Series" --description "Weekly sessions"
1167
+
1168
+ $ twentythree webinar series create --name "My Series" --json
1169
+ ```
1170
+
1171
+ _See code: [src/commands/webinar/series/create.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/create.ts)_
1172
+
1173
+ ## `twentythree webinar series delete ID`
1174
+
1175
+ Delete a webinar series
1176
+
1177
+ ```
1178
+ USAGE
1179
+ $ twentythree webinar series delete ID [--json] [-w <value>] [--delete-associations]
1180
+
1181
+ ARGUMENTS
1182
+ ID Series ID
1183
+
1184
+ FLAGS
1185
+ --[no-]delete-associations Also delete associated webinars
1186
+
1187
+ GLOBAL FLAGS
1188
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1189
+ --json Format output as json.
1190
+
1191
+ DESCRIPTION
1192
+ Delete a webinar series
1193
+
1194
+ EXAMPLES
1195
+ $ twentythree webinar series delete 42
1196
+
1197
+ $ twentythree webinar series delete 42 --delete-associations
1198
+
1199
+ $ twentythree webinar series delete 42 --json
1200
+ ```
1201
+
1202
+ _See code: [src/commands/webinar/series/delete.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/delete.ts)_
1203
+
1204
+ ## `twentythree webinar series list`
1205
+
1206
+ List webinar series
1207
+
1208
+ ```
1209
+ USAGE
1210
+ $ twentythree webinar series list [--json] [-w <value>]
1211
+
1212
+ GLOBAL FLAGS
1213
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1214
+ --json Format output as json.
1215
+
1216
+ DESCRIPTION
1217
+ List webinar series
1218
+
1219
+ EXAMPLES
1220
+ $ twentythree webinar series list
1221
+
1222
+ $ twentythree webinar series list --json
1223
+ ```
1224
+
1225
+ _See code: [src/commands/webinar/series/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/list.ts)_
1226
+
1227
+ ## `twentythree webinar series mapped-objects ID`
1228
+
1229
+ List mapped objects for a webinar series
1230
+
1231
+ ```
1232
+ USAGE
1233
+ $ twentythree webinar series mapped-objects ID [--json] [-w <value>]
1234
+
1235
+ ARGUMENTS
1236
+ ID Series ID
1237
+
1238
+ GLOBAL FLAGS
1239
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1240
+ --json Format output as json.
1241
+
1242
+ DESCRIPTION
1243
+ List mapped objects for a webinar series
1244
+
1245
+ EXAMPLES
1246
+ $ twentythree webinar series mapped-objects 42
1247
+
1248
+ $ twentythree webinar series mapped-objects 42 --json
1249
+ ```
1250
+
1251
+ _See code: [src/commands/webinar/series/mapped-objects.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/mapped-objects.ts)_
1252
+
1253
+ ## `twentythree webinar series metrics ID`
1254
+
1255
+ Get metrics for a webinar series
1256
+
1257
+ ```
1258
+ USAGE
1259
+ $ twentythree webinar series metrics ID [--json] [-w <value>]
1260
+
1261
+ ARGUMENTS
1262
+ ID Series ID
1263
+
1264
+ GLOBAL FLAGS
1265
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1266
+ --json Format output as json.
1267
+
1268
+ DESCRIPTION
1269
+ Get metrics for a webinar series
1270
+
1271
+ EXAMPLES
1272
+ $ twentythree webinar series metrics 42
1273
+
1274
+ $ twentythree webinar series metrics 42 --json
1275
+ ```
1276
+
1277
+ _See code: [src/commands/webinar/series/metrics.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/metrics.ts)_
1278
+
1279
+ ## `twentythree webinar series recurrences ID`
1280
+
1281
+ List recurrences for a webinar series
1282
+
1283
+ ```
1284
+ USAGE
1285
+ $ twentythree webinar series recurrences ID [--json] [-w <value>]
1286
+
1287
+ ARGUMENTS
1288
+ ID Series ID
1289
+
1290
+ GLOBAL FLAGS
1291
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1292
+ --json Format output as json.
1293
+
1294
+ DESCRIPTION
1295
+ List recurrences for a webinar series
1296
+
1297
+ EXAMPLES
1298
+ $ twentythree webinar series recurrences 42
1299
+
1300
+ $ twentythree webinar series recurrences 42 --json
1301
+ ```
1302
+
1303
+ _See code: [src/commands/webinar/series/recurrences.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/recurrences.ts)_
1304
+
1305
+ ## `twentythree webinar series set-ondemand ID`
1306
+
1307
+ Set a webinar series to on-demand
1308
+
1309
+ ```
1310
+ USAGE
1311
+ $ twentythree webinar series set-ondemand ID [--json] [-w <value>] [--update-associations]
1312
+
1313
+ ARGUMENTS
1314
+ ID Series ID
1315
+
1316
+ FLAGS
1317
+ --[no-]update-associations Also update associated webinars
1318
+
1319
+ GLOBAL FLAGS
1320
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1321
+ --json Format output as json.
1322
+
1323
+ DESCRIPTION
1324
+ Set a webinar series to on-demand
1325
+
1326
+ EXAMPLES
1327
+ $ twentythree webinar series set-ondemand 42
1328
+
1329
+ $ twentythree webinar series set-ondemand 42 --update-associations
1330
+
1331
+ $ twentythree webinar series set-ondemand 42 --json
1332
+ ```
1333
+
1334
+ _See code: [src/commands/webinar/series/set-ondemand.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/set-ondemand.ts)_
1335
+
1336
+ ## `twentythree webinar series skip-recurrence ID`
1337
+
1338
+ Skip or unskip a recurrence for a webinar series
1339
+
1340
+ ```
1341
+ USAGE
1342
+ $ twentythree webinar series skip-recurrence ID [--json] [-w <value>] [--recurrence-id <value>] [--skipped]
1343
+
1344
+ ARGUMENTS
1345
+ ID Series ID
1346
+
1347
+ FLAGS
1348
+ --recurrence-id=<value> Recurrence ID
1349
+ --[no-]skipped Set skipped (--skipped) or unskipped (--no-skipped)
1350
+
1351
+ GLOBAL FLAGS
1352
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1353
+ --json Format output as json.
1354
+
1355
+ DESCRIPTION
1356
+ Skip or unskip a recurrence for a webinar series
1357
+
1358
+ EXAMPLES
1359
+ $ twentythree webinar series skip-recurrence 42 --recurrence-id 7 --skipped
1360
+
1361
+ $ twentythree webinar series skip-recurrence 42 --recurrence-id 7 --no-skipped
1362
+
1363
+ $ twentythree webinar series skip-recurrence 42 --recurrence-id 7 --skipped --json
1364
+ ```
1365
+
1366
+ _See code: [src/commands/webinar/series/skip-recurrence.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/skip-recurrence.ts)_
1367
+
1368
+ ## `twentythree webinar series update ID`
1369
+
1370
+ Update a webinar series
1371
+
1372
+ ```
1373
+ USAGE
1374
+ $ twentythree webinar series update ID [--json] [-w <value>] [--name <value>] [--description <value>]
1375
+
1376
+ ARGUMENTS
1377
+ ID Series ID
1378
+
1379
+ FLAGS
1380
+ --description=<value> Series description
1381
+ --name=<value> Series name
1382
+
1383
+ GLOBAL FLAGS
1384
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1385
+ --json Format output as json.
1386
+
1387
+ DESCRIPTION
1388
+ Update a webinar series
1389
+
1390
+ EXAMPLES
1391
+ $ twentythree webinar series update 42 --name "Updated Series"
1392
+
1393
+ $ twentythree webinar series update 42 --description "New description"
1394
+
1395
+ $ twentythree webinar series update 42 --name "Updated" --json
1396
+ ```
1397
+
1398
+ _See code: [src/commands/webinar/series/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/update.ts)_
1399
+
1400
+ ## `twentythree webinar series upload-thumbnail ID FILE`
1401
+
1402
+ Upload a thumbnail for a webinar series
1403
+
1404
+ ```
1405
+ USAGE
1406
+ $ twentythree webinar series upload-thumbnail ID FILE [--json] [-w <value>] [--chunk-size <value>] [--concurrency
1407
+ <value>]
1408
+
1409
+ ARGUMENTS
1410
+ ID Series ID
1411
+ FILE Path to the image file to upload
1412
+
1413
+ FLAGS
1414
+ --chunk-size=<value> [default: 5242880] Chunk size in bytes (default: 5242880)
1415
+ --concurrency=<value> [default: 5] Number of chunks to upload in parallel (default: 5)
1416
+
1417
+ GLOBAL FLAGS
1418
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1419
+ --json Format output as json.
1420
+
1421
+ DESCRIPTION
1422
+ Upload a thumbnail for a webinar series
1423
+
1424
+ EXAMPLES
1425
+ $ twentythree webinar series upload-thumbnail 42 ./thumb.jpg
1426
+
1427
+ $ twentythree webinar series upload-thumbnail 42 ./thumbnail.png --json
1428
+ ```
1429
+
1430
+ _See code: [src/commands/webinar/series/upload-thumbnail.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/series/upload-thumbnail.ts)_
1431
+
1432
+ ## `twentythree webinar speaker add ID`
1433
+
1434
+ Add a speaker to a webinar
1435
+
1436
+ ```
1437
+ USAGE
1438
+ $ twentythree webinar speaker add ID [--json] [-w <value>] [--name <value>] [--email <value>] [--title <value>]
1439
+ [--description <value>]
1440
+
1441
+ ARGUMENTS
1442
+ ID Webinar ID
1443
+
1444
+ FLAGS
1445
+ --description=<value> Speaker bio or description
1446
+ --email=<value> Speaker email
1447
+ --name=<value> Speaker name
1448
+ --title=<value> Speaker title or job title
1449
+
1450
+ GLOBAL FLAGS
1451
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1452
+ --json Format output as json.
1453
+
1454
+ DESCRIPTION
1455
+ Add a speaker to a webinar
1456
+
1457
+ EXAMPLES
1458
+ $ twentythree webinar speaker add 12345 --name "Jane Doe" --email jane@example.com
1459
+
1460
+ $ twentythree webinar speaker add 12345
1461
+
1462
+ $ twentythree webinar speaker add 12345 --name "Jane Doe" --email jane@example.com --json
1463
+ ```
1464
+
1465
+ _See code: [src/commands/webinar/speaker/add.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/add.ts)_
1466
+
1467
+ ## `twentythree webinar speaker add-from-speaker ID`
1468
+
1469
+ Add a speaker from the workspace speaker library
1470
+
1471
+ ```
1472
+ USAGE
1473
+ $ twentythree webinar speaker add-from-speaker ID [--json] [-w <value>] [--speaker-id <value>]
1474
+
1475
+ ARGUMENTS
1476
+ ID Webinar ID
1477
+
1478
+ FLAGS
1479
+ --speaker-id=<value> Library speaker ID to add
1480
+
1481
+ GLOBAL FLAGS
1482
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1483
+ --json Format output as json.
1484
+
1485
+ DESCRIPTION
1486
+ Add a speaker from the workspace speaker library
1487
+
1488
+ EXAMPLES
1489
+ $ twentythree webinar speaker add-from-speaker 12345 --speaker-id 99
1490
+
1491
+ $ twentythree webinar speaker add-from-speaker 12345
1492
+
1493
+ $ twentythree webinar speaker add-from-speaker 12345 --speaker-id 99 --json
1494
+ ```
1495
+
1496
+ _See code: [src/commands/webinar/speaker/add-from-speaker.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/add-from-speaker.ts)_
1497
+
1498
+ ## `twentythree webinar speaker add-from-user ID`
1499
+
1500
+ Add a workspace user as a speaker on a webinar
1501
+
1502
+ ```
1503
+ USAGE
1504
+ $ twentythree webinar speaker add-from-user ID [--json] [-w <value>] [--user-id <value>]
1505
+
1506
+ ARGUMENTS
1507
+ ID Webinar ID
1508
+
1509
+ FLAGS
1510
+ --user-id=<value> User ID to add as speaker
1511
+
1512
+ GLOBAL FLAGS
1513
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1514
+ --json Format output as json.
1515
+
1516
+ DESCRIPTION
1517
+ Add a workspace user as a speaker on a webinar
1518
+
1519
+ EXAMPLES
1520
+ $ twentythree webinar speaker add-from-user 12345 --user-id 42
1521
+
1522
+ $ twentythree webinar speaker add-from-user 12345
1523
+
1524
+ $ twentythree webinar speaker add-from-user 12345 --user-id 42 --json
1525
+ ```
1526
+
1527
+ _See code: [src/commands/webinar/speaker/add-from-user.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/add-from-user.ts)_
1528
+
1529
+ ## `twentythree webinar speaker cancel-guest-request WEBINARID ID`
1530
+
1531
+ Cancel a guest request for a speaker
1532
+
1533
+ ```
1534
+ USAGE
1535
+ $ twentythree webinar speaker cancel-guest-request WEBINARID ID [--json] [-w <value>]
1536
+
1537
+ ARGUMENTS
1538
+ WEBINARID Webinar ID
1539
+ ID Speaker ID
1540
+
1541
+ GLOBAL FLAGS
1542
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1543
+ --json Format output as json.
1544
+
1545
+ DESCRIPTION
1546
+ Cancel a guest request for a speaker
1547
+
1548
+ EXAMPLES
1549
+ $ twentythree webinar speaker cancel-guest-request 12345 9900
1550
+
1551
+ $ twentythree webinar speaker cancel-guest-request 12345 9900 --json
1552
+ ```
1553
+
1554
+ _See code: [src/commands/webinar/speaker/cancel-guest-request.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/cancel-guest-request.ts)_
1555
+
1556
+ ## `twentythree webinar speaker connection-types ID`
1557
+
1558
+ List available speaker connection types
1559
+
1560
+ ```
1561
+ USAGE
1562
+ $ twentythree webinar speaker connection-types ID [--json] [-w <value>]
1563
+
1564
+ ARGUMENTS
1565
+ ID Webinar ID
1566
+
1567
+ GLOBAL FLAGS
1568
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1569
+ --json Format output as json.
1570
+
1571
+ DESCRIPTION
1572
+ List available speaker connection types
1573
+
1574
+ EXAMPLES
1575
+ $ twentythree webinar speaker connection-types 12345
1576
+
1577
+ $ twentythree webinar speaker connection-types 12345 --json
1578
+ ```
1579
+
1580
+ _See code: [src/commands/webinar/speaker/connection-types.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/connection-types.ts)_
1581
+
1582
+ ## `twentythree webinar speaker library`
1583
+
1584
+ List speakers in the workspace library
1585
+
1586
+ ```
1587
+ USAGE
1588
+ $ twentythree webinar speaker library [--json] [-w <value>]
1589
+
1590
+ GLOBAL FLAGS
1591
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1592
+ --json Format output as json.
1593
+
1594
+ DESCRIPTION
1595
+ List speakers in the workspace library
1596
+
1597
+ EXAMPLES
1598
+ $ twentythree webinar speaker library
1599
+
1600
+ $ twentythree webinar speaker library --json
1601
+ ```
1602
+
1603
+ _See code: [src/commands/webinar/speaker/library.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/library.ts)_
1604
+
1605
+ ## `twentythree webinar speaker list ID`
1606
+
1607
+ List speakers for a webinar
1608
+
1609
+ ```
1610
+ USAGE
1611
+ $ twentythree webinar speaker list ID [--json] [-w <value>] [--token <value>]
1612
+
1613
+ ARGUMENTS
1614
+ ID Webinar ID
1615
+
1616
+ FLAGS
1617
+ --token=<value> Webinar token (auto-looked up if omitted)
1618
+
1619
+ GLOBAL FLAGS
1620
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1621
+ --json Format output as json.
1622
+
1623
+ DESCRIPTION
1624
+ List speakers for a webinar
1625
+
1626
+ EXAMPLES
1627
+ $ twentythree webinar speaker list 12345
1628
+
1629
+ $ twentythree webinar speaker list 12345 --json
1630
+ ```
1631
+
1632
+ _See code: [src/commands/webinar/speaker/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/list.ts)_
1633
+
1634
+ ## `twentythree webinar speaker remove WEBINARID ID`
1635
+
1636
+ Remove a speaker from a webinar
1637
+
1638
+ ```
1639
+ USAGE
1640
+ $ twentythree webinar speaker remove WEBINARID ID [--json] [-w <value>]
1641
+
1642
+ ARGUMENTS
1643
+ WEBINARID Webinar ID
1644
+ ID Speaker ID
1645
+
1646
+ GLOBAL FLAGS
1647
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1648
+ --json Format output as json.
1649
+
1650
+ DESCRIPTION
1651
+ Remove a speaker from a webinar
1652
+
1653
+ EXAMPLES
1654
+ $ twentythree webinar speaker remove 12345 9900
1655
+
1656
+ $ twentythree webinar speaker remove 12345 9900 --json
1657
+ ```
1658
+
1659
+ _See code: [src/commands/webinar/speaker/remove.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/remove.ts)_
1660
+
1661
+ ## `twentythree webinar speaker remove-avatar WEBINARID ID`
1662
+
1663
+ Remove the avatar image from a speaker
1664
+
1665
+ ```
1666
+ USAGE
1667
+ $ twentythree webinar speaker remove-avatar WEBINARID ID [--json] [-w <value>]
1668
+
1669
+ ARGUMENTS
1670
+ WEBINARID Webinar ID
1671
+ ID Speaker ID
1672
+
1673
+ GLOBAL FLAGS
1674
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1675
+ --json Format output as json.
1676
+
1677
+ DESCRIPTION
1678
+ Remove the avatar image from a speaker
1679
+
1680
+ EXAMPLES
1681
+ $ twentythree webinar speaker remove-avatar 12345 9900
1682
+
1683
+ $ twentythree webinar speaker remove-avatar 12345 9900 --json
1684
+ ```
1685
+
1686
+ _See code: [src/commands/webinar/speaker/remove-avatar.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/remove-avatar.ts)_
1687
+
1688
+ ## `twentythree webinar speaker request-guest WEBINARID ID`
1689
+
1690
+ Request a speaker as a guest
1691
+
1692
+ ```
1693
+ USAGE
1694
+ $ twentythree webinar speaker request-guest WEBINARID ID [--json] [-w <value>]
1695
+
1696
+ ARGUMENTS
1697
+ WEBINARID Webinar ID
1698
+ ID Speaker ID
1699
+
1700
+ GLOBAL FLAGS
1701
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1702
+ --json Format output as json.
1703
+
1704
+ DESCRIPTION
1705
+ Request a speaker as a guest
1706
+
1707
+ EXAMPLES
1708
+ $ twentythree webinar speaker request-guest 12345 9900
1709
+
1710
+ $ twentythree webinar speaker request-guest 12345 9900 --json
1711
+ ```
1712
+
1713
+ _See code: [src/commands/webinar/speaker/request-guest.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/request-guest.ts)_
1714
+
1715
+ ## `twentythree webinar speaker send-invitation WEBINARID ID`
1716
+
1717
+ Send an invitation to a speaker
1718
+
1719
+ ```
1720
+ USAGE
1721
+ $ twentythree webinar speaker send-invitation WEBINARID ID [--json] [-w <value>]
1722
+
1723
+ ARGUMENTS
1724
+ WEBINARID Webinar ID
1725
+ ID Speaker ID
1726
+
1727
+ GLOBAL FLAGS
1728
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1729
+ --json Format output as json.
1730
+
1731
+ DESCRIPTION
1732
+ Send an invitation to a speaker
1733
+
1734
+ EXAMPLES
1735
+ $ twentythree webinar speaker send-invitation 12345 9900
1736
+
1737
+ $ twentythree webinar speaker send-invitation 12345 9900 --json
1738
+ ```
1739
+
1740
+ _See code: [src/commands/webinar/speaker/send-invitation.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/send-invitation.ts)_
1741
+
1742
+ ## `twentythree webinar speaker set-avatar WEBINARID ID FILE`
1743
+
1744
+ Upload an avatar image for a speaker
1745
+
1746
+ ```
1747
+ USAGE
1748
+ $ twentythree webinar speaker set-avatar WEBINARID ID FILE [--json] [-w <value>] [--chunk-size <value>] [--concurrency
1749
+ <value>]
1750
+
1751
+ ARGUMENTS
1752
+ WEBINARID Webinar ID
1753
+ ID Speaker ID
1754
+ FILE Path to image file
1755
+
1756
+ FLAGS
1757
+ --chunk-size=<value> [default: 5242880] Chunk size in bytes (default: 5242880)
1758
+ --concurrency=<value> [default: 5] Number of chunks to upload in parallel (default: 5)
1759
+
1760
+ GLOBAL FLAGS
1761
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1762
+ --json Format output as json.
1763
+
1764
+ DESCRIPTION
1765
+ Upload an avatar image for a speaker
1766
+
1767
+ EXAMPLES
1768
+ $ twentythree webinar speaker set-avatar 12345 9900 ./avatar.jpg
1769
+
1770
+ $ twentythree webinar speaker set-avatar 12345 9900 ./avatar.png --chunk-size 524288
1771
+ ```
1772
+
1773
+ _See code: [src/commands/webinar/speaker/set-avatar.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/set-avatar.ts)_
1774
+
1775
+ ## `twentythree webinar speaker set-order ID`
1776
+
1777
+ Set the display order of a speaker on a webinar
1778
+
1779
+ ```
1780
+ USAGE
1781
+ $ twentythree webinar speaker set-order ID [--json] [-w <value>] [--speaker-id <value>] [--order <value>]
1782
+
1783
+ ARGUMENTS
1784
+ ID Webinar ID
1785
+
1786
+ FLAGS
1787
+ --order=<value> New display order (1-based)
1788
+ --speaker-id=<value> Speaker ID
1789
+
1790
+ GLOBAL FLAGS
1791
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1792
+ --json Format output as json.
1793
+
1794
+ DESCRIPTION
1795
+ Set the display order of a speaker on a webinar
1796
+
1797
+ EXAMPLES
1798
+ $ twentythree webinar speaker set-order 12345 --speaker-id 9900 --order 1
1799
+
1800
+ $ twentythree webinar speaker set-order 12345
1801
+
1802
+ $ twentythree webinar speaker set-order 12345 --speaker-id 9900 --order 1 --json
1803
+ ```
1804
+
1805
+ _See code: [src/commands/webinar/speaker/set-order.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/set-order.ts)_
1806
+
1807
+ ## `twentythree webinar speaker update WEBINARID ID`
1808
+
1809
+ Update a speaker on a webinar
1810
+
1811
+ ```
1812
+ USAGE
1813
+ $ twentythree webinar speaker update WEBINARID ID [--json] [-w <value>] [--name <value>] [--email <value>] [--title
1814
+ <value>] [--description <value>]
1815
+
1816
+ ARGUMENTS
1817
+ WEBINARID Webinar ID
1818
+ ID Speaker ID
1819
+
1820
+ FLAGS
1821
+ --description=<value> Speaker bio or description
1822
+ --email=<value> Speaker email
1823
+ --name=<value> Speaker name
1824
+ --title=<value> Speaker title or job title
1825
+
1826
+ GLOBAL FLAGS
1827
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1828
+ --json Format output as json.
1829
+
1830
+ DESCRIPTION
1831
+ Update a speaker on a webinar
1832
+
1833
+ EXAMPLES
1834
+ $ twentythree webinar speaker update 12345 9900 --name "Jane Doe"
1835
+
1836
+ $ twentythree webinar speaker update 12345 9900 --email jane@example.com --title "CTO"
1837
+
1838
+ $ twentythree webinar speaker update 12345 9900 --name "Jane Doe" --json
1839
+ ```
1840
+
1841
+ _See code: [src/commands/webinar/speaker/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/speaker/update.ts)_
1842
+
1843
+ ## `twentythree webinar transcription connect ID`
1844
+
1845
+ Connect a transcription to a webinar
1846
+
1847
+ ```
1848
+ USAGE
1849
+ $ twentythree webinar transcription connect ID [--json] [-w <value>] [--presenter-token <value>]
1850
+
1851
+ ARGUMENTS
1852
+ ID Webinar ID
1853
+
1854
+ FLAGS
1855
+ --presenter-token=<value> Presenter token
1856
+
1857
+ GLOBAL FLAGS
1858
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1859
+ --json Format output as json.
1860
+
1861
+ DESCRIPTION
1862
+ Connect a transcription to a webinar
1863
+
1864
+ EXAMPLES
1865
+ $ twentythree webinar transcription connect 12345
1866
+
1867
+ $ twentythree webinar transcription connect 12345 --presenter-token abc123
1868
+
1869
+ $ twentythree webinar transcription connect 12345 --json
1870
+ ```
1871
+
1872
+ _See code: [src/commands/webinar/transcription/connect.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/transcription/connect.ts)_
1873
+
1874
+ ## `twentythree webinar transcription list ID`
1875
+
1876
+ List transcriptions for a webinar
1877
+
1878
+ ```
1879
+ USAGE
1880
+ $ twentythree webinar transcription list ID [--json] [-w <value>] [--token <value>]
1881
+
1882
+ ARGUMENTS
1883
+ ID Webinar ID
1884
+
1885
+ FLAGS
1886
+ --token=<value> Webinar token (auto-looked up if not provided)
1887
+
1888
+ GLOBAL FLAGS
1889
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1890
+ --json Format output as json.
1891
+
1892
+ DESCRIPTION
1893
+ List transcriptions for a webinar
1894
+
1895
+ EXAMPLES
1896
+ $ twentythree webinar transcription list 12345
1897
+
1898
+ $ twentythree webinar transcription list 12345 --json
1899
+
1900
+ $ twentythree webinar transcription list 12345 --token mytoken
1901
+ ```
1902
+
1903
+ _See code: [src/commands/webinar/transcription/list.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/transcription/list.ts)_
1904
+
1905
+ ## `twentythree webinar transcription locales ID`
1906
+
1907
+ List available transcription locales for a webinar
1908
+
1909
+ ```
1910
+ USAGE
1911
+ $ twentythree webinar transcription locales ID [--json] [-w <value>] [--token <value>]
1912
+
1913
+ ARGUMENTS
1914
+ ID Webinar ID
1915
+
1916
+ FLAGS
1917
+ --token=<value> Webinar token (auto-looked up if not provided)
1918
+
1919
+ GLOBAL FLAGS
1920
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1921
+ --json Format output as json.
1922
+
1923
+ DESCRIPTION
1924
+ List available transcription locales for a webinar
1925
+
1926
+ EXAMPLES
1927
+ $ twentythree webinar transcription locales 12345
1928
+
1929
+ $ twentythree webinar transcription locales 12345 --json
1930
+
1931
+ $ twentythree webinar transcription locales 12345 --token mytoken
1932
+ ```
1933
+
1934
+ _See code: [src/commands/webinar/transcription/locales.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/transcription/locales.ts)_
1935
+
1936
+ ## `twentythree webinar transcription transcriptionlist`
1937
+
1938
+ List all transcriptions in the workspace
1939
+
1940
+ ```
1941
+ USAGE
1942
+ $ twentythree webinar transcription transcriptionlist [--json] [-w <value>]
1943
+
1944
+ GLOBAL FLAGS
1945
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1946
+ --json Format output as json.
1947
+
1948
+ DESCRIPTION
1949
+ List all transcriptions in the workspace
1950
+
1951
+ EXAMPLES
1952
+ $ twentythree webinar transcription transcriptionlist
1953
+
1954
+ $ twentythree webinar transcription transcriptionlist --json
1955
+ ```
1956
+
1957
+ _See code: [src/commands/webinar/transcription/transcriptionlist.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/transcription/transcriptionlist.ts)_
1958
+
1959
+ ## `twentythree webinar update ID`
1960
+
1961
+ Update details for a webinar
1962
+
1963
+ ```
1964
+ USAGE
1965
+ $ twentythree webinar update ID [--json] [-w <value>] [--title <value>] [--description <value>] [--status <value>]
1966
+ [--live-date <value>] [--draft] [--publish]
1967
+
1968
+ ARGUMENTS
1969
+ ID Webinar ID
1970
+
1971
+ FLAGS
1972
+ --description=<value> New description for the webinar
1973
+ --[no-]draft Set as draft
1974
+ --live-date=<value> Schedule date/time (ISO 8601)
1975
+ --[no-]publish Publish or unpublish the webinar
1976
+ --status=<value> Webinar status: upcoming, live, or previous
1977
+ --title=<value> New title for the webinar
1978
+
1979
+ GLOBAL FLAGS
1980
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
1981
+ --json Format output as json.
1982
+
1983
+ DESCRIPTION
1984
+ Update details for a webinar
1985
+
1986
+ EXAMPLES
1987
+ $ twentythree webinar update 12345 --title "New Title"
1988
+
1989
+ $ twentythree webinar update 12345 --status upcoming
1990
+
1991
+ $ twentythree webinar update 12345
1992
+ ```
1993
+
1994
+ _See code: [src/commands/webinar/update.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/update.ts)_
1995
+
1996
+ ## `twentythree webinar upload-image ID FILE`
1997
+
1998
+ Upload an image for a webinar (thumbnail, preview, or before-webinar)
1999
+
2000
+ ```
2001
+ USAGE
2002
+ $ twentythree webinar upload-image ID FILE [--json] [-w <value>] [--type thumbnail|preview|before_webinar] [--chunk-size
2003
+ <value>] [--concurrency <value>]
2004
+
2005
+ ARGUMENTS
2006
+ ID Webinar ID
2007
+ FILE Path to the image file to upload
2008
+
2009
+ FLAGS
2010
+ --chunk-size=<value> [default: 5242880] Chunk size in bytes (default: 5242880)
2011
+ --concurrency=<value> [default: 5] Number of chunks to upload in parallel (default: 5)
2012
+ --type=<option> [default: thumbnail] Image type
2013
+ <options: thumbnail|preview|before_webinar>
2014
+
2015
+ GLOBAL FLAGS
2016
+ -w, --workspace=<value> Workspace domain or display name to use for this invocation.
2017
+ --json Format output as json.
2018
+
2019
+ DESCRIPTION
2020
+ Upload an image for a webinar (thumbnail, preview, or before-webinar)
2021
+
2022
+ EXAMPLES
2023
+ $ twentythree webinar upload-image 12345 ./thumb.jpg
2024
+
2025
+ $ twentythree webinar upload-image 12345 ./preview.png --type preview
2026
+
2027
+ $ twentythree webinar upload-image 12345 ./before.jpg --type before_webinar
2028
+ ```
2029
+
2030
+ _See code: [src/commands/webinar/upload-image.ts](https://github.com/23/twentythree-cli/blob/v0.1.0/src/commands/webinar/upload-image.ts)_