twentythree-cli 1.3.0 → 1.3.1

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.
@@ -837,14 +837,14 @@
837
837
  "upload.cjs"
838
838
  ]
839
839
  },
840
- "audience:companies": {
840
+ "app:add": {
841
841
  "aliases": [],
842
842
  "args": {},
843
- "description": "List audience companies",
843
+ "description": "Create a new app integration",
844
844
  "examples": [
845
- "<%= config.bin %> audience companies",
846
- "<%= config.bin %> audience companies --identified --size 50",
847
- "<%= config.bin %> audience companies --domains \"acme.com\" --json"
845
+ "<%= config.bin %> app add --name \"My App\"",
846
+ "<%= config.bin %> app add --name \"My App\" --description \"A sample app\"",
847
+ "<%= config.bin %> app add --name \"My App\" --json"
848
848
  ],
849
849
  "flags": {
850
850
  "json": {
@@ -871,56 +871,33 @@
871
871
  "allowNo": false,
872
872
  "type": "boolean"
873
873
  },
874
- "page": {
875
- "description": "Page number",
876
- "name": "page",
877
- "required": false,
878
- "hasDynamicHelp": false,
879
- "multiple": false,
880
- "type": "option"
881
- },
882
- "size": {
883
- "description": "Page size",
884
- "name": "size",
885
- "required": false,
886
- "hasDynamicHelp": false,
887
- "multiple": false,
888
- "type": "option"
889
- },
890
- "offset": {
891
- "description": "Offset for pagination",
892
- "name": "offset",
893
- "required": false,
874
+ "name": {
875
+ "description": "App name",
876
+ "name": "name",
877
+ "required": true,
894
878
  "hasDynamicHelp": false,
895
879
  "multiple": false,
896
880
  "type": "option"
897
881
  },
898
- "orderby": {
899
- "description": "Order by field",
900
- "name": "orderby",
882
+ "description": {
883
+ "description": "App description",
884
+ "name": "description",
901
885
  "required": false,
902
886
  "hasDynamicHelp": false,
903
887
  "multiple": false,
904
888
  "type": "option"
905
889
  },
906
- "order": {
907
- "description": "Sort direction (asc/desc)",
908
- "name": "order",
890
+ "style": {
891
+ "description": "App style",
892
+ "name": "style",
909
893
  "required": false,
910
894
  "hasDynamicHelp": false,
911
895
  "multiple": false,
912
896
  "type": "option"
913
897
  },
914
- "identified": {
915
- "description": "Filter to identified companies only",
916
- "name": "identified",
917
- "required": false,
918
- "allowNo": true,
919
- "type": "boolean"
920
- },
921
- "domains": {
922
- "description": "Filter by company domains (space-separated)",
923
- "name": "domains",
898
+ "type": {
899
+ "description": "App type",
900
+ "name": "type",
924
901
  "required": false,
925
902
  "hasDynamicHelp": false,
926
903
  "multiple": false,
@@ -929,44 +906,41 @@
929
906
  },
930
907
  "hasDynamicHelp": false,
931
908
  "hiddenAliases": [],
932
- "id": "audience:companies",
909
+ "id": "app:add",
933
910
  "pluginAlias": "twentythree-cli",
934
911
  "pluginName": "twentythree-cli",
935
912
  "pluginType": "core",
936
913
  "strict": true,
914
+ "enableJsonFlag": true,
937
915
  "agentMetadata": {
938
- "api_endpoint": "GET /audience/companies",
939
- "auth_scope": "read",
916
+ "api_endpoint": "POST /app/add",
917
+ "auth_scope": "write",
940
918
  "output_shape": {
941
- "type": "table",
942
- "columns": [
943
- "UUID",
944
- "Name",
945
- "Domain",
946
- "Score",
947
- "Profiles",
948
- "Timelines"
949
- ]
919
+ "type": "key-value"
950
920
  },
951
- "side_effects": "none"
921
+ "side_effects": "creates"
952
922
  },
953
- "enableJsonFlag": true,
954
923
  "isESM": false,
955
924
  "relativePath": [
956
925
  "dist",
957
926
  "commands",
958
- "audience",
959
- "companies.cjs"
927
+ "app",
928
+ "add.cjs"
960
929
  ]
961
930
  },
962
- "audience:funnel": {
931
+ "app:delete": {
963
932
  "aliases": [],
964
- "args": {},
965
- "description": "Get audience funnel analytics",
933
+ "args": {
934
+ "id": {
935
+ "description": "App ID",
936
+ "name": "id",
937
+ "required": true
938
+ }
939
+ },
940
+ "description": "Delete an app integration from the active workspace",
966
941
  "examples": [
967
- "<%= config.bin %> audience funnel",
968
- "<%= config.bin %> audience funnel --objects \"123 456\" --json",
969
- "<%= config.bin %> audience funnel --live-type on_demand --resolve-recordings"
942
+ "<%= config.bin %> app delete 12345",
943
+ "<%= config.bin %> app delete 12345 --json"
970
944
  ],
971
945
  "flags": {
972
946
  "json": {
@@ -992,69 +966,41 @@
992
966
  "name": "agent",
993
967
  "allowNo": false,
994
968
  "type": "boolean"
995
- },
996
- "objects": {
997
- "description": "Filter by object IDs (space-separated)",
998
- "name": "objects",
999
- "required": false,
1000
- "hasDynamicHelp": false,
1001
- "multiple": false,
1002
- "type": "option"
1003
- },
1004
- "live-type": {
1005
- "description": "Live event type filter",
1006
- "name": "live-type",
1007
- "required": false,
1008
- "hasDynamicHelp": false,
1009
- "multiple": false,
1010
- "type": "option"
1011
- },
1012
- "resolve-recordings": {
1013
- "description": "Resolve recording details",
1014
- "name": "resolve-recordings",
1015
- "required": false,
1016
- "allowNo": false,
1017
- "type": "boolean"
1018
- },
1019
- "resolve-live-series": {
1020
- "description": "Resolve live series details",
1021
- "name": "resolve-live-series",
1022
- "required": false,
1023
- "allowNo": false,
1024
- "type": "boolean"
1025
969
  }
1026
970
  },
1027
971
  "hasDynamicHelp": false,
1028
972
  "hiddenAliases": [],
1029
- "id": "audience:funnel",
973
+ "id": "app:delete",
1030
974
  "pluginAlias": "twentythree-cli",
1031
975
  "pluginName": "twentythree-cli",
1032
976
  "pluginType": "core",
1033
977
  "strict": true,
978
+ "enableJsonFlag": true,
1034
979
  "agentMetadata": {
1035
- "api_endpoint": "GET /audience/funnel",
1036
- "auth_scope": "read",
980
+ "api_endpoint": "POST /app/delete",
981
+ "auth_scope": "write",
1037
982
  "output_shape": {
1038
983
  "type": "key-value"
1039
984
  },
1040
- "side_effects": "none"
985
+ "side_effects": "destructive"
1041
986
  },
1042
- "enableJsonFlag": true,
1043
987
  "isESM": false,
1044
988
  "relativePath": [
1045
989
  "dist",
1046
990
  "commands",
1047
- "audience",
1048
- "funnel.cjs"
991
+ "app",
992
+ "delete.cjs"
1049
993
  ]
1050
994
  },
1051
- "audience:identity-sources": {
995
+ "app:list": {
1052
996
  "aliases": [],
1053
997
  "args": {},
1054
- "description": "List audience identity sources",
998
+ "description": "List player design apps on the active workspace",
1055
999
  "examples": [
1056
- "<%= config.bin %> audience identity-sources",
1057
- "<%= config.bin %> audience identity-sources --json"
1000
+ "<%= config.bin %> app list",
1001
+ "<%= config.bin %> app list --app-id 42",
1002
+ "<%= config.bin %> app list --page 2 --size 50",
1003
+ "<%= config.bin %> app list --json"
1058
1004
  ],
1059
1005
  "flags": {
1060
1006
  "json": {
@@ -1080,45 +1026,75 @@
1080
1026
  "name": "agent",
1081
1027
  "allowNo": false,
1082
1028
  "type": "boolean"
1029
+ },
1030
+ "app-id": {
1031
+ "description": "Filter results to a specific app ID",
1032
+ "name": "app-id",
1033
+ "required": false,
1034
+ "hasDynamicHelp": false,
1035
+ "multiple": false,
1036
+ "type": "option"
1037
+ },
1038
+ "page": {
1039
+ "description": "Page offset",
1040
+ "name": "page",
1041
+ "required": false,
1042
+ "hasDynamicHelp": false,
1043
+ "multiple": false,
1044
+ "type": "option"
1045
+ },
1046
+ "size": {
1047
+ "description": "Number of results per page (default 20, max 100)",
1048
+ "name": "size",
1049
+ "required": false,
1050
+ "hasDynamicHelp": false,
1051
+ "multiple": false,
1052
+ "type": "option"
1083
1053
  }
1084
1054
  },
1085
1055
  "hasDynamicHelp": false,
1086
1056
  "hiddenAliases": [],
1087
- "id": "audience:identity-sources",
1057
+ "id": "app:list",
1088
1058
  "pluginAlias": "twentythree-cli",
1089
1059
  "pluginName": "twentythree-cli",
1090
1060
  "pluginType": "core",
1091
1061
  "strict": true,
1062
+ "enableJsonFlag": true,
1092
1063
  "agentMetadata": {
1093
- "api_endpoint": "GET /audience/identity-sources",
1064
+ "api_endpoint": "POST /app/list",
1094
1065
  "auth_scope": "read",
1095
1066
  "output_shape": {
1096
1067
  "type": "table",
1097
1068
  "columns": [
1098
- "Source",
1099
- "Title",
1100
- "Service"
1069
+ "ID",
1070
+ "Name",
1071
+ "Type",
1072
+ "Description"
1101
1073
  ]
1102
1074
  },
1103
1075
  "side_effects": "none"
1104
1076
  },
1105
- "enableJsonFlag": true,
1106
1077
  "isESM": false,
1107
1078
  "relativePath": [
1108
1079
  "dist",
1109
1080
  "commands",
1110
- "audience",
1111
- "identity-sources.cjs"
1081
+ "app",
1082
+ "list.cjs"
1112
1083
  ]
1113
1084
  },
1114
- "audience:list-collectors": {
1085
+ "app:remove-thumbnail": {
1115
1086
  "aliases": [],
1116
- "args": {},
1117
- "description": "List collectors linked to audience",
1087
+ "args": {
1088
+ "id": {
1089
+ "description": "App ID",
1090
+ "name": "id",
1091
+ "required": true
1092
+ }
1093
+ },
1094
+ "description": "Remove the custom thumbnail for an app, reverting to the default",
1118
1095
  "examples": [
1119
- "<%= config.bin %> audience list-collectors",
1120
- "<%= config.bin %> audience list-collectors --object-id 123",
1121
- "<%= config.bin %> audience list-collectors --action-id 456 --json"
1096
+ "<%= config.bin %> app remove-thumbnail 42",
1097
+ "<%= config.bin %> app remove-thumbnail 42 --json"
1122
1098
  ],
1123
1099
  "flags": {
1124
1100
  "json": {
@@ -1144,63 +1120,45 @@
1144
1120
  "name": "agent",
1145
1121
  "allowNo": false,
1146
1122
  "type": "boolean"
1147
- },
1148
- "object-id": {
1149
- "description": "Filter by object ID",
1150
- "name": "object-id",
1151
- "required": false,
1152
- "hasDynamicHelp": false,
1153
- "multiple": false,
1154
- "type": "option"
1155
- },
1156
- "action-id": {
1157
- "description": "Filter by action ID",
1158
- "name": "action-id",
1159
- "required": false,
1160
- "hasDynamicHelp": false,
1161
- "multiple": false,
1162
- "type": "option"
1163
1123
  }
1164
1124
  },
1165
1125
  "hasDynamicHelp": false,
1166
1126
  "hiddenAliases": [],
1167
- "id": "audience:list-collectors",
1127
+ "id": "app:remove-thumbnail",
1168
1128
  "pluginAlias": "twentythree-cli",
1169
1129
  "pluginName": "twentythree-cli",
1170
1130
  "pluginType": "core",
1171
1131
  "strict": true,
1132
+ "enableJsonFlag": true,
1172
1133
  "agentMetadata": {
1173
- "api_endpoint": "GET /audience/list-collectors",
1174
- "auth_scope": "read",
1134
+ "api_endpoint": "POST /app/remove-thumbnail",
1135
+ "auth_scope": "write",
1175
1136
  "output_shape": {
1176
- "type": "table",
1177
- "columns": [
1178
- "Action ID",
1179
- "Name",
1180
- "Start",
1181
- "End",
1182
- "Require Email"
1183
- ]
1137
+ "type": "key-value"
1184
1138
  },
1185
- "side_effects": "none"
1139
+ "side_effects": "updates"
1186
1140
  },
1187
- "enableJsonFlag": true,
1188
1141
  "isESM": false,
1189
1142
  "relativePath": [
1190
1143
  "dist",
1191
1144
  "commands",
1192
- "audience",
1193
- "list-collectors.cjs"
1145
+ "app",
1146
+ "remove-thumbnail.cjs"
1194
1147
  ]
1195
1148
  },
1196
- "audience:list": {
1149
+ "app:set-thumbnail": {
1197
1150
  "aliases": [],
1198
- "args": {},
1199
- "description": "List audience members",
1200
- "examples": [
1201
- "<%= config.bin %> audience list",
1202
- "<%= config.bin %> audience list --page 2 --size 50",
1203
- "<%= config.bin %> audience list --search \"john\" --identified --json"
1151
+ "args": {
1152
+ "file": {
1153
+ "description": "Path to the thumbnail image file",
1154
+ "name": "file",
1155
+ "required": true
1156
+ }
1157
+ },
1158
+ "description": "Upload and set a custom thumbnail image for an app",
1159
+ "examples": [
1160
+ "<%= config.bin %> app set-thumbnail ./thumbnail.png --app-id 42",
1161
+ "<%= config.bin %> app set-thumbnail ./thumbnail.jpg --app-id 42 --json"
1204
1162
  ],
1205
1163
  "flags": {
1206
1164
  "json": {
@@ -1227,64 +1185,99 @@
1227
1185
  "allowNo": false,
1228
1186
  "type": "boolean"
1229
1187
  },
1230
- "page": {
1231
- "description": "Page number",
1232
- "name": "page",
1233
- "required": false,
1188
+ "app-id": {
1189
+ "description": "App ID to update",
1190
+ "name": "app-id",
1191
+ "required": true,
1234
1192
  "hasDynamicHelp": false,
1235
1193
  "multiple": false,
1236
1194
  "type": "option"
1195
+ }
1196
+ },
1197
+ "hasDynamicHelp": false,
1198
+ "hiddenAliases": [],
1199
+ "id": "app:set-thumbnail",
1200
+ "pluginAlias": "twentythree-cli",
1201
+ "pluginName": "twentythree-cli",
1202
+ "pluginType": "core",
1203
+ "strict": true,
1204
+ "enableJsonFlag": true,
1205
+ "agentMetadata": {
1206
+ "api_endpoint": "POST /app/set-thumbnail",
1207
+ "auth_scope": "write",
1208
+ "output_shape": {
1209
+ "type": "key-value"
1237
1210
  },
1238
- "size": {
1239
- "description": "Page size (max 500)",
1240
- "name": "size",
1241
- "required": false,
1242
- "hasDynamicHelp": false,
1243
- "multiple": false,
1244
- "type": "option"
1211
+ "side_effects": "updates"
1212
+ },
1213
+ "isESM": false,
1214
+ "relativePath": [
1215
+ "dist",
1216
+ "commands",
1217
+ "app",
1218
+ "set-thumbnail.cjs"
1219
+ ]
1220
+ },
1221
+ "app:update": {
1222
+ "aliases": [],
1223
+ "args": {
1224
+ "id": {
1225
+ "description": "App ID",
1226
+ "name": "id",
1227
+ "required": true
1228
+ }
1229
+ },
1230
+ "description": "Update an existing app integration",
1231
+ "examples": [
1232
+ "<%= config.bin %> app update 12345 --name \"Updated Name\"",
1233
+ "<%= config.bin %> app update 12345 --description \"New description\"",
1234
+ "<%= config.bin %> app update 12345 --name \"Updated Name\" --description \"New description\"",
1235
+ "<%= config.bin %> app update 12345 --name \"Updated Name\" --json"
1236
+ ],
1237
+ "flags": {
1238
+ "json": {
1239
+ "description": "Format output as json.",
1240
+ "helpGroup": "GLOBAL",
1241
+ "name": "json",
1242
+ "allowNo": false,
1243
+ "type": "boolean"
1245
1244
  },
1246
- "offset": {
1247
- "description": "Offset for pagination",
1248
- "name": "offset",
1249
- "required": false,
1245
+ "workspace": {
1246
+ "char": "w",
1247
+ "helpGroup": "GLOBAL",
1248
+ "name": "workspace",
1249
+ "summary": "Workspace domain or display name to use for this invocation.",
1250
1250
  "hasDynamicHelp": false,
1251
1251
  "multiple": false,
1252
1252
  "type": "option"
1253
1253
  },
1254
- "orderby": {
1255
- "description": "Order by field (recent, timeline_count, score, first)",
1256
- "name": "orderby",
1257
- "required": false,
1258
- "hasDynamicHelp": false,
1259
- "multiple": false,
1260
- "type": "option"
1254
+ "agent": {
1255
+ "description": "Output machine-readable command metadata for AI agent consumption",
1256
+ "helpGroup": "GLOBAL",
1257
+ "hidden": true,
1258
+ "name": "agent",
1259
+ "allowNo": false,
1260
+ "type": "boolean"
1261
1261
  },
1262
- "order": {
1263
- "description": "Sort direction (asc/desc)",
1264
- "name": "order",
1262
+ "name": {
1263
+ "description": "App name",
1264
+ "name": "name",
1265
1265
  "required": false,
1266
1266
  "hasDynamicHelp": false,
1267
1267
  "multiple": false,
1268
1268
  "type": "option"
1269
1269
  },
1270
- "search": {
1271
- "description": "Free-text search across names and emails",
1272
- "name": "search",
1270
+ "description": {
1271
+ "description": "App description",
1272
+ "name": "description",
1273
1273
  "required": false,
1274
1274
  "hasDynamicHelp": false,
1275
1275
  "multiple": false,
1276
1276
  "type": "option"
1277
1277
  },
1278
- "identified": {
1279
- "description": "Filter to identified profiles only",
1280
- "name": "identified",
1281
- "required": false,
1282
- "allowNo": true,
1283
- "type": "boolean"
1284
- },
1285
- "objects": {
1286
- "description": "Filter by viewed object IDs (space-separated)",
1287
- "name": "objects",
1278
+ "style": {
1279
+ "description": "App style",
1280
+ "name": "style",
1288
1281
  "required": false,
1289
1282
  "hasDynamicHelp": false,
1290
1283
  "multiple": false,
@@ -1293,44 +1286,36 @@
1293
1286
  },
1294
1287
  "hasDynamicHelp": false,
1295
1288
  "hiddenAliases": [],
1296
- "id": "audience:list",
1289
+ "id": "app:update",
1297
1290
  "pluginAlias": "twentythree-cli",
1298
1291
  "pluginName": "twentythree-cli",
1299
1292
  "pluginType": "core",
1300
1293
  "strict": true,
1294
+ "enableJsonFlag": true,
1301
1295
  "agentMetadata": {
1302
- "api_endpoint": "GET /audience/list",
1303
- "auth_scope": "read",
1296
+ "api_endpoint": "POST /app/update",
1297
+ "auth_scope": "write",
1304
1298
  "output_shape": {
1305
- "type": "table",
1306
- "columns": [
1307
- "UUID",
1308
- "Name",
1309
- "Email",
1310
- "Company",
1311
- "Score",
1312
- "Timelines"
1313
- ]
1299
+ "type": "key-value"
1314
1300
  },
1315
- "side_effects": "none"
1301
+ "side_effects": "updates"
1316
1302
  },
1317
- "enableJsonFlag": true,
1318
1303
  "isESM": false,
1319
1304
  "relativePath": [
1320
1305
  "dist",
1321
1306
  "commands",
1322
- "audience",
1323
- "list.cjs"
1307
+ "app",
1308
+ "update.cjs"
1324
1309
  ]
1325
1310
  },
1326
- "audience:metrics": {
1311
+ "audience:companies": {
1327
1312
  "aliases": [],
1328
1313
  "args": {},
1329
- "description": "Get audience aggregate metrics",
1314
+ "description": "List audience companies",
1330
1315
  "examples": [
1331
- "<%= config.bin %> audience metrics",
1332
- "<%= config.bin %> audience metrics --identified --json",
1333
- "<%= config.bin %> audience metrics --search \"acme\" --size 100"
1316
+ "<%= config.bin %> audience companies",
1317
+ "<%= config.bin %> audience companies --identified --size 50",
1318
+ "<%= config.bin %> audience companies --domains \"acme.com\" --json"
1334
1319
  ],
1335
1320
  "flags": {
1336
1321
  "json": {
@@ -1381,24 +1366,32 @@
1381
1366
  "multiple": false,
1382
1367
  "type": "option"
1383
1368
  },
1384
- "search": {
1385
- "description": "Free-text search filter",
1386
- "name": "search",
1369
+ "orderby": {
1370
+ "description": "Order by field",
1371
+ "name": "orderby",
1372
+ "required": false,
1373
+ "hasDynamicHelp": false,
1374
+ "multiple": false,
1375
+ "type": "option"
1376
+ },
1377
+ "order": {
1378
+ "description": "Sort direction (asc/desc)",
1379
+ "name": "order",
1387
1380
  "required": false,
1388
1381
  "hasDynamicHelp": false,
1389
1382
  "multiple": false,
1390
1383
  "type": "option"
1391
1384
  },
1392
1385
  "identified": {
1393
- "description": "Filter to identified profiles only",
1386
+ "description": "Filter to identified companies only",
1394
1387
  "name": "identified",
1395
1388
  "required": false,
1396
1389
  "allowNo": true,
1397
1390
  "type": "boolean"
1398
1391
  },
1399
- "objects": {
1400
- "description": "Filter by viewed object IDs (space-separated)",
1401
- "name": "objects",
1392
+ "domains": {
1393
+ "description": "Filter by company domains (space-separated)",
1394
+ "name": "domains",
1402
1395
  "required": false,
1403
1396
  "hasDynamicHelp": false,
1404
1397
  "multiple": false,
@@ -1407,16 +1400,24 @@
1407
1400
  },
1408
1401
  "hasDynamicHelp": false,
1409
1402
  "hiddenAliases": [],
1410
- "id": "audience:metrics",
1403
+ "id": "audience:companies",
1411
1404
  "pluginAlias": "twentythree-cli",
1412
1405
  "pluginName": "twentythree-cli",
1413
1406
  "pluginType": "core",
1414
1407
  "strict": true,
1415
1408
  "agentMetadata": {
1416
- "api_endpoint": "GET /audience/metrics",
1409
+ "api_endpoint": "GET /audience/companies",
1417
1410
  "auth_scope": "read",
1418
1411
  "output_shape": {
1419
- "type": "key-value"
1412
+ "type": "table",
1413
+ "columns": [
1414
+ "UUID",
1415
+ "Name",
1416
+ "Domain",
1417
+ "Score",
1418
+ "Profiles",
1419
+ "Timelines"
1420
+ ]
1420
1421
  },
1421
1422
  "side_effects": "none"
1422
1423
  },
@@ -1426,17 +1427,17 @@
1426
1427
  "dist",
1427
1428
  "commands",
1428
1429
  "audience",
1429
- "metrics.cjs"
1430
+ "companies.cjs"
1430
1431
  ]
1431
1432
  },
1432
- "audience:register": {
1433
+ "audience:funnel": {
1433
1434
  "aliases": [],
1434
1435
  "args": {},
1435
- "description": "Register an audience contact",
1436
+ "description": "Get audience funnel analytics",
1436
1437
  "examples": [
1437
- "<%= config.bin %> audience register --email \"jane@example.com\"",
1438
- "<%= config.bin %> audience register --email \"john@acme.com\" --object-id 123 --firstname \"John\" --lastname \"Doe\"",
1439
- "<%= config.bin %> audience register --email \"user@co.com\" --company \"Acme Corp\" --source api --json"
1438
+ "<%= config.bin %> audience funnel",
1439
+ "<%= config.bin %> audience funnel --objects \"123 456\" --json",
1440
+ "<%= config.bin %> audience funnel --live-type on_demand --resolve-recordings"
1440
1441
  ],
1441
1442
  "flags": {
1442
1443
  "json": {
@@ -1463,101 +1464,51 @@
1463
1464
  "allowNo": false,
1464
1465
  "type": "boolean"
1465
1466
  },
1466
- "email": {
1467
- "description": "Contact email address",
1468
- "name": "email",
1469
- "required": true,
1470
- "hasDynamicHelp": false,
1471
- "multiple": false,
1472
- "type": "option"
1473
- },
1474
- "object-id": {
1475
- "description": "Webinar/video ID to register for",
1476
- "name": "object-id",
1477
- "required": false,
1478
- "hasDynamicHelp": false,
1479
- "multiple": false,
1480
- "type": "option"
1481
- },
1482
- "uuid": {
1483
- "description": "Existing contact UUID",
1484
- "name": "uuid",
1467
+ "objects": {
1468
+ "description": "Filter by object IDs (space-separated)",
1469
+ "name": "objects",
1485
1470
  "required": false,
1486
1471
  "hasDynamicHelp": false,
1487
1472
  "multiple": false,
1488
1473
  "type": "option"
1489
1474
  },
1490
- "action-id": {
1491
- "description": "Collector action ID",
1492
- "name": "action-id",
1475
+ "live-type": {
1476
+ "description": "Live event type filter",
1477
+ "name": "live-type",
1493
1478
  "required": false,
1494
1479
  "hasDynamicHelp": false,
1495
1480
  "multiple": false,
1496
1481
  "type": "option"
1497
1482
  },
1498
- "firstname": {
1499
- "description": "First name",
1500
- "name": "firstname",
1483
+ "resolve-recordings": {
1484
+ "description": "Resolve recording details",
1485
+ "name": "resolve-recordings",
1501
1486
  "required": false,
1502
- "hasDynamicHelp": false,
1503
- "multiple": false,
1504
- "type": "option"
1487
+ "allowNo": false,
1488
+ "type": "boolean"
1505
1489
  },
1506
- "lastname": {
1507
- "description": "Last name",
1508
- "name": "lastname",
1490
+ "resolve-live-series": {
1491
+ "description": "Resolve live series details",
1492
+ "name": "resolve-live-series",
1509
1493
  "required": false,
1510
- "hasDynamicHelp": false,
1511
- "multiple": false,
1512
- "type": "option"
1513
- },
1514
- "company": {
1515
- "description": "Company name",
1516
- "name": "company",
1517
- "required": false,
1518
- "hasDynamicHelp": false,
1519
- "multiple": false,
1520
- "type": "option"
1521
- },
1522
- "phone": {
1523
- "description": "Phone number",
1524
- "name": "phone",
1525
- "required": false,
1526
- "hasDynamicHelp": false,
1527
- "multiple": false,
1528
- "type": "option"
1529
- },
1530
- "return-url": {
1531
- "description": "Base URL for tracking URL",
1532
- "name": "return-url",
1533
- "required": false,
1534
- "hasDynamicHelp": false,
1535
- "multiple": false,
1536
- "type": "option"
1537
- },
1538
- "source": {
1539
- "description": "Registration source (api, import, site, custom)",
1540
- "name": "source",
1541
- "required": false,
1542
- "hasDynamicHelp": false,
1543
- "multiple": false,
1544
- "type": "option"
1494
+ "allowNo": false,
1495
+ "type": "boolean"
1545
1496
  }
1546
1497
  },
1547
1498
  "hasDynamicHelp": false,
1548
1499
  "hiddenAliases": [],
1549
- "id": "audience:register",
1500
+ "id": "audience:funnel",
1550
1501
  "pluginAlias": "twentythree-cli",
1551
1502
  "pluginName": "twentythree-cli",
1552
1503
  "pluginType": "core",
1553
1504
  "strict": true,
1554
1505
  "agentMetadata": {
1555
- "api_endpoint": "POST /audience/register",
1556
- "auth_scope": "write",
1506
+ "api_endpoint": "GET /audience/funnel",
1507
+ "auth_scope": "read",
1557
1508
  "output_shape": {
1558
- "type": "none"
1509
+ "type": "key-value"
1559
1510
  },
1560
- "side_effects": "creates"
1511
+ "side_effects": "none"
1561
1512
  },
1562
1513
  "enableJsonFlag": true,
1563
1514
  "isESM": false,
@@ -1565,17 +1516,16 @@
1565
1516
  "dist",
1566
1517
  "commands",
1567
1518
  "audience",
1568
- "register.cjs"
1519
+ "funnel.cjs"
1569
1520
  ]
1570
1521
  },
1571
- "audience:remove": {
1522
+ "audience:identity-sources": {
1572
1523
  "aliases": [],
1573
1524
  "args": {},
1574
- "description": "Permanently remove an audience contact",
1525
+ "description": "List audience identity sources",
1575
1526
  "examples": [
1576
- "<%= config.bin %> audience remove --email \"jane@example.com\"",
1577
- "<%= config.bin %> audience remove --uuid \"abc-def-ghi\"",
1578
- "<%= config.bin %> audience remove --email \"user@co.com\" --json"
1527
+ "<%= config.bin %> audience identity-sources",
1528
+ "<%= config.bin %> audience identity-sources --json"
1579
1529
  ],
1580
1530
  "flags": {
1581
1531
  "json": {
@@ -1601,38 +1551,27 @@
1601
1551
  "name": "agent",
1602
1552
  "allowNo": false,
1603
1553
  "type": "boolean"
1604
- },
1605
- "email": {
1606
- "description": "Contact email address",
1607
- "name": "email",
1608
- "required": false,
1609
- "hasDynamicHelp": false,
1610
- "multiple": false,
1611
- "type": "option"
1612
- },
1613
- "uuid": {
1614
- "description": "Contact UUID",
1615
- "name": "uuid",
1616
- "required": false,
1617
- "hasDynamicHelp": false,
1618
- "multiple": false,
1619
- "type": "option"
1620
1554
  }
1621
1555
  },
1622
1556
  "hasDynamicHelp": false,
1623
1557
  "hiddenAliases": [],
1624
- "id": "audience:remove",
1558
+ "id": "audience:identity-sources",
1625
1559
  "pluginAlias": "twentythree-cli",
1626
1560
  "pluginName": "twentythree-cli",
1627
1561
  "pluginType": "core",
1628
1562
  "strict": true,
1629
1563
  "agentMetadata": {
1630
- "api_endpoint": "POST /audience/remove",
1631
- "auth_scope": "write",
1564
+ "api_endpoint": "GET /audience/identity-sources",
1565
+ "auth_scope": "read",
1632
1566
  "output_shape": {
1633
- "type": "none"
1567
+ "type": "table",
1568
+ "columns": [
1569
+ "Source",
1570
+ "Title",
1571
+ "Service"
1572
+ ]
1634
1573
  },
1635
- "side_effects": "destructive"
1574
+ "side_effects": "none"
1636
1575
  },
1637
1576
  "enableJsonFlag": true,
1638
1577
  "isESM": false,
@@ -1640,17 +1579,17 @@
1640
1579
  "dist",
1641
1580
  "commands",
1642
1581
  "audience",
1643
- "remove.cjs"
1582
+ "identity-sources.cjs"
1644
1583
  ]
1645
1584
  },
1646
- "audience:search": {
1585
+ "audience:list-collectors": {
1647
1586
  "aliases": [],
1648
1587
  "args": {},
1649
- "description": "Search audience members",
1588
+ "description": "List collectors linked to audience",
1650
1589
  "examples": [
1651
- "<%= config.bin %> audience search --text \"john doe\"",
1652
- "<%= config.bin %> audience search --text \"acme\" --size 20 --json",
1653
- "<%= config.bin %> audience search --text \"jane\" --orderby score --order desc"
1590
+ "<%= config.bin %> audience list-collectors",
1591
+ "<%= config.bin %> audience list-collectors --object-id 123",
1592
+ "<%= config.bin %> audience list-collectors --action-id 456 --json"
1654
1593
  ],
1655
1594
  "flags": {
1656
1595
  "json": {
@@ -1677,41 +1616,17 @@
1677
1616
  "allowNo": false,
1678
1617
  "type": "boolean"
1679
1618
  },
1680
- "text": {
1681
- "description": "Search text (required)",
1682
- "name": "text",
1683
- "required": true,
1684
- "hasDynamicHelp": false,
1685
- "multiple": false,
1686
- "type": "option"
1687
- },
1688
- "size": {
1689
- "description": "Number of results",
1690
- "name": "size",
1691
- "required": false,
1692
- "hasDynamicHelp": false,
1693
- "multiple": false,
1694
- "type": "option"
1695
- },
1696
- "offset": {
1697
- "description": "Results offset",
1698
- "name": "offset",
1699
- "required": false,
1700
- "hasDynamicHelp": false,
1701
- "multiple": false,
1702
- "type": "option"
1703
- },
1704
- "orderby": {
1705
- "description": "Order by field",
1706
- "name": "orderby",
1619
+ "object-id": {
1620
+ "description": "Filter by object ID",
1621
+ "name": "object-id",
1707
1622
  "required": false,
1708
1623
  "hasDynamicHelp": false,
1709
1624
  "multiple": false,
1710
1625
  "type": "option"
1711
1626
  },
1712
- "order": {
1713
- "description": "Sort direction (asc/desc)",
1714
- "name": "order",
1627
+ "action-id": {
1628
+ "description": "Filter by action ID",
1629
+ "name": "action-id",
1715
1630
  "required": false,
1716
1631
  "hasDynamicHelp": false,
1717
1632
  "multiple": false,
@@ -1720,23 +1635,22 @@
1720
1635
  },
1721
1636
  "hasDynamicHelp": false,
1722
1637
  "hiddenAliases": [],
1723
- "id": "audience:search",
1638
+ "id": "audience:list-collectors",
1724
1639
  "pluginAlias": "twentythree-cli",
1725
1640
  "pluginName": "twentythree-cli",
1726
1641
  "pluginType": "core",
1727
1642
  "strict": true,
1728
1643
  "agentMetadata": {
1729
- "api_endpoint": "GET /audience/search",
1644
+ "api_endpoint": "GET /audience/list-collectors",
1730
1645
  "auth_scope": "read",
1731
1646
  "output_shape": {
1732
1647
  "type": "table",
1733
1648
  "columns": [
1734
- "UUID",
1649
+ "Action ID",
1735
1650
  "Name",
1736
- "Email",
1737
- "Company",
1738
- "Score",
1739
- "Last Seen"
1651
+ "Start",
1652
+ "End",
1653
+ "Require Email"
1740
1654
  ]
1741
1655
  },
1742
1656
  "side_effects": "none"
@@ -1747,17 +1661,17 @@
1747
1661
  "dist",
1748
1662
  "commands",
1749
1663
  "audience",
1750
- "search.cjs"
1664
+ "list-collectors.cjs"
1751
1665
  ]
1752
1666
  },
1753
- "audience:timelines": {
1667
+ "audience:list": {
1754
1668
  "aliases": [],
1755
1669
  "args": {},
1756
- "description": "Get audience member timelines",
1670
+ "description": "List audience members",
1757
1671
  "examples": [
1758
- "<%= config.bin %> audience timelines",
1759
- "<%= config.bin %> audience timelines --uuid \"abc-123\" --size 20",
1760
- "<%= config.bin %> audience timelines --objects \"456 789\" --json"
1672
+ "<%= config.bin %> audience list",
1673
+ "<%= config.bin %> audience list --page 2 --size 50",
1674
+ "<%= config.bin %> audience list --search \"john\" --identified --json"
1761
1675
  ],
1762
1676
  "flags": {
1763
1677
  "json": {
@@ -1793,7 +1707,7 @@
1793
1707
  "type": "option"
1794
1708
  },
1795
1709
  "size": {
1796
- "description": "Page size",
1710
+ "description": "Page size (max 500)",
1797
1711
  "name": "size",
1798
1712
  "required": false,
1799
1713
  "hasDynamicHelp": false,
@@ -1808,33 +1722,40 @@
1808
1722
  "multiple": false,
1809
1723
  "type": "option"
1810
1724
  },
1811
- "uuid": {
1812
- "description": "Filter by audience member UUID",
1813
- "name": "uuid",
1725
+ "orderby": {
1726
+ "description": "Order by field (recent, timeline_count, score, first)",
1727
+ "name": "orderby",
1814
1728
  "required": false,
1815
1729
  "hasDynamicHelp": false,
1816
1730
  "multiple": false,
1817
1731
  "type": "option"
1818
1732
  },
1819
- "objects": {
1820
- "description": "Filter by object IDs (space-separated)",
1821
- "name": "objects",
1733
+ "order": {
1734
+ "description": "Sort direction (asc/desc)",
1735
+ "name": "order",
1822
1736
  "required": false,
1823
1737
  "hasDynamicHelp": false,
1824
1738
  "multiple": false,
1825
1739
  "type": "option"
1826
1740
  },
1827
- "orderby": {
1828
- "description": "Order by field",
1829
- "name": "orderby",
1741
+ "search": {
1742
+ "description": "Free-text search across names and emails",
1743
+ "name": "search",
1830
1744
  "required": false,
1831
1745
  "hasDynamicHelp": false,
1832
1746
  "multiple": false,
1833
1747
  "type": "option"
1834
1748
  },
1835
- "order": {
1836
- "description": "Sort direction (asc/desc)",
1837
- "name": "order",
1749
+ "identified": {
1750
+ "description": "Filter to identified profiles only",
1751
+ "name": "identified",
1752
+ "required": false,
1753
+ "allowNo": true,
1754
+ "type": "boolean"
1755
+ },
1756
+ "objects": {
1757
+ "description": "Filter by viewed object IDs (space-separated)",
1758
+ "name": "objects",
1838
1759
  "required": false,
1839
1760
  "hasDynamicHelp": false,
1840
1761
  "multiple": false,
@@ -1843,23 +1764,23 @@
1843
1764
  },
1844
1765
  "hasDynamicHelp": false,
1845
1766
  "hiddenAliases": [],
1846
- "id": "audience:timelines",
1767
+ "id": "audience:list",
1847
1768
  "pluginAlias": "twentythree-cli",
1848
1769
  "pluginName": "twentythree-cli",
1849
1770
  "pluginType": "core",
1850
1771
  "strict": true,
1851
1772
  "agentMetadata": {
1852
- "api_endpoint": "GET /audience/timelines",
1773
+ "api_endpoint": "GET /audience/list",
1853
1774
  "auth_scope": "read",
1854
1775
  "output_shape": {
1855
1776
  "type": "table",
1856
1777
  "columns": [
1857
1778
  "UUID",
1858
- "Object ID",
1859
- "Type",
1860
- "Engagement",
1861
- "Sessions",
1862
- "Source"
1779
+ "Name",
1780
+ "Email",
1781
+ "Company",
1782
+ "Score",
1783
+ "Timelines"
1863
1784
  ]
1864
1785
  },
1865
1786
  "side_effects": "none"
@@ -1870,17 +1791,17 @@
1870
1791
  "dist",
1871
1792
  "commands",
1872
1793
  "audience",
1873
- "timelines.cjs"
1794
+ "list.cjs"
1874
1795
  ]
1875
1796
  },
1876
- "audience:unregister": {
1797
+ "audience:metrics": {
1877
1798
  "aliases": [],
1878
1799
  "args": {},
1879
- "description": "Remove a registration for an audience contact",
1800
+ "description": "Get audience aggregate metrics",
1880
1801
  "examples": [
1881
- "<%= config.bin %> audience unregister --object-id 123 --email \"jane@example.com\"",
1882
- "<%= config.bin %> audience unregister --object-id 456 --uuid \"abc-def-ghi\"",
1883
- "<%= config.bin %> audience unregister --object-id 789 --json"
1802
+ "<%= config.bin %> audience metrics",
1803
+ "<%= config.bin %> audience metrics --identified --json",
1804
+ "<%= config.bin %> audience metrics --search \"acme\" --size 100"
1884
1805
  ],
1885
1806
  "flags": {
1886
1807
  "json": {
@@ -1907,63 +1828,86 @@
1907
1828
  "allowNo": false,
1908
1829
  "type": "boolean"
1909
1830
  },
1910
- "object-id": {
1911
- "description": "Object ID to unregister from",
1912
- "name": "object-id",
1913
- "required": true,
1831
+ "page": {
1832
+ "description": "Page number",
1833
+ "name": "page",
1834
+ "required": false,
1914
1835
  "hasDynamicHelp": false,
1915
1836
  "multiple": false,
1916
1837
  "type": "option"
1917
1838
  },
1918
- "email": {
1919
- "description": "Contact email",
1920
- "name": "email",
1839
+ "size": {
1840
+ "description": "Page size",
1841
+ "name": "size",
1921
1842
  "required": false,
1922
1843
  "hasDynamicHelp": false,
1923
1844
  "multiple": false,
1924
1845
  "type": "option"
1925
1846
  },
1926
- "uuid": {
1927
- "description": "Contact UUID",
1928
- "name": "uuid",
1847
+ "offset": {
1848
+ "description": "Offset for pagination",
1849
+ "name": "offset",
1929
1850
  "required": false,
1930
1851
  "hasDynamicHelp": false,
1931
1852
  "multiple": false,
1932
1853
  "type": "option"
1933
- }
1934
- },
1935
- "hasDynamicHelp": false,
1936
- "hiddenAliases": [],
1937
- "id": "audience:unregister",
1938
- "pluginAlias": "twentythree-cli",
1939
- "pluginName": "twentythree-cli",
1940
- "pluginType": "core",
1941
- "strict": true,
1942
- "agentMetadata": {
1943
- "api_endpoint": "POST /audience/unregister",
1944
- "auth_scope": "write",
1945
- "output_shape": {
1946
- "type": "none"
1947
1854
  },
1948
- "side_effects": "destructive"
1949
- },
1950
- "enableJsonFlag": true,
1951
- "isESM": false,
1952
- "relativePath": [
1855
+ "search": {
1856
+ "description": "Free-text search filter",
1857
+ "name": "search",
1858
+ "required": false,
1859
+ "hasDynamicHelp": false,
1860
+ "multiple": false,
1861
+ "type": "option"
1862
+ },
1863
+ "identified": {
1864
+ "description": "Filter to identified profiles only",
1865
+ "name": "identified",
1866
+ "required": false,
1867
+ "allowNo": true,
1868
+ "type": "boolean"
1869
+ },
1870
+ "objects": {
1871
+ "description": "Filter by viewed object IDs (space-separated)",
1872
+ "name": "objects",
1873
+ "required": false,
1874
+ "hasDynamicHelp": false,
1875
+ "multiple": false,
1876
+ "type": "option"
1877
+ }
1878
+ },
1879
+ "hasDynamicHelp": false,
1880
+ "hiddenAliases": [],
1881
+ "id": "audience:metrics",
1882
+ "pluginAlias": "twentythree-cli",
1883
+ "pluginName": "twentythree-cli",
1884
+ "pluginType": "core",
1885
+ "strict": true,
1886
+ "agentMetadata": {
1887
+ "api_endpoint": "GET /audience/metrics",
1888
+ "auth_scope": "read",
1889
+ "output_shape": {
1890
+ "type": "key-value"
1891
+ },
1892
+ "side_effects": "none"
1893
+ },
1894
+ "enableJsonFlag": true,
1895
+ "isESM": false,
1896
+ "relativePath": [
1953
1897
  "dist",
1954
1898
  "commands",
1955
1899
  "audience",
1956
- "unregister.cjs"
1900
+ "metrics.cjs"
1957
1901
  ]
1958
1902
  },
1959
- "app:add": {
1903
+ "audience:register": {
1960
1904
  "aliases": [],
1961
1905
  "args": {},
1962
- "description": "Create a new app integration",
1906
+ "description": "Register an audience contact",
1963
1907
  "examples": [
1964
- "<%= config.bin %> app add --name \"My App\"",
1965
- "<%= config.bin %> app add --name \"My App\" --description \"A sample app\"",
1966
- "<%= config.bin %> app add --name \"My App\" --json"
1908
+ "<%= config.bin %> audience register --email \"jane@example.com\"",
1909
+ "<%= config.bin %> audience register --email \"john@acme.com\" --object-id 123 --firstname \"John\" --lastname \"Doe\"",
1910
+ "<%= config.bin %> audience register --email \"user@co.com\" --company \"Acme Corp\" --source api --json"
1967
1911
  ],
1968
1912
  "flags": {
1969
1913
  "json": {
@@ -1990,33 +1934,81 @@
1990
1934
  "allowNo": false,
1991
1935
  "type": "boolean"
1992
1936
  },
1993
- "name": {
1994
- "description": "App name",
1995
- "name": "name",
1937
+ "email": {
1938
+ "description": "Contact email address",
1939
+ "name": "email",
1996
1940
  "required": true,
1997
1941
  "hasDynamicHelp": false,
1998
1942
  "multiple": false,
1999
1943
  "type": "option"
2000
1944
  },
2001
- "description": {
2002
- "description": "App description",
2003
- "name": "description",
1945
+ "object-id": {
1946
+ "description": "Webinar/video ID to register for",
1947
+ "name": "object-id",
2004
1948
  "required": false,
2005
1949
  "hasDynamicHelp": false,
2006
1950
  "multiple": false,
2007
1951
  "type": "option"
2008
1952
  },
2009
- "style": {
2010
- "description": "App style",
2011
- "name": "style",
1953
+ "uuid": {
1954
+ "description": "Existing contact UUID",
1955
+ "name": "uuid",
2012
1956
  "required": false,
2013
1957
  "hasDynamicHelp": false,
2014
1958
  "multiple": false,
2015
1959
  "type": "option"
2016
1960
  },
2017
- "type": {
2018
- "description": "App type",
2019
- "name": "type",
1961
+ "action-id": {
1962
+ "description": "Collector action ID",
1963
+ "name": "action-id",
1964
+ "required": false,
1965
+ "hasDynamicHelp": false,
1966
+ "multiple": false,
1967
+ "type": "option"
1968
+ },
1969
+ "firstname": {
1970
+ "description": "First name",
1971
+ "name": "firstname",
1972
+ "required": false,
1973
+ "hasDynamicHelp": false,
1974
+ "multiple": false,
1975
+ "type": "option"
1976
+ },
1977
+ "lastname": {
1978
+ "description": "Last name",
1979
+ "name": "lastname",
1980
+ "required": false,
1981
+ "hasDynamicHelp": false,
1982
+ "multiple": false,
1983
+ "type": "option"
1984
+ },
1985
+ "company": {
1986
+ "description": "Company name",
1987
+ "name": "company",
1988
+ "required": false,
1989
+ "hasDynamicHelp": false,
1990
+ "multiple": false,
1991
+ "type": "option"
1992
+ },
1993
+ "phone": {
1994
+ "description": "Phone number",
1995
+ "name": "phone",
1996
+ "required": false,
1997
+ "hasDynamicHelp": false,
1998
+ "multiple": false,
1999
+ "type": "option"
2000
+ },
2001
+ "return-url": {
2002
+ "description": "Base URL for tracking URL",
2003
+ "name": "return-url",
2004
+ "required": false,
2005
+ "hasDynamicHelp": false,
2006
+ "multiple": false,
2007
+ "type": "option"
2008
+ },
2009
+ "source": {
2010
+ "description": "Registration source (api, import, site, custom)",
2011
+ "name": "source",
2020
2012
  "required": false,
2021
2013
  "hasDynamicHelp": false,
2022
2014
  "multiple": false,
@@ -2025,41 +2017,36 @@
2025
2017
  },
2026
2018
  "hasDynamicHelp": false,
2027
2019
  "hiddenAliases": [],
2028
- "id": "app:add",
2020
+ "id": "audience:register",
2029
2021
  "pluginAlias": "twentythree-cli",
2030
2022
  "pluginName": "twentythree-cli",
2031
2023
  "pluginType": "core",
2032
2024
  "strict": true,
2033
- "enableJsonFlag": true,
2034
2025
  "agentMetadata": {
2035
- "api_endpoint": "POST /app/add",
2026
+ "api_endpoint": "POST /audience/register",
2036
2027
  "auth_scope": "write",
2037
2028
  "output_shape": {
2038
- "type": "key-value"
2029
+ "type": "none"
2039
2030
  },
2040
2031
  "side_effects": "creates"
2041
2032
  },
2033
+ "enableJsonFlag": true,
2042
2034
  "isESM": false,
2043
2035
  "relativePath": [
2044
2036
  "dist",
2045
2037
  "commands",
2046
- "app",
2047
- "add.cjs"
2038
+ "audience",
2039
+ "register.cjs"
2048
2040
  ]
2049
2041
  },
2050
- "app:delete": {
2042
+ "audience:remove": {
2051
2043
  "aliases": [],
2052
- "args": {
2053
- "id": {
2054
- "description": "App ID",
2055
- "name": "id",
2056
- "required": true
2057
- }
2058
- },
2059
- "description": "Delete an app integration from the active workspace",
2044
+ "args": {},
2045
+ "description": "Permanently remove an audience contact",
2060
2046
  "examples": [
2061
- "<%= config.bin %> app delete 12345",
2062
- "<%= config.bin %> app delete 12345 --json"
2047
+ "<%= config.bin %> audience remove --email \"jane@example.com\"",
2048
+ "<%= config.bin %> audience remove --uuid \"abc-def-ghi\"",
2049
+ "<%= config.bin %> audience remove --email \"user@co.com\" --json"
2063
2050
  ],
2064
2051
  "flags": {
2065
2052
  "json": {
@@ -2085,41 +2072,56 @@
2085
2072
  "name": "agent",
2086
2073
  "allowNo": false,
2087
2074
  "type": "boolean"
2075
+ },
2076
+ "email": {
2077
+ "description": "Contact email address",
2078
+ "name": "email",
2079
+ "required": false,
2080
+ "hasDynamicHelp": false,
2081
+ "multiple": false,
2082
+ "type": "option"
2083
+ },
2084
+ "uuid": {
2085
+ "description": "Contact UUID",
2086
+ "name": "uuid",
2087
+ "required": false,
2088
+ "hasDynamicHelp": false,
2089
+ "multiple": false,
2090
+ "type": "option"
2088
2091
  }
2089
2092
  },
2090
2093
  "hasDynamicHelp": false,
2091
2094
  "hiddenAliases": [],
2092
- "id": "app:delete",
2095
+ "id": "audience:remove",
2093
2096
  "pluginAlias": "twentythree-cli",
2094
2097
  "pluginName": "twentythree-cli",
2095
2098
  "pluginType": "core",
2096
2099
  "strict": true,
2097
- "enableJsonFlag": true,
2098
2100
  "agentMetadata": {
2099
- "api_endpoint": "POST /app/delete",
2101
+ "api_endpoint": "POST /audience/remove",
2100
2102
  "auth_scope": "write",
2101
2103
  "output_shape": {
2102
- "type": "key-value"
2104
+ "type": "none"
2103
2105
  },
2104
2106
  "side_effects": "destructive"
2105
2107
  },
2108
+ "enableJsonFlag": true,
2106
2109
  "isESM": false,
2107
2110
  "relativePath": [
2108
2111
  "dist",
2109
2112
  "commands",
2110
- "app",
2111
- "delete.cjs"
2113
+ "audience",
2114
+ "remove.cjs"
2112
2115
  ]
2113
2116
  },
2114
- "app:list": {
2117
+ "audience:search": {
2115
2118
  "aliases": [],
2116
2119
  "args": {},
2117
- "description": "List player design apps on the active workspace",
2120
+ "description": "Search audience members",
2118
2121
  "examples": [
2119
- "<%= config.bin %> app list",
2120
- "<%= config.bin %> app list --app-id 42",
2121
- "<%= config.bin %> app list --page 2 --size 50",
2122
- "<%= config.bin %> app list --json"
2122
+ "<%= config.bin %> audience search --text \"john doe\"",
2123
+ "<%= config.bin %> audience search --text \"acme\" --size 20 --json",
2124
+ "<%= config.bin %> audience search --text \"jane\" --orderby score --order desc"
2123
2125
  ],
2124
2126
  "flags": {
2125
2127
  "json": {
@@ -2146,25 +2148,41 @@
2146
2148
  "allowNo": false,
2147
2149
  "type": "boolean"
2148
2150
  },
2149
- "app-id": {
2150
- "description": "Filter results to a specific app ID",
2151
- "name": "app-id",
2151
+ "text": {
2152
+ "description": "Search text (required)",
2153
+ "name": "text",
2154
+ "required": true,
2155
+ "hasDynamicHelp": false,
2156
+ "multiple": false,
2157
+ "type": "option"
2158
+ },
2159
+ "size": {
2160
+ "description": "Number of results",
2161
+ "name": "size",
2152
2162
  "required": false,
2153
2163
  "hasDynamicHelp": false,
2154
2164
  "multiple": false,
2155
2165
  "type": "option"
2156
2166
  },
2157
- "page": {
2158
- "description": "Page offset",
2159
- "name": "page",
2167
+ "offset": {
2168
+ "description": "Results offset",
2169
+ "name": "offset",
2160
2170
  "required": false,
2161
2171
  "hasDynamicHelp": false,
2162
2172
  "multiple": false,
2163
2173
  "type": "option"
2164
2174
  },
2165
- "size": {
2166
- "description": "Number of results per page (default 20, max 100)",
2167
- "name": "size",
2175
+ "orderby": {
2176
+ "description": "Order by field",
2177
+ "name": "orderby",
2178
+ "required": false,
2179
+ "hasDynamicHelp": false,
2180
+ "multiple": false,
2181
+ "type": "option"
2182
+ },
2183
+ "order": {
2184
+ "description": "Sort direction (asc/desc)",
2185
+ "name": "order",
2168
2186
  "required": false,
2169
2187
  "hasDynamicHelp": false,
2170
2188
  "multiple": false,
@@ -2173,47 +2191,44 @@
2173
2191
  },
2174
2192
  "hasDynamicHelp": false,
2175
2193
  "hiddenAliases": [],
2176
- "id": "app:list",
2194
+ "id": "audience:search",
2177
2195
  "pluginAlias": "twentythree-cli",
2178
2196
  "pluginName": "twentythree-cli",
2179
2197
  "pluginType": "core",
2180
2198
  "strict": true,
2181
- "enableJsonFlag": true,
2182
2199
  "agentMetadata": {
2183
- "api_endpoint": "POST /app/list",
2200
+ "api_endpoint": "GET /audience/search",
2184
2201
  "auth_scope": "read",
2185
2202
  "output_shape": {
2186
2203
  "type": "table",
2187
2204
  "columns": [
2188
- "ID",
2205
+ "UUID",
2189
2206
  "Name",
2190
- "Type",
2191
- "Description"
2207
+ "Email",
2208
+ "Company",
2209
+ "Score",
2210
+ "Last Seen"
2192
2211
  ]
2193
2212
  },
2194
2213
  "side_effects": "none"
2195
2214
  },
2215
+ "enableJsonFlag": true,
2196
2216
  "isESM": false,
2197
2217
  "relativePath": [
2198
2218
  "dist",
2199
2219
  "commands",
2200
- "app",
2201
- "list.cjs"
2220
+ "audience",
2221
+ "search.cjs"
2202
2222
  ]
2203
2223
  },
2204
- "app:remove-thumbnail": {
2224
+ "audience:timelines": {
2205
2225
  "aliases": [],
2206
- "args": {
2207
- "id": {
2208
- "description": "App ID",
2209
- "name": "id",
2210
- "required": true
2211
- }
2212
- },
2213
- "description": "Remove the custom thumbnail for an app, reverting to the default",
2226
+ "args": {},
2227
+ "description": "Get audience member timelines",
2214
2228
  "examples": [
2215
- "<%= config.bin %> app remove-thumbnail 42",
2216
- "<%= config.bin %> app remove-thumbnail 42 --json"
2229
+ "<%= config.bin %> audience timelines",
2230
+ "<%= config.bin %> audience timelines --uuid \"abc-123\" --size 20",
2231
+ "<%= config.bin %> audience timelines --objects \"456 789\" --json"
2217
2232
  ],
2218
2233
  "flags": {
2219
2234
  "json": {
@@ -2239,75 +2254,59 @@
2239
2254
  "name": "agent",
2240
2255
  "allowNo": false,
2241
2256
  "type": "boolean"
2242
- }
2243
- },
2244
- "hasDynamicHelp": false,
2245
- "hiddenAliases": [],
2246
- "id": "app:remove-thumbnail",
2247
- "pluginAlias": "twentythree-cli",
2248
- "pluginName": "twentythree-cli",
2249
- "pluginType": "core",
2250
- "strict": true,
2251
- "enableJsonFlag": true,
2252
- "agentMetadata": {
2253
- "api_endpoint": "POST /app/remove-thumbnail",
2254
- "auth_scope": "write",
2255
- "output_shape": {
2256
- "type": "key-value"
2257
2257
  },
2258
- "side_effects": "updates"
2259
- },
2260
- "isESM": false,
2261
- "relativePath": [
2262
- "dist",
2263
- "commands",
2264
- "app",
2265
- "remove-thumbnail.cjs"
2266
- ]
2267
- },
2268
- "app:set-thumbnail": {
2269
- "aliases": [],
2270
- "args": {
2271
- "file": {
2272
- "description": "Path to the thumbnail image file",
2273
- "name": "file",
2274
- "required": true
2275
- }
2276
- },
2277
- "description": "Upload and set a custom thumbnail image for an app",
2278
- "examples": [
2279
- "<%= config.bin %> app set-thumbnail ./thumbnail.png --app-id 42",
2280
- "<%= config.bin %> app set-thumbnail ./thumbnail.jpg --app-id 42 --json"
2281
- ],
2282
- "flags": {
2283
- "json": {
2284
- "description": "Format output as json.",
2285
- "helpGroup": "GLOBAL",
2286
- "name": "json",
2287
- "allowNo": false,
2288
- "type": "boolean"
2258
+ "page": {
2259
+ "description": "Page number",
2260
+ "name": "page",
2261
+ "required": false,
2262
+ "hasDynamicHelp": false,
2263
+ "multiple": false,
2264
+ "type": "option"
2289
2265
  },
2290
- "workspace": {
2291
- "char": "w",
2292
- "helpGroup": "GLOBAL",
2293
- "name": "workspace",
2294
- "summary": "Workspace domain or display name to use for this invocation.",
2266
+ "size": {
2267
+ "description": "Page size",
2268
+ "name": "size",
2269
+ "required": false,
2270
+ "hasDynamicHelp": false,
2271
+ "multiple": false,
2272
+ "type": "option"
2273
+ },
2274
+ "offset": {
2275
+ "description": "Offset for pagination",
2276
+ "name": "offset",
2277
+ "required": false,
2278
+ "hasDynamicHelp": false,
2279
+ "multiple": false,
2280
+ "type": "option"
2281
+ },
2282
+ "uuid": {
2283
+ "description": "Filter by audience member UUID",
2284
+ "name": "uuid",
2285
+ "required": false,
2286
+ "hasDynamicHelp": false,
2287
+ "multiple": false,
2288
+ "type": "option"
2289
+ },
2290
+ "objects": {
2291
+ "description": "Filter by object IDs (space-separated)",
2292
+ "name": "objects",
2293
+ "required": false,
2295
2294
  "hasDynamicHelp": false,
2296
2295
  "multiple": false,
2297
2296
  "type": "option"
2298
2297
  },
2299
- "agent": {
2300
- "description": "Output machine-readable command metadata for AI agent consumption",
2301
- "helpGroup": "GLOBAL",
2302
- "hidden": true,
2303
- "name": "agent",
2304
- "allowNo": false,
2305
- "type": "boolean"
2298
+ "orderby": {
2299
+ "description": "Order by field",
2300
+ "name": "orderby",
2301
+ "required": false,
2302
+ "hasDynamicHelp": false,
2303
+ "multiple": false,
2304
+ "type": "option"
2306
2305
  },
2307
- "app-id": {
2308
- "description": "App ID to update",
2309
- "name": "app-id",
2310
- "required": true,
2306
+ "order": {
2307
+ "description": "Sort direction (asc/desc)",
2308
+ "name": "order",
2309
+ "required": false,
2311
2310
  "hasDynamicHelp": false,
2312
2311
  "multiple": false,
2313
2312
  "type": "option"
@@ -2315,43 +2314,44 @@
2315
2314
  },
2316
2315
  "hasDynamicHelp": false,
2317
2316
  "hiddenAliases": [],
2318
- "id": "app:set-thumbnail",
2317
+ "id": "audience:timelines",
2319
2318
  "pluginAlias": "twentythree-cli",
2320
2319
  "pluginName": "twentythree-cli",
2321
2320
  "pluginType": "core",
2322
2321
  "strict": true,
2323
- "enableJsonFlag": true,
2324
2322
  "agentMetadata": {
2325
- "api_endpoint": "POST /app/set-thumbnail",
2326
- "auth_scope": "write",
2323
+ "api_endpoint": "GET /audience/timelines",
2324
+ "auth_scope": "read",
2327
2325
  "output_shape": {
2328
- "type": "key-value"
2326
+ "type": "table",
2327
+ "columns": [
2328
+ "UUID",
2329
+ "Object ID",
2330
+ "Type",
2331
+ "Engagement",
2332
+ "Sessions",
2333
+ "Source"
2334
+ ]
2329
2335
  },
2330
- "side_effects": "updates"
2336
+ "side_effects": "none"
2331
2337
  },
2338
+ "enableJsonFlag": true,
2332
2339
  "isESM": false,
2333
2340
  "relativePath": [
2334
2341
  "dist",
2335
2342
  "commands",
2336
- "app",
2337
- "set-thumbnail.cjs"
2343
+ "audience",
2344
+ "timelines.cjs"
2338
2345
  ]
2339
2346
  },
2340
- "app:update": {
2347
+ "audience:unregister": {
2341
2348
  "aliases": [],
2342
- "args": {
2343
- "id": {
2344
- "description": "App ID",
2345
- "name": "id",
2346
- "required": true
2347
- }
2348
- },
2349
- "description": "Update an existing app integration",
2349
+ "args": {},
2350
+ "description": "Remove a registration for an audience contact",
2350
2351
  "examples": [
2351
- "<%= config.bin %> app update 12345 --name \"Updated Name\"",
2352
- "<%= config.bin %> app update 12345 --description \"New description\"",
2353
- "<%= config.bin %> app update 12345 --name \"Updated Name\" --description \"New description\"",
2354
- "<%= config.bin %> app update 12345 --name \"Updated Name\" --json"
2352
+ "<%= config.bin %> audience unregister --object-id 123 --email \"jane@example.com\"",
2353
+ "<%= config.bin %> audience unregister --object-id 456 --uuid \"abc-def-ghi\"",
2354
+ "<%= config.bin %> audience unregister --object-id 789 --json"
2355
2355
  ],
2356
2356
  "flags": {
2357
2357
  "json": {
@@ -2378,25 +2378,25 @@
2378
2378
  "allowNo": false,
2379
2379
  "type": "boolean"
2380
2380
  },
2381
- "name": {
2382
- "description": "App name",
2383
- "name": "name",
2384
- "required": false,
2381
+ "object-id": {
2382
+ "description": "Object ID to unregister from",
2383
+ "name": "object-id",
2384
+ "required": true,
2385
2385
  "hasDynamicHelp": false,
2386
2386
  "multiple": false,
2387
2387
  "type": "option"
2388
2388
  },
2389
- "description": {
2390
- "description": "App description",
2391
- "name": "description",
2389
+ "email": {
2390
+ "description": "Contact email",
2391
+ "name": "email",
2392
2392
  "required": false,
2393
2393
  "hasDynamicHelp": false,
2394
2394
  "multiple": false,
2395
2395
  "type": "option"
2396
2396
  },
2397
- "style": {
2398
- "description": "App style",
2399
- "name": "style",
2397
+ "uuid": {
2398
+ "description": "Contact UUID",
2399
+ "name": "uuid",
2400
2400
  "required": false,
2401
2401
  "hasDynamicHelp": false,
2402
2402
  "multiple": false,
@@ -2405,26 +2405,26 @@
2405
2405
  },
2406
2406
  "hasDynamicHelp": false,
2407
2407
  "hiddenAliases": [],
2408
- "id": "app:update",
2408
+ "id": "audience:unregister",
2409
2409
  "pluginAlias": "twentythree-cli",
2410
2410
  "pluginName": "twentythree-cli",
2411
2411
  "pluginType": "core",
2412
2412
  "strict": true,
2413
- "enableJsonFlag": true,
2414
2413
  "agentMetadata": {
2415
- "api_endpoint": "POST /app/update",
2414
+ "api_endpoint": "POST /audience/unregister",
2416
2415
  "auth_scope": "write",
2417
2416
  "output_shape": {
2418
- "type": "key-value"
2417
+ "type": "none"
2419
2418
  },
2420
- "side_effects": "updates"
2419
+ "side_effects": "destructive"
2421
2420
  },
2421
+ "enableJsonFlag": true,
2422
2422
  "isESM": false,
2423
2423
  "relativePath": [
2424
2424
  "dist",
2425
2425
  "commands",
2426
- "app",
2427
- "update.cjs"
2426
+ "audience",
2427
+ "unregister.cjs"
2428
2428
  ]
2429
2429
  },
2430
2430
  "auth:credentials": {
@@ -2516,6 +2516,63 @@
2516
2516
  "status.cjs"
2517
2517
  ]
2518
2518
  },
2519
+ "autocomplete": {
2520
+ "aliases": [],
2521
+ "args": {},
2522
+ "description": "Set up tab completion for your shell",
2523
+ "examples": [
2524
+ "<%= config.bin %> autocomplete"
2525
+ ],
2526
+ "flags": {
2527
+ "json": {
2528
+ "description": "Format output as json.",
2529
+ "helpGroup": "GLOBAL",
2530
+ "name": "json",
2531
+ "allowNo": false,
2532
+ "type": "boolean"
2533
+ },
2534
+ "workspace": {
2535
+ "char": "w",
2536
+ "helpGroup": "GLOBAL",
2537
+ "name": "workspace",
2538
+ "summary": "Workspace domain or display name to use for this invocation.",
2539
+ "hasDynamicHelp": false,
2540
+ "multiple": false,
2541
+ "type": "option"
2542
+ },
2543
+ "agent": {
2544
+ "description": "Output machine-readable command metadata for AI agent consumption",
2545
+ "helpGroup": "GLOBAL",
2546
+ "hidden": true,
2547
+ "name": "agent",
2548
+ "allowNo": false,
2549
+ "type": "boolean"
2550
+ }
2551
+ },
2552
+ "hasDynamicHelp": false,
2553
+ "hiddenAliases": [],
2554
+ "id": "autocomplete",
2555
+ "pluginAlias": "twentythree-cli",
2556
+ "pluginName": "twentythree-cli",
2557
+ "pluginType": "core",
2558
+ "strict": true,
2559
+ "enableJsonFlag": true,
2560
+ "agentMetadata": {
2561
+ "api_endpoint": "interactive",
2562
+ "auth_scope": "none",
2563
+ "output_shape": {
2564
+ "type": "none"
2565
+ },
2566
+ "side_effects": "creates"
2567
+ },
2568
+ "isESM": false,
2569
+ "relativePath": [
2570
+ "dist",
2571
+ "commands",
2572
+ "autocomplete",
2573
+ "index.cjs"
2574
+ ]
2575
+ },
2519
2576
  "category:create": {
2520
2577
  "aliases": [],
2521
2578
  "args": {},
@@ -2774,105 +2831,17 @@
2774
2831
  "category:update": {
2775
2832
  "aliases": [],
2776
2833
  "args": {
2777
- "id": {
2778
- "description": "Category ID",
2779
- "name": "id",
2780
- "required": true
2781
- }
2782
- },
2783
- "description": "Update metadata for a category",
2784
- "examples": [
2785
- "<%= config.bin %> category update 42 --title \"New Title\"",
2786
- "<%= config.bin %> category update 42 --hidden",
2787
- "<%= config.bin %> category update 42"
2788
- ],
2789
- "flags": {
2790
- "json": {
2791
- "description": "Format output as json.",
2792
- "helpGroup": "GLOBAL",
2793
- "name": "json",
2794
- "allowNo": false,
2795
- "type": "boolean"
2796
- },
2797
- "workspace": {
2798
- "char": "w",
2799
- "helpGroup": "GLOBAL",
2800
- "name": "workspace",
2801
- "summary": "Workspace domain or display name to use for this invocation.",
2802
- "hasDynamicHelp": false,
2803
- "multiple": false,
2804
- "type": "option"
2805
- },
2806
- "agent": {
2807
- "description": "Output machine-readable command metadata for AI agent consumption",
2808
- "helpGroup": "GLOBAL",
2809
- "hidden": true,
2810
- "name": "agent",
2811
- "allowNo": false,
2812
- "type": "boolean"
2813
- },
2814
- "title": {
2815
- "description": "New title for the category",
2816
- "name": "title",
2817
- "required": false,
2818
- "hasDynamicHelp": false,
2819
- "multiple": false,
2820
- "type": "option"
2821
- },
2822
- "description": {
2823
- "description": "New description for the category",
2824
- "name": "description",
2825
- "required": false,
2826
- "hasDynamicHelp": false,
2827
- "multiple": false,
2828
- "type": "option"
2829
- },
2830
- "hidden": {
2831
- "description": "Show or hide the category",
2832
- "name": "hidden",
2833
- "required": false,
2834
- "allowNo": true,
2835
- "type": "boolean"
2836
- },
2837
- "hide-p": {
2838
- "hidden": true,
2839
- "name": "hide-p",
2840
- "required": false,
2841
- "hasDynamicHelp": false,
2842
- "multiple": false,
2843
- "type": "option"
2844
- }
2845
- },
2846
- "hasDynamicHelp": false,
2847
- "hiddenAliases": [],
2848
- "id": "category:update",
2849
- "pluginAlias": "twentythree-cli",
2850
- "pluginName": "twentythree-cli",
2851
- "pluginType": "core",
2852
- "strict": true,
2853
- "agentMetadata": {
2854
- "api_endpoint": "POST /album/update",
2855
- "auth_scope": "write",
2856
- "output_shape": {
2857
- "type": "none"
2858
- },
2859
- "side_effects": "updates"
2860
- },
2861
- "enableJsonFlag": true,
2862
- "isESM": false,
2863
- "relativePath": [
2864
- "dist",
2865
- "commands",
2866
- "category",
2867
- "update.cjs"
2868
- ]
2869
- },
2870
- "autocomplete": {
2871
- "aliases": [],
2872
- "args": {},
2873
- "description": "Set up tab completion for your shell",
2834
+ "id": {
2835
+ "description": "Category ID",
2836
+ "name": "id",
2837
+ "required": true
2838
+ }
2839
+ },
2840
+ "description": "Update metadata for a category",
2874
2841
  "examples": [
2875
- "<%= config.bin %> autocomplete"
2842
+ "<%= config.bin %> category update 42 --title \"New Title\"",
2843
+ "<%= config.bin %> category update 42 --hidden",
2844
+ "<%= config.bin %> category update 42"
2876
2845
  ],
2877
2846
  "flags": {
2878
2847
  "json": {
@@ -2898,30 +2867,61 @@
2898
2867
  "name": "agent",
2899
2868
  "allowNo": false,
2900
2869
  "type": "boolean"
2870
+ },
2871
+ "title": {
2872
+ "description": "New title for the category",
2873
+ "name": "title",
2874
+ "required": false,
2875
+ "hasDynamicHelp": false,
2876
+ "multiple": false,
2877
+ "type": "option"
2878
+ },
2879
+ "description": {
2880
+ "description": "New description for the category",
2881
+ "name": "description",
2882
+ "required": false,
2883
+ "hasDynamicHelp": false,
2884
+ "multiple": false,
2885
+ "type": "option"
2886
+ },
2887
+ "hidden": {
2888
+ "description": "Show or hide the category",
2889
+ "name": "hidden",
2890
+ "required": false,
2891
+ "allowNo": true,
2892
+ "type": "boolean"
2893
+ },
2894
+ "hide-p": {
2895
+ "hidden": true,
2896
+ "name": "hide-p",
2897
+ "required": false,
2898
+ "hasDynamicHelp": false,
2899
+ "multiple": false,
2900
+ "type": "option"
2901
2901
  }
2902
2902
  },
2903
2903
  "hasDynamicHelp": false,
2904
2904
  "hiddenAliases": [],
2905
- "id": "autocomplete",
2905
+ "id": "category:update",
2906
2906
  "pluginAlias": "twentythree-cli",
2907
2907
  "pluginName": "twentythree-cli",
2908
2908
  "pluginType": "core",
2909
2909
  "strict": true,
2910
- "enableJsonFlag": true,
2911
2910
  "agentMetadata": {
2912
- "api_endpoint": "interactive",
2913
- "auth_scope": "none",
2911
+ "api_endpoint": "POST /album/update",
2912
+ "auth_scope": "write",
2914
2913
  "output_shape": {
2915
2914
  "type": "none"
2916
2915
  },
2917
- "side_effects": "creates"
2916
+ "side_effects": "updates"
2918
2917
  },
2918
+ "enableJsonFlag": true,
2919
2919
  "isESM": false,
2920
2920
  "relativePath": [
2921
2921
  "dist",
2922
2922
  "commands",
2923
- "autocomplete",
2924
- "index.cjs"
2923
+ "category",
2924
+ "update.cjs"
2925
2925
  ]
2926
2926
  },
2927
2927
  "collector:exclude": {
@@ -6425,53 +6425,237 @@
6425
6425
  "name": "agent",
6426
6426
  "allowNo": false,
6427
6427
  "type": "boolean"
6428
- },
6429
- "spot-name": {
6430
- "description": "New name for the spot",
6431
- "name": "spot-name",
6432
- "required": false,
6433
- "hasDynamicHelp": false,
6434
- "multiple": false,
6435
- "type": "option"
6436
- },
6437
- "active": {
6438
- "description": "Set active status",
6439
- "name": "active",
6440
- "required": false,
6441
- "allowNo": true,
6442
- "type": "boolean"
6443
- },
6444
- "active-p": {
6445
- "hidden": true,
6446
- "name": "active-p",
6447
- "required": false,
6448
- "hasDynamicHelp": false,
6449
- "multiple": false,
6450
- "type": "option"
6428
+ },
6429
+ "spot-name": {
6430
+ "description": "New name for the spot",
6431
+ "name": "spot-name",
6432
+ "required": false,
6433
+ "hasDynamicHelp": false,
6434
+ "multiple": false,
6435
+ "type": "option"
6436
+ },
6437
+ "active": {
6438
+ "description": "Set active status",
6439
+ "name": "active",
6440
+ "required": false,
6441
+ "allowNo": true,
6442
+ "type": "boolean"
6443
+ },
6444
+ "active-p": {
6445
+ "hidden": true,
6446
+ "name": "active-p",
6447
+ "required": false,
6448
+ "hasDynamicHelp": false,
6449
+ "multiple": false,
6450
+ "type": "option"
6451
+ }
6452
+ },
6453
+ "hasDynamicHelp": false,
6454
+ "hiddenAliases": [],
6455
+ "id": "spot:update",
6456
+ "pluginAlias": "twentythree-cli",
6457
+ "pluginName": "twentythree-cli",
6458
+ "pluginType": "core",
6459
+ "strict": true,
6460
+ "enableJsonFlag": true,
6461
+ "agentMetadata": {
6462
+ "api_endpoint": "POST /spot/update",
6463
+ "auth_scope": "write",
6464
+ "output_shape": {
6465
+ "type": "key-value"
6466
+ },
6467
+ "side_effects": "updates"
6468
+ },
6469
+ "isESM": false,
6470
+ "relativePath": [
6471
+ "dist",
6472
+ "commands",
6473
+ "spot",
6474
+ "update.cjs"
6475
+ ]
6476
+ },
6477
+ "tag:list": {
6478
+ "aliases": [],
6479
+ "args": {},
6480
+ "description": "List tags in the active workspace",
6481
+ "examples": [
6482
+ "<%= config.bin %> tag list",
6483
+ "<%= config.bin %> tag list --search marketing",
6484
+ "<%= config.bin %> tag list --orderby count --order desc",
6485
+ "<%= config.bin %> tag list --json"
6486
+ ],
6487
+ "flags": {
6488
+ "json": {
6489
+ "description": "Format output as json.",
6490
+ "helpGroup": "GLOBAL",
6491
+ "name": "json",
6492
+ "allowNo": false,
6493
+ "type": "boolean"
6494
+ },
6495
+ "workspace": {
6496
+ "char": "w",
6497
+ "helpGroup": "GLOBAL",
6498
+ "name": "workspace",
6499
+ "summary": "Workspace domain or display name to use for this invocation.",
6500
+ "hasDynamicHelp": false,
6501
+ "multiple": false,
6502
+ "type": "option"
6503
+ },
6504
+ "agent": {
6505
+ "description": "Output machine-readable command metadata for AI agent consumption",
6506
+ "helpGroup": "GLOBAL",
6507
+ "hidden": true,
6508
+ "name": "agent",
6509
+ "allowNo": false,
6510
+ "type": "boolean"
6511
+ },
6512
+ "search": {
6513
+ "description": "Filter tags by a search string",
6514
+ "name": "search",
6515
+ "required": false,
6516
+ "hasDynamicHelp": false,
6517
+ "multiple": false,
6518
+ "type": "option"
6519
+ },
6520
+ "exclude-machine-tags": {
6521
+ "description": "Exclude machine tags from the results",
6522
+ "name": "exclude-machine-tags",
6523
+ "required": false,
6524
+ "allowNo": false,
6525
+ "type": "boolean"
6526
+ },
6527
+ "only-machine-tags": {
6528
+ "description": "Return only machine tags (overrides --exclude-machine-tags)",
6529
+ "name": "only-machine-tags",
6530
+ "required": false,
6531
+ "allowNo": false,
6532
+ "type": "boolean"
6533
+ },
6534
+ "only-published": {
6535
+ "description": "Return only tags from published videos",
6536
+ "name": "only-published",
6537
+ "required": false,
6538
+ "allowNo": false,
6539
+ "type": "boolean"
6540
+ },
6541
+ "orderby": {
6542
+ "description": "Order tags by this value",
6543
+ "name": "orderby",
6544
+ "required": false,
6545
+ "hasDynamicHelp": false,
6546
+ "multiple": false,
6547
+ "options": [
6548
+ "tag",
6549
+ "count"
6550
+ ],
6551
+ "type": "option"
6552
+ },
6553
+ "order": {
6554
+ "description": "Sort order for the results",
6555
+ "name": "order",
6556
+ "required": false,
6557
+ "hasDynamicHelp": false,
6558
+ "multiple": false,
6559
+ "options": [
6560
+ "asc",
6561
+ "desc"
6562
+ ],
6563
+ "type": "option"
6564
+ }
6565
+ },
6566
+ "hasDynamicHelp": false,
6567
+ "hiddenAliases": [],
6568
+ "id": "tag:list",
6569
+ "pluginAlias": "twentythree-cli",
6570
+ "pluginName": "twentythree-cli",
6571
+ "pluginType": "core",
6572
+ "strict": true,
6573
+ "agentMetadata": {
6574
+ "api_endpoint": "GET /tag/list",
6575
+ "auth_scope": "anonymous",
6576
+ "output_shape": {
6577
+ "type": "table",
6578
+ "columns": [
6579
+ "Tag",
6580
+ "Count"
6581
+ ]
6582
+ },
6583
+ "side_effects": "none"
6584
+ },
6585
+ "enableJsonFlag": true,
6586
+ "isESM": false,
6587
+ "relativePath": [
6588
+ "dist",
6589
+ "commands",
6590
+ "tag",
6591
+ "list.cjs"
6592
+ ]
6593
+ },
6594
+ "tag:related": {
6595
+ "aliases": [],
6596
+ "args": {
6597
+ "tag": {
6598
+ "description": "Tag to find related tags for",
6599
+ "name": "tag",
6600
+ "required": true
6601
+ }
6602
+ },
6603
+ "description": "List tags related to a given tag",
6604
+ "examples": [
6605
+ "<%= config.bin %> tag related marketing",
6606
+ "<%= config.bin %> tag related marketing --json"
6607
+ ],
6608
+ "flags": {
6609
+ "json": {
6610
+ "description": "Format output as json.",
6611
+ "helpGroup": "GLOBAL",
6612
+ "name": "json",
6613
+ "allowNo": false,
6614
+ "type": "boolean"
6615
+ },
6616
+ "workspace": {
6617
+ "char": "w",
6618
+ "helpGroup": "GLOBAL",
6619
+ "name": "workspace",
6620
+ "summary": "Workspace domain or display name to use for this invocation.",
6621
+ "hasDynamicHelp": false,
6622
+ "multiple": false,
6623
+ "type": "option"
6624
+ },
6625
+ "agent": {
6626
+ "description": "Output machine-readable command metadata for AI agent consumption",
6627
+ "helpGroup": "GLOBAL",
6628
+ "hidden": true,
6629
+ "name": "agent",
6630
+ "allowNo": false,
6631
+ "type": "boolean"
6451
6632
  }
6452
6633
  },
6453
6634
  "hasDynamicHelp": false,
6454
6635
  "hiddenAliases": [],
6455
- "id": "spot:update",
6636
+ "id": "tag:related",
6456
6637
  "pluginAlias": "twentythree-cli",
6457
6638
  "pluginName": "twentythree-cli",
6458
6639
  "pluginType": "core",
6459
6640
  "strict": true,
6460
- "enableJsonFlag": true,
6461
6641
  "agentMetadata": {
6462
- "api_endpoint": "POST /spot/update",
6463
- "auth_scope": "write",
6642
+ "api_endpoint": "GET /tag/related",
6643
+ "auth_scope": "anonymous",
6464
6644
  "output_shape": {
6465
- "type": "key-value"
6645
+ "type": "table",
6646
+ "columns": [
6647
+ "Tag"
6648
+ ]
6466
6649
  },
6467
- "side_effects": "updates"
6650
+ "side_effects": "none"
6468
6651
  },
6652
+ "enableJsonFlag": true,
6469
6653
  "isESM": false,
6470
6654
  "relativePath": [
6471
6655
  "dist",
6472
6656
  "commands",
6473
- "spot",
6474
- "update.cjs"
6657
+ "tag",
6658
+ "related.cjs"
6475
6659
  ]
6476
6660
  },
6477
6661
  "thumbnail:add": {
@@ -7039,190 +7223,6 @@
7039
7223
  "update.cjs"
7040
7224
  ]
7041
7225
  },
7042
- "tag:list": {
7043
- "aliases": [],
7044
- "args": {},
7045
- "description": "List tags in the active workspace",
7046
- "examples": [
7047
- "<%= config.bin %> tag list",
7048
- "<%= config.bin %> tag list --search marketing",
7049
- "<%= config.bin %> tag list --orderby count --order desc",
7050
- "<%= config.bin %> tag list --json"
7051
- ],
7052
- "flags": {
7053
- "json": {
7054
- "description": "Format output as json.",
7055
- "helpGroup": "GLOBAL",
7056
- "name": "json",
7057
- "allowNo": false,
7058
- "type": "boolean"
7059
- },
7060
- "workspace": {
7061
- "char": "w",
7062
- "helpGroup": "GLOBAL",
7063
- "name": "workspace",
7064
- "summary": "Workspace domain or display name to use for this invocation.",
7065
- "hasDynamicHelp": false,
7066
- "multiple": false,
7067
- "type": "option"
7068
- },
7069
- "agent": {
7070
- "description": "Output machine-readable command metadata for AI agent consumption",
7071
- "helpGroup": "GLOBAL",
7072
- "hidden": true,
7073
- "name": "agent",
7074
- "allowNo": false,
7075
- "type": "boolean"
7076
- },
7077
- "search": {
7078
- "description": "Filter tags by a search string",
7079
- "name": "search",
7080
- "required": false,
7081
- "hasDynamicHelp": false,
7082
- "multiple": false,
7083
- "type": "option"
7084
- },
7085
- "exclude-machine-tags": {
7086
- "description": "Exclude machine tags from the results",
7087
- "name": "exclude-machine-tags",
7088
- "required": false,
7089
- "allowNo": false,
7090
- "type": "boolean"
7091
- },
7092
- "only-machine-tags": {
7093
- "description": "Return only machine tags (overrides --exclude-machine-tags)",
7094
- "name": "only-machine-tags",
7095
- "required": false,
7096
- "allowNo": false,
7097
- "type": "boolean"
7098
- },
7099
- "only-published": {
7100
- "description": "Return only tags from published videos",
7101
- "name": "only-published",
7102
- "required": false,
7103
- "allowNo": false,
7104
- "type": "boolean"
7105
- },
7106
- "orderby": {
7107
- "description": "Order tags by this value",
7108
- "name": "orderby",
7109
- "required": false,
7110
- "hasDynamicHelp": false,
7111
- "multiple": false,
7112
- "options": [
7113
- "tag",
7114
- "count"
7115
- ],
7116
- "type": "option"
7117
- },
7118
- "order": {
7119
- "description": "Sort order for the results",
7120
- "name": "order",
7121
- "required": false,
7122
- "hasDynamicHelp": false,
7123
- "multiple": false,
7124
- "options": [
7125
- "asc",
7126
- "desc"
7127
- ],
7128
- "type": "option"
7129
- }
7130
- },
7131
- "hasDynamicHelp": false,
7132
- "hiddenAliases": [],
7133
- "id": "tag:list",
7134
- "pluginAlias": "twentythree-cli",
7135
- "pluginName": "twentythree-cli",
7136
- "pluginType": "core",
7137
- "strict": true,
7138
- "agentMetadata": {
7139
- "api_endpoint": "GET /tag/list",
7140
- "auth_scope": "anonymous",
7141
- "output_shape": {
7142
- "type": "table",
7143
- "columns": [
7144
- "Tag",
7145
- "Count"
7146
- ]
7147
- },
7148
- "side_effects": "none"
7149
- },
7150
- "enableJsonFlag": true,
7151
- "isESM": false,
7152
- "relativePath": [
7153
- "dist",
7154
- "commands",
7155
- "tag",
7156
- "list.cjs"
7157
- ]
7158
- },
7159
- "tag:related": {
7160
- "aliases": [],
7161
- "args": {
7162
- "tag": {
7163
- "description": "Tag to find related tags for",
7164
- "name": "tag",
7165
- "required": true
7166
- }
7167
- },
7168
- "description": "List tags related to a given tag",
7169
- "examples": [
7170
- "<%= config.bin %> tag related marketing",
7171
- "<%= config.bin %> tag related marketing --json"
7172
- ],
7173
- "flags": {
7174
- "json": {
7175
- "description": "Format output as json.",
7176
- "helpGroup": "GLOBAL",
7177
- "name": "json",
7178
- "allowNo": false,
7179
- "type": "boolean"
7180
- },
7181
- "workspace": {
7182
- "char": "w",
7183
- "helpGroup": "GLOBAL",
7184
- "name": "workspace",
7185
- "summary": "Workspace domain or display name to use for this invocation.",
7186
- "hasDynamicHelp": false,
7187
- "multiple": false,
7188
- "type": "option"
7189
- },
7190
- "agent": {
7191
- "description": "Output machine-readable command metadata for AI agent consumption",
7192
- "helpGroup": "GLOBAL",
7193
- "hidden": true,
7194
- "name": "agent",
7195
- "allowNo": false,
7196
- "type": "boolean"
7197
- }
7198
- },
7199
- "hasDynamicHelp": false,
7200
- "hiddenAliases": [],
7201
- "id": "tag:related",
7202
- "pluginAlias": "twentythree-cli",
7203
- "pluginName": "twentythree-cli",
7204
- "pluginType": "core",
7205
- "strict": true,
7206
- "agentMetadata": {
7207
- "api_endpoint": "GET /tag/related",
7208
- "auth_scope": "anonymous",
7209
- "output_shape": {
7210
- "type": "table",
7211
- "columns": [
7212
- "Tag"
7213
- ]
7214
- },
7215
- "side_effects": "none"
7216
- },
7217
- "enableJsonFlag": true,
7218
- "isESM": false,
7219
- "relativePath": [
7220
- "dist",
7221
- "commands",
7222
- "tag",
7223
- "related.cjs"
7224
- ]
7225
- },
7226
7226
  "user:create": {
7227
7227
  "aliases": [],
7228
7228
  "args": {},
@@ -10455,14 +10455,14 @@
10455
10455
  "totals.cjs"
10456
10456
  ]
10457
10457
  },
10458
- "analytics:live:event-timeseries": {
10458
+ "analytics:usage:devices": {
10459
10459
  "aliases": [],
10460
10460
  "args": {},
10461
- "description": "Get live/webinar event time series analytics",
10461
+ "description": "Get usage analytics by device type",
10462
10462
  "examples": [
10463
- "<%= config.bin %> analytics live event-timeseries --date-expression thisweek",
10464
- "<%= config.bin %> analytics live event-timeseries --date-start 2024-01-01 --date-end 2024-01-31",
10465
- "<%= config.bin %> analytics live event-timeseries --json"
10463
+ "<%= config.bin %> analytics usage devices --date-expression thismonth",
10464
+ "<%= config.bin %> analytics usage devices --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
10465
+ "<%= config.bin %> analytics usage devices --json"
10466
10466
  ],
10467
10467
  "flags": {
10468
10468
  "json": {
@@ -10505,9 +10505,25 @@
10505
10505
  "multiple": false,
10506
10506
  "type": "option"
10507
10507
  },
10508
- "date-expression": {
10509
- "description": "Predefined date range (e.g. thisweek, lastyear)",
10510
- "name": "date-expression",
10508
+ "date-expression": {
10509
+ "description": "Predefined date range (e.g. thisweek, lastyear)",
10510
+ "name": "date-expression",
10511
+ "required": false,
10512
+ "hasDynamicHelp": false,
10513
+ "multiple": false,
10514
+ "type": "option"
10515
+ },
10516
+ "page": {
10517
+ "description": "Page number",
10518
+ "name": "page",
10519
+ "required": false,
10520
+ "hasDynamicHelp": false,
10521
+ "multiple": false,
10522
+ "type": "option"
10523
+ },
10524
+ "size": {
10525
+ "description": "Page size",
10526
+ "name": "size",
10511
10527
  "required": false,
10512
10528
  "hasDynamicHelp": false,
10513
10529
  "multiple": false,
@@ -10548,23 +10564,23 @@
10548
10564
  },
10549
10565
  "hasDynamicHelp": false,
10550
10566
  "hiddenAliases": [],
10551
- "id": "analytics:live:event-timeseries",
10567
+ "id": "analytics:usage:devices",
10552
10568
  "pluginAlias": "twentythree-cli",
10553
10569
  "pluginName": "twentythree-cli",
10554
10570
  "pluginType": "core",
10555
10571
  "strict": true,
10556
10572
  "enableJsonFlag": true,
10557
10573
  "agentMetadata": {
10558
- "api_endpoint": "GET /analytics/data/live/event/timeseries",
10574
+ "api_endpoint": "GET /analytics/data/usage/devices",
10559
10575
  "auth_scope": "read",
10560
10576
  "output_shape": {
10561
10577
  "type": "table",
10562
10578
  "columns": [
10563
- "Date",
10579
+ "Device",
10564
10580
  "Plays",
10565
- "Peak Viewers",
10566
10581
  "Engagement",
10567
- "Playrate"
10582
+ "Traffic",
10583
+ "Impressions"
10568
10584
  ]
10569
10585
  },
10570
10586
  "side_effects": "none"
@@ -10574,18 +10590,18 @@
10574
10590
  "dist",
10575
10591
  "commands",
10576
10592
  "analytics",
10577
- "live",
10578
- "event-timeseries.cjs"
10593
+ "usage",
10594
+ "devices.cjs"
10579
10595
  ]
10580
10596
  },
10581
- "analytics:live:event-totals": {
10597
+ "analytics:usage:domains": {
10582
10598
  "aliases": [],
10583
10599
  "args": {},
10584
- "description": "Get live/webinar event totals analytics",
10600
+ "description": "Get usage analytics by domain",
10585
10601
  "examples": [
10586
- "<%= config.bin %> analytics live event-totals --date-expression thisweek",
10587
- "<%= config.bin %> analytics live event-totals --date-start 2024-01-01 --date-end 2024-01-31",
10588
- "<%= config.bin %> analytics live event-totals --json"
10602
+ "<%= config.bin %> analytics usage domains --date-expression thismonth",
10603
+ "<%= config.bin %> analytics usage domains --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
10604
+ "<%= config.bin %> analytics usage domains --json"
10589
10605
  ],
10590
10606
  "flags": {
10591
10607
  "json": {
@@ -10636,6 +10652,22 @@
10636
10652
  "multiple": false,
10637
10653
  "type": "option"
10638
10654
  },
10655
+ "page": {
10656
+ "description": "Page number",
10657
+ "name": "page",
10658
+ "required": false,
10659
+ "hasDynamicHelp": false,
10660
+ "multiple": false,
10661
+ "type": "option"
10662
+ },
10663
+ "size": {
10664
+ "description": "Page size",
10665
+ "name": "size",
10666
+ "required": false,
10667
+ "hasDynamicHelp": false,
10668
+ "multiple": false,
10669
+ "type": "option"
10670
+ },
10639
10671
  "selection": {
10640
10672
  "description": "Scope to specific objects/types",
10641
10673
  "name": "selection",
@@ -10671,23 +10703,23 @@
10671
10703
  },
10672
10704
  "hasDynamicHelp": false,
10673
10705
  "hiddenAliases": [],
10674
- "id": "analytics:live:event-totals",
10706
+ "id": "analytics:usage:domains",
10675
10707
  "pluginAlias": "twentythree-cli",
10676
10708
  "pluginName": "twentythree-cli",
10677
10709
  "pluginType": "core",
10678
10710
  "strict": true,
10679
10711
  "enableJsonFlag": true,
10680
10712
  "agentMetadata": {
10681
- "api_endpoint": "GET /analytics/data/live/event/totals",
10713
+ "api_endpoint": "GET /analytics/data/usage/domains",
10682
10714
  "auth_scope": "read",
10683
10715
  "output_shape": {
10684
10716
  "type": "table",
10685
10717
  "columns": [
10718
+ "Domain",
10686
10719
  "Plays",
10687
- "Peak Viewers",
10688
10720
  "Engagement",
10689
- "Playrate",
10690
- "Avg View Time"
10721
+ "Traffic",
10722
+ "Impressions"
10691
10723
  ]
10692
10724
  },
10693
10725
  "side_effects": "none"
@@ -10697,18 +10729,18 @@
10697
10729
  "dist",
10698
10730
  "commands",
10699
10731
  "analytics",
10700
- "live",
10701
- "event-totals.cjs"
10732
+ "usage",
10733
+ "domains.cjs"
10702
10734
  ]
10703
10735
  },
10704
- "analytics:live:event": {
10736
+ "analytics:usage:locations": {
10705
10737
  "aliases": [],
10706
10738
  "args": {},
10707
- "description": "Get live/webinar event analytics",
10739
+ "description": "Get usage analytics by location",
10708
10740
  "examples": [
10709
- "<%= config.bin %> analytics live event --date-expression thismonth",
10710
- "<%= config.bin %> analytics live event --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
10711
- "<%= config.bin %> analytics live event --json"
10741
+ "<%= config.bin %> analytics usage locations --date-expression thismonth",
10742
+ "<%= config.bin %> analytics usage locations --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
10743
+ "<%= config.bin %> analytics usage locations --json"
10712
10744
  ],
10713
10745
  "flags": {
10714
10746
  "json": {
@@ -10810,23 +10842,23 @@
10810
10842
  },
10811
10843
  "hasDynamicHelp": false,
10812
10844
  "hiddenAliases": [],
10813
- "id": "analytics:live:event",
10845
+ "id": "analytics:usage:locations",
10814
10846
  "pluginAlias": "twentythree-cli",
10815
10847
  "pluginName": "twentythree-cli",
10816
10848
  "pluginType": "core",
10817
10849
  "strict": true,
10818
10850
  "enableJsonFlag": true,
10819
10851
  "agentMetadata": {
10820
- "api_endpoint": "GET /analytics/data/live/event",
10852
+ "api_endpoint": "GET /analytics/data/usage/locations",
10821
10853
  "auth_scope": "read",
10822
10854
  "output_shape": {
10823
10855
  "type": "table",
10824
10856
  "columns": [
10825
- "Event",
10857
+ "Location",
10826
10858
  "Plays",
10827
- "Peak Viewers",
10828
10859
  "Engagement",
10829
- "Performance"
10860
+ "Traffic",
10861
+ "Impressions"
10830
10862
  ]
10831
10863
  },
10832
10864
  "side_effects": "none"
@@ -10836,18 +10868,18 @@
10836
10868
  "dist",
10837
10869
  "commands",
10838
10870
  "analytics",
10839
- "live",
10840
- "event.cjs"
10871
+ "usage",
10872
+ "locations.cjs"
10841
10873
  ]
10842
10874
  },
10843
- "analytics:live": {
10875
+ "analytics:usage:sourceids": {
10844
10876
  "aliases": [],
10845
10877
  "args": {},
10846
- "description": "Get live/webinar analytics data",
10878
+ "description": "Get usage analytics by source ID",
10847
10879
  "examples": [
10848
- "<%= config.bin %> analytics live --date-expression thisweek",
10849
- "<%= config.bin %> analytics live --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
10850
- "<%= config.bin %> analytics live --json"
10880
+ "<%= config.bin %> analytics usage sourceids --date-expression thismonth",
10881
+ "<%= config.bin %> analytics usage sourceids --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
10882
+ "<%= config.bin %> analytics usage sourceids --json"
10851
10883
  ],
10852
10884
  "flags": {
10853
10885
  "json": {
@@ -10949,23 +10981,23 @@
10949
10981
  },
10950
10982
  "hasDynamicHelp": false,
10951
10983
  "hiddenAliases": [],
10952
- "id": "analytics:live",
10984
+ "id": "analytics:usage:sourceids",
10953
10985
  "pluginAlias": "twentythree-cli",
10954
10986
  "pluginName": "twentythree-cli",
10955
10987
  "pluginType": "core",
10956
10988
  "strict": true,
10957
10989
  "enableJsonFlag": true,
10958
10990
  "agentMetadata": {
10959
- "api_endpoint": "GET /analytics/data/live",
10991
+ "api_endpoint": "GET /analytics/data/usage/sourceids",
10960
10992
  "auth_scope": "read",
10961
10993
  "output_shape": {
10962
10994
  "type": "table",
10963
10995
  "columns": [
10996
+ "Source ID",
10964
10997
  "Plays",
10965
- "Peak Viewers",
10966
10998
  "Engagement",
10967
- "Playrate",
10968
- "Avg View Time"
10999
+ "Traffic",
11000
+ "Impressions"
10969
11001
  ]
10970
11002
  },
10971
11003
  "side_effects": "none"
@@ -10975,18 +11007,18 @@
10975
11007
  "dist",
10976
11008
  "commands",
10977
11009
  "analytics",
10978
- "live",
10979
- "index.cjs"
11010
+ "usage",
11011
+ "sourceids.cjs"
10980
11012
  ]
10981
11013
  },
10982
- "analytics:live:timeseries": {
11014
+ "analytics:usage:sources": {
10983
11015
  "aliases": [],
10984
11016
  "args": {},
10985
- "description": "Get live/webinar analytics time series data",
11017
+ "description": "Get usage analytics by traffic source",
10986
11018
  "examples": [
10987
- "<%= config.bin %> analytics live timeseries --date-expression thisweek",
10988
- "<%= config.bin %> analytics live timeseries --date-start 2024-01-01 --date-end 2024-01-31",
10989
- "<%= config.bin %> analytics live timeseries --json"
11019
+ "<%= config.bin %> analytics usage sources --date-expression thismonth",
11020
+ "<%= config.bin %> analytics usage sources --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
11021
+ "<%= config.bin %> analytics usage sources --json"
10990
11022
  ],
10991
11023
  "flags": {
10992
11024
  "json": {
@@ -11037,6 +11069,22 @@
11037
11069
  "multiple": false,
11038
11070
  "type": "option"
11039
11071
  },
11072
+ "page": {
11073
+ "description": "Page number",
11074
+ "name": "page",
11075
+ "required": false,
11076
+ "hasDynamicHelp": false,
11077
+ "multiple": false,
11078
+ "type": "option"
11079
+ },
11080
+ "size": {
11081
+ "description": "Page size",
11082
+ "name": "size",
11083
+ "required": false,
11084
+ "hasDynamicHelp": false,
11085
+ "multiple": false,
11086
+ "type": "option"
11087
+ },
11040
11088
  "selection": {
11041
11089
  "description": "Scope to specific objects/types",
11042
11090
  "name": "selection",
@@ -11072,23 +11120,23 @@
11072
11120
  },
11073
11121
  "hasDynamicHelp": false,
11074
11122
  "hiddenAliases": [],
11075
- "id": "analytics:live:timeseries",
11123
+ "id": "analytics:usage:sources",
11076
11124
  "pluginAlias": "twentythree-cli",
11077
11125
  "pluginName": "twentythree-cli",
11078
11126
  "pluginType": "core",
11079
11127
  "strict": true,
11080
11128
  "enableJsonFlag": true,
11081
11129
  "agentMetadata": {
11082
- "api_endpoint": "GET /analytics/data/live/timeseries",
11130
+ "api_endpoint": "GET /analytics/data/usage/sources",
11083
11131
  "auth_scope": "read",
11084
11132
  "output_shape": {
11085
11133
  "type": "table",
11086
11134
  "columns": [
11087
- "Date",
11135
+ "Source",
11088
11136
  "Plays",
11089
- "Peak Viewers",
11090
11137
  "Engagement",
11091
- "Playrate"
11138
+ "Traffic",
11139
+ "Impressions"
11092
11140
  ]
11093
11141
  },
11094
11142
  "side_effects": "none"
@@ -11098,18 +11146,18 @@
11098
11146
  "dist",
11099
11147
  "commands",
11100
11148
  "analytics",
11101
- "live",
11102
- "timeseries.cjs"
11149
+ "usage",
11150
+ "sources.cjs"
11103
11151
  ]
11104
11152
  },
11105
- "analytics:live:totals": {
11153
+ "analytics:usage:spots": {
11106
11154
  "aliases": [],
11107
11155
  "args": {},
11108
- "description": "Get live/webinar analytics totals",
11156
+ "description": "Get usage analytics by spot",
11109
11157
  "examples": [
11110
- "<%= config.bin %> analytics live totals --date-expression thisweek",
11111
- "<%= config.bin %> analytics live totals --date-start 2024-01-01 --date-end 2024-01-31",
11112
- "<%= config.bin %> analytics live totals --json"
11158
+ "<%= config.bin %> analytics usage spots --date-expression thismonth",
11159
+ "<%= config.bin %> analytics usage spots --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
11160
+ "<%= config.bin %> analytics usage spots --json"
11113
11161
  ],
11114
11162
  "flags": {
11115
11163
  "json": {
@@ -11160,6 +11208,22 @@
11160
11208
  "multiple": false,
11161
11209
  "type": "option"
11162
11210
  },
11211
+ "page": {
11212
+ "description": "Page number",
11213
+ "name": "page",
11214
+ "required": false,
11215
+ "hasDynamicHelp": false,
11216
+ "multiple": false,
11217
+ "type": "option"
11218
+ },
11219
+ "size": {
11220
+ "description": "Page size",
11221
+ "name": "size",
11222
+ "required": false,
11223
+ "hasDynamicHelp": false,
11224
+ "multiple": false,
11225
+ "type": "option"
11226
+ },
11163
11227
  "selection": {
11164
11228
  "description": "Scope to specific objects/types",
11165
11229
  "name": "selection",
@@ -11195,23 +11259,23 @@
11195
11259
  },
11196
11260
  "hasDynamicHelp": false,
11197
11261
  "hiddenAliases": [],
11198
- "id": "analytics:live:totals",
11262
+ "id": "analytics:usage:spots",
11199
11263
  "pluginAlias": "twentythree-cli",
11200
11264
  "pluginName": "twentythree-cli",
11201
11265
  "pluginType": "core",
11202
11266
  "strict": true,
11203
11267
  "enableJsonFlag": true,
11204
11268
  "agentMetadata": {
11205
- "api_endpoint": "GET /analytics/data/live/totals",
11269
+ "api_endpoint": "GET /analytics/data/usage/spots",
11206
11270
  "auth_scope": "read",
11207
11271
  "output_shape": {
11208
11272
  "type": "table",
11209
11273
  "columns": [
11274
+ "Spot",
11210
11275
  "Plays",
11211
- "Peak Viewers",
11212
11276
  "Engagement",
11213
- "Playrate",
11214
- "Avg View Time"
11277
+ "Traffic",
11278
+ "Impressions"
11215
11279
  ]
11216
11280
  },
11217
11281
  "side_effects": "none"
@@ -11221,18 +11285,18 @@
11221
11285
  "dist",
11222
11286
  "commands",
11223
11287
  "analytics",
11224
- "live",
11225
- "totals.cjs"
11288
+ "usage",
11289
+ "spots.cjs"
11226
11290
  ]
11227
11291
  },
11228
- "analytics:live:weekday": {
11292
+ "analytics:usage:storage": {
11229
11293
  "aliases": [],
11230
11294
  "args": {},
11231
- "description": "Get live/webinar analytics by day of week",
11295
+ "description": "Get storage usage analytics",
11232
11296
  "examples": [
11233
- "<%= config.bin %> analytics live weekday --date-expression thismonth",
11234
- "<%= config.bin %> analytics live weekday --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
11235
- "<%= config.bin %> analytics live weekday --json"
11297
+ "<%= config.bin %> analytics usage storage",
11298
+ "<%= config.bin %> analytics usage storage --json",
11299
+ "<%= config.bin %> analytics usage storage --selection videos"
11236
11300
  ],
11237
11301
  "flags": {
11238
11302
  "json": {
@@ -11283,22 +11347,6 @@
11283
11347
  "multiple": false,
11284
11348
  "type": "option"
11285
11349
  },
11286
- "page": {
11287
- "description": "Page number",
11288
- "name": "page",
11289
- "required": false,
11290
- "hasDynamicHelp": false,
11291
- "multiple": false,
11292
- "type": "option"
11293
- },
11294
- "size": {
11295
- "description": "Page size",
11296
- "name": "size",
11297
- "required": false,
11298
- "hasDynamicHelp": false,
11299
- "multiple": false,
11300
- "type": "option"
11301
- },
11302
11350
  "selection": {
11303
11351
  "description": "Scope to specific objects/types",
11304
11352
  "name": "selection",
@@ -11334,24 +11382,17 @@
11334
11382
  },
11335
11383
  "hasDynamicHelp": false,
11336
11384
  "hiddenAliases": [],
11337
- "id": "analytics:live:weekday",
11385
+ "id": "analytics:usage:storage",
11338
11386
  "pluginAlias": "twentythree-cli",
11339
11387
  "pluginName": "twentythree-cli",
11340
11388
  "pluginType": "core",
11341
11389
  "strict": true,
11342
11390
  "enableJsonFlag": true,
11343
11391
  "agentMetadata": {
11344
- "api_endpoint": "GET /analytics/data/live/weekday",
11392
+ "api_endpoint": "GET /analytics/data/usage/storage",
11345
11393
  "auth_scope": "read",
11346
11394
  "output_shape": {
11347
- "type": "table",
11348
- "columns": [
11349
- "Day",
11350
- "Plays",
11351
- "Peak Viewers",
11352
- "Engagement",
11353
- "Playrate"
11354
- ]
11395
+ "type": "key-value"
11355
11396
  },
11356
11397
  "side_effects": "none"
11357
11398
  },
@@ -11360,18 +11401,18 @@
11360
11401
  "dist",
11361
11402
  "commands",
11362
11403
  "analytics",
11363
- "live",
11364
- "weekday.cjs"
11404
+ "usage",
11405
+ "storage.cjs"
11365
11406
  ]
11366
11407
  },
11367
- "analytics:usage:devices": {
11408
+ "analytics:usage:traffic": {
11368
11409
  "aliases": [],
11369
11410
  "args": {},
11370
- "description": "Get usage analytics by device type",
11411
+ "description": "Get usage analytics by traffic type",
11371
11412
  "examples": [
11372
- "<%= config.bin %> analytics usage devices --date-expression thismonth",
11373
- "<%= config.bin %> analytics usage devices --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
11374
- "<%= config.bin %> analytics usage devices --json"
11413
+ "<%= config.bin %> analytics usage traffic --date-expression thismonth",
11414
+ "<%= config.bin %> analytics usage traffic --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
11415
+ "<%= config.bin %> analytics usage traffic --json"
11375
11416
  ],
11376
11417
  "flags": {
11377
11418
  "json": {
@@ -11473,19 +11514,19 @@
11473
11514
  },
11474
11515
  "hasDynamicHelp": false,
11475
11516
  "hiddenAliases": [],
11476
- "id": "analytics:usage:devices",
11517
+ "id": "analytics:usage:traffic",
11477
11518
  "pluginAlias": "twentythree-cli",
11478
11519
  "pluginName": "twentythree-cli",
11479
11520
  "pluginType": "core",
11480
11521
  "strict": true,
11481
11522
  "enableJsonFlag": true,
11482
11523
  "agentMetadata": {
11483
- "api_endpoint": "GET /analytics/data/usage/devices",
11524
+ "api_endpoint": "GET /analytics/data/usage/traffic",
11484
11525
  "auth_scope": "read",
11485
11526
  "output_shape": {
11486
11527
  "type": "table",
11487
11528
  "columns": [
11488
- "Device",
11529
+ "Traffic Type",
11489
11530
  "Plays",
11490
11531
  "Engagement",
11491
11532
  "Traffic",
@@ -11500,17 +11541,17 @@
11500
11541
  "commands",
11501
11542
  "analytics",
11502
11543
  "usage",
11503
- "devices.cjs"
11544
+ "traffic.cjs"
11504
11545
  ]
11505
11546
  },
11506
- "analytics:usage:domains": {
11547
+ "analytics:video": {
11507
11548
  "aliases": [],
11508
11549
  "args": {},
11509
- "description": "Get usage analytics by domain",
11510
- "examples": [
11511
- "<%= config.bin %> analytics usage domains --date-expression thismonth",
11512
- "<%= config.bin %> analytics usage domains --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
11513
- "<%= config.bin %> analytics usage domains --json"
11550
+ "description": "Get video analytics data",
11551
+ "examples": [
11552
+ "<%= config.bin %> analytics video --date-expression thisweek",
11553
+ "<%= config.bin %> analytics video --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
11554
+ "<%= config.bin %> analytics video --json"
11514
11555
  ],
11515
11556
  "flags": {
11516
11557
  "json": {
@@ -11612,23 +11653,23 @@
11612
11653
  },
11613
11654
  "hasDynamicHelp": false,
11614
11655
  "hiddenAliases": [],
11615
- "id": "analytics:usage:domains",
11656
+ "id": "analytics:video",
11616
11657
  "pluginAlias": "twentythree-cli",
11617
11658
  "pluginName": "twentythree-cli",
11618
11659
  "pluginType": "core",
11619
11660
  "strict": true,
11620
11661
  "enableJsonFlag": true,
11621
11662
  "agentMetadata": {
11622
- "api_endpoint": "GET /analytics/data/usage/domains",
11663
+ "api_endpoint": "GET /analytics/data/videos",
11623
11664
  "auth_scope": "read",
11624
11665
  "output_shape": {
11625
11666
  "type": "table",
11626
11667
  "columns": [
11627
- "Domain",
11628
11668
  "Plays",
11629
11669
  "Engagement",
11630
- "Traffic",
11631
- "Impressions"
11670
+ "Playrate",
11671
+ "Avg View Time",
11672
+ "Traffic"
11632
11673
  ]
11633
11674
  },
11634
11675
  "side_effects": "none"
@@ -11638,18 +11679,18 @@
11638
11679
  "dist",
11639
11680
  "commands",
11640
11681
  "analytics",
11641
- "usage",
11642
- "domains.cjs"
11682
+ "video",
11683
+ "index.cjs"
11643
11684
  ]
11644
11685
  },
11645
- "analytics:usage:locations": {
11686
+ "analytics:video:performance": {
11646
11687
  "aliases": [],
11647
11688
  "args": {},
11648
- "description": "Get usage analytics by location",
11689
+ "description": "Get video performance analytics",
11649
11690
  "examples": [
11650
- "<%= config.bin %> analytics usage locations --date-expression thismonth",
11651
- "<%= config.bin %> analytics usage locations --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
11652
- "<%= config.bin %> analytics usage locations --json"
11691
+ "<%= config.bin %> analytics video performance --date-expression thismonth",
11692
+ "<%= config.bin %> analytics video performance --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
11693
+ "<%= config.bin %> analytics video performance --json"
11653
11694
  ],
11654
11695
  "flags": {
11655
11696
  "json": {
@@ -11751,23 +11792,23 @@
11751
11792
  },
11752
11793
  "hasDynamicHelp": false,
11753
11794
  "hiddenAliases": [],
11754
- "id": "analytics:usage:locations",
11795
+ "id": "analytics:video:performance",
11755
11796
  "pluginAlias": "twentythree-cli",
11756
11797
  "pluginName": "twentythree-cli",
11757
11798
  "pluginType": "core",
11758
11799
  "strict": true,
11759
11800
  "enableJsonFlag": true,
11760
11801
  "agentMetadata": {
11761
- "api_endpoint": "GET /analytics/data/usage/locations",
11802
+ "api_endpoint": "GET /analytics/data/videos/performance",
11762
11803
  "auth_scope": "read",
11763
11804
  "output_shape": {
11764
11805
  "type": "table",
11765
11806
  "columns": [
11766
- "Location",
11807
+ "Title",
11767
11808
  "Plays",
11768
11809
  "Engagement",
11769
- "Traffic",
11770
- "Impressions"
11810
+ "Playrate",
11811
+ "Performance"
11771
11812
  ]
11772
11813
  },
11773
11814
  "side_effects": "none"
@@ -11777,18 +11818,18 @@
11777
11818
  "dist",
11778
11819
  "commands",
11779
11820
  "analytics",
11780
- "usage",
11781
- "locations.cjs"
11821
+ "video",
11822
+ "performance.cjs"
11782
11823
  ]
11783
11824
  },
11784
- "analytics:usage:sourceids": {
11825
+ "analytics:video:published": {
11785
11826
  "aliases": [],
11786
11827
  "args": {},
11787
- "description": "Get usage analytics by source ID",
11828
+ "description": "Get analytics for published videos",
11788
11829
  "examples": [
11789
- "<%= config.bin %> analytics usage sourceids --date-expression thismonth",
11790
- "<%= config.bin %> analytics usage sourceids --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
11791
- "<%= config.bin %> analytics usage sourceids --json"
11830
+ "<%= config.bin %> analytics video published --date-expression thismonth",
11831
+ "<%= config.bin %> analytics video published --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
11832
+ "<%= config.bin %> analytics video published --json"
11792
11833
  ],
11793
11834
  "flags": {
11794
11835
  "json": {
@@ -11890,23 +11931,23 @@
11890
11931
  },
11891
11932
  "hasDynamicHelp": false,
11892
11933
  "hiddenAliases": [],
11893
- "id": "analytics:usage:sourceids",
11934
+ "id": "analytics:video:published",
11894
11935
  "pluginAlias": "twentythree-cli",
11895
11936
  "pluginName": "twentythree-cli",
11896
11937
  "pluginType": "core",
11897
11938
  "strict": true,
11898
11939
  "enableJsonFlag": true,
11899
11940
  "agentMetadata": {
11900
- "api_endpoint": "GET /analytics/data/usage/sourceids",
11941
+ "api_endpoint": "GET /analytics/data/videos/published",
11901
11942
  "auth_scope": "read",
11902
11943
  "output_shape": {
11903
11944
  "type": "table",
11904
11945
  "columns": [
11905
- "Source ID",
11946
+ "Date",
11947
+ "Videos",
11906
11948
  "Plays",
11907
11949
  "Engagement",
11908
- "Traffic",
11909
- "Impressions"
11950
+ "Traffic"
11910
11951
  ]
11911
11952
  },
11912
11953
  "side_effects": "none"
@@ -11916,18 +11957,18 @@
11916
11957
  "dist",
11917
11958
  "commands",
11918
11959
  "analytics",
11919
- "usage",
11920
- "sourceids.cjs"
11960
+ "video",
11961
+ "published.cjs"
11921
11962
  ]
11922
11963
  },
11923
- "analytics:usage:sources": {
11964
+ "analytics:video:timeseries": {
11924
11965
  "aliases": [],
11925
11966
  "args": {},
11926
- "description": "Get usage analytics by traffic source",
11967
+ "description": "Get video analytics time series data",
11927
11968
  "examples": [
11928
- "<%= config.bin %> analytics usage sources --date-expression thismonth",
11929
- "<%= config.bin %> analytics usage sources --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
11930
- "<%= config.bin %> analytics usage sources --json"
11969
+ "<%= config.bin %> analytics video timeseries --date-expression thisweek",
11970
+ "<%= config.bin %> analytics video timeseries --date-start 2024-01-01 --date-end 2024-01-31",
11971
+ "<%= config.bin %> analytics video timeseries --json"
11931
11972
  ],
11932
11973
  "flags": {
11933
11974
  "json": {
@@ -11978,22 +12019,6 @@
11978
12019
  "multiple": false,
11979
12020
  "type": "option"
11980
12021
  },
11981
- "page": {
11982
- "description": "Page number",
11983
- "name": "page",
11984
- "required": false,
11985
- "hasDynamicHelp": false,
11986
- "multiple": false,
11987
- "type": "option"
11988
- },
11989
- "size": {
11990
- "description": "Page size",
11991
- "name": "size",
11992
- "required": false,
11993
- "hasDynamicHelp": false,
11994
- "multiple": false,
11995
- "type": "option"
11996
- },
11997
12022
  "selection": {
11998
12023
  "description": "Scope to specific objects/types",
11999
12024
  "name": "selection",
@@ -12029,23 +12054,23 @@
12029
12054
  },
12030
12055
  "hasDynamicHelp": false,
12031
12056
  "hiddenAliases": [],
12032
- "id": "analytics:usage:sources",
12057
+ "id": "analytics:video:timeseries",
12033
12058
  "pluginAlias": "twentythree-cli",
12034
12059
  "pluginName": "twentythree-cli",
12035
12060
  "pluginType": "core",
12036
12061
  "strict": true,
12037
12062
  "enableJsonFlag": true,
12038
12063
  "agentMetadata": {
12039
- "api_endpoint": "GET /analytics/data/usage/sources",
12064
+ "api_endpoint": "GET /analytics/data/videos/timeseries",
12040
12065
  "auth_scope": "read",
12041
12066
  "output_shape": {
12042
12067
  "type": "table",
12043
12068
  "columns": [
12044
- "Source",
12069
+ "Date",
12045
12070
  "Plays",
12046
12071
  "Engagement",
12047
- "Traffic",
12048
- "Impressions"
12072
+ "Playrate",
12073
+ "Traffic"
12049
12074
  ]
12050
12075
  },
12051
12076
  "side_effects": "none"
@@ -12055,18 +12080,18 @@
12055
12080
  "dist",
12056
12081
  "commands",
12057
12082
  "analytics",
12058
- "usage",
12059
- "sources.cjs"
12083
+ "video",
12084
+ "timeseries.cjs"
12060
12085
  ]
12061
12086
  },
12062
- "analytics:usage:spots": {
12087
+ "analytics:video:totals": {
12063
12088
  "aliases": [],
12064
12089
  "args": {},
12065
- "description": "Get usage analytics by spot",
12090
+ "description": "Get aggregated video analytics totals",
12066
12091
  "examples": [
12067
- "<%= config.bin %> analytics usage spots --date-expression thismonth",
12068
- "<%= config.bin %> analytics usage spots --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
12069
- "<%= config.bin %> analytics usage spots --json"
12092
+ "<%= config.bin %> analytics video totals --date-expression thismonth",
12093
+ "<%= config.bin %> analytics video totals --date-start 2024-01-01 --date-end 2024-01-31",
12094
+ "<%= config.bin %> analytics video totals --json"
12070
12095
  ],
12071
12096
  "flags": {
12072
12097
  "json": {
@@ -12117,22 +12142,6 @@
12117
12142
  "multiple": false,
12118
12143
  "type": "option"
12119
12144
  },
12120
- "page": {
12121
- "description": "Page number",
12122
- "name": "page",
12123
- "required": false,
12124
- "hasDynamicHelp": false,
12125
- "multiple": false,
12126
- "type": "option"
12127
- },
12128
- "size": {
12129
- "description": "Page size",
12130
- "name": "size",
12131
- "required": false,
12132
- "hasDynamicHelp": false,
12133
- "multiple": false,
12134
- "type": "option"
12135
- },
12136
12145
  "selection": {
12137
12146
  "description": "Scope to specific objects/types",
12138
12147
  "name": "selection",
@@ -12168,23 +12177,23 @@
12168
12177
  },
12169
12178
  "hasDynamicHelp": false,
12170
12179
  "hiddenAliases": [],
12171
- "id": "analytics:usage:spots",
12180
+ "id": "analytics:video:totals",
12172
12181
  "pluginAlias": "twentythree-cli",
12173
12182
  "pluginName": "twentythree-cli",
12174
12183
  "pluginType": "core",
12175
12184
  "strict": true,
12176
12185
  "enableJsonFlag": true,
12177
12186
  "agentMetadata": {
12178
- "api_endpoint": "GET /analytics/data/usage/spots",
12187
+ "api_endpoint": "GET /analytics/data/videos/totals",
12179
12188
  "auth_scope": "read",
12180
12189
  "output_shape": {
12181
12190
  "type": "table",
12182
12191
  "columns": [
12183
- "Spot",
12184
12192
  "Plays",
12185
12193
  "Engagement",
12186
- "Traffic",
12187
- "Impressions"
12194
+ "Playrate",
12195
+ "Avg View Time",
12196
+ "Traffic"
12188
12197
  ]
12189
12198
  },
12190
12199
  "side_effects": "none"
@@ -12194,18 +12203,18 @@
12194
12203
  "dist",
12195
12204
  "commands",
12196
12205
  "analytics",
12197
- "usage",
12198
- "spots.cjs"
12206
+ "video",
12207
+ "totals.cjs"
12199
12208
  ]
12200
12209
  },
12201
- "analytics:usage:storage": {
12210
+ "analytics:video:weekday": {
12202
12211
  "aliases": [],
12203
12212
  "args": {},
12204
- "description": "Get storage usage analytics",
12213
+ "description": "Get video analytics broken down by day of week",
12205
12214
  "examples": [
12206
- "<%= config.bin %> analytics usage storage",
12207
- "<%= config.bin %> analytics usage storage --json",
12208
- "<%= config.bin %> analytics usage storage --selection videos"
12215
+ "<%= config.bin %> analytics video weekday --date-expression thismonth",
12216
+ "<%= config.bin %> analytics video weekday --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
12217
+ "<%= config.bin %> analytics video weekday --json"
12209
12218
  ],
12210
12219
  "flags": {
12211
12220
  "json": {
@@ -12256,6 +12265,22 @@
12256
12265
  "multiple": false,
12257
12266
  "type": "option"
12258
12267
  },
12268
+ "page": {
12269
+ "description": "Page number",
12270
+ "name": "page",
12271
+ "required": false,
12272
+ "hasDynamicHelp": false,
12273
+ "multiple": false,
12274
+ "type": "option"
12275
+ },
12276
+ "size": {
12277
+ "description": "Page size",
12278
+ "name": "size",
12279
+ "required": false,
12280
+ "hasDynamicHelp": false,
12281
+ "multiple": false,
12282
+ "type": "option"
12283
+ },
12259
12284
  "selection": {
12260
12285
  "description": "Scope to specific objects/types",
12261
12286
  "name": "selection",
@@ -12291,17 +12316,24 @@
12291
12316
  },
12292
12317
  "hasDynamicHelp": false,
12293
12318
  "hiddenAliases": [],
12294
- "id": "analytics:usage:storage",
12319
+ "id": "analytics:video:weekday",
12295
12320
  "pluginAlias": "twentythree-cli",
12296
12321
  "pluginName": "twentythree-cli",
12297
12322
  "pluginType": "core",
12298
12323
  "strict": true,
12299
12324
  "enableJsonFlag": true,
12300
12325
  "agentMetadata": {
12301
- "api_endpoint": "GET /analytics/data/usage/storage",
12326
+ "api_endpoint": "GET /analytics/data/videos/weekday",
12302
12327
  "auth_scope": "read",
12303
12328
  "output_shape": {
12304
- "type": "key-value"
12329
+ "type": "table",
12330
+ "columns": [
12331
+ "Day",
12332
+ "Plays",
12333
+ "Engagement",
12334
+ "Playrate",
12335
+ "Traffic"
12336
+ ]
12305
12337
  },
12306
12338
  "side_effects": "none"
12307
12339
  },
@@ -12310,18 +12342,18 @@
12310
12342
  "dist",
12311
12343
  "commands",
12312
12344
  "analytics",
12313
- "usage",
12314
- "storage.cjs"
12345
+ "video",
12346
+ "weekday.cjs"
12315
12347
  ]
12316
12348
  },
12317
- "analytics:usage:traffic": {
12349
+ "analytics:live:event-timeseries": {
12318
12350
  "aliases": [],
12319
12351
  "args": {},
12320
- "description": "Get usage analytics by traffic type",
12352
+ "description": "Get live/webinar event time series analytics",
12321
12353
  "examples": [
12322
- "<%= config.bin %> analytics usage traffic --date-expression thismonth",
12323
- "<%= config.bin %> analytics usage traffic --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
12324
- "<%= config.bin %> analytics usage traffic --json"
12354
+ "<%= config.bin %> analytics live event-timeseries --date-expression thisweek",
12355
+ "<%= config.bin %> analytics live event-timeseries --date-start 2024-01-01 --date-end 2024-01-31",
12356
+ "<%= config.bin %> analytics live event-timeseries --json"
12325
12357
  ],
12326
12358
  "flags": {
12327
12359
  "json": {
@@ -12372,22 +12404,6 @@
12372
12404
  "multiple": false,
12373
12405
  "type": "option"
12374
12406
  },
12375
- "page": {
12376
- "description": "Page number",
12377
- "name": "page",
12378
- "required": false,
12379
- "hasDynamicHelp": false,
12380
- "multiple": false,
12381
- "type": "option"
12382
- },
12383
- "size": {
12384
- "description": "Page size",
12385
- "name": "size",
12386
- "required": false,
12387
- "hasDynamicHelp": false,
12388
- "multiple": false,
12389
- "type": "option"
12390
- },
12391
12407
  "selection": {
12392
12408
  "description": "Scope to specific objects/types",
12393
12409
  "name": "selection",
@@ -12423,23 +12439,23 @@
12423
12439
  },
12424
12440
  "hasDynamicHelp": false,
12425
12441
  "hiddenAliases": [],
12426
- "id": "analytics:usage:traffic",
12442
+ "id": "analytics:live:event-timeseries",
12427
12443
  "pluginAlias": "twentythree-cli",
12428
12444
  "pluginName": "twentythree-cli",
12429
12445
  "pluginType": "core",
12430
12446
  "strict": true,
12431
12447
  "enableJsonFlag": true,
12432
12448
  "agentMetadata": {
12433
- "api_endpoint": "GET /analytics/data/usage/traffic",
12449
+ "api_endpoint": "GET /analytics/data/live/event/timeseries",
12434
12450
  "auth_scope": "read",
12435
12451
  "output_shape": {
12436
12452
  "type": "table",
12437
12453
  "columns": [
12438
- "Traffic Type",
12454
+ "Date",
12439
12455
  "Plays",
12456
+ "Peak Viewers",
12440
12457
  "Engagement",
12441
- "Traffic",
12442
- "Impressions"
12458
+ "Playrate"
12443
12459
  ]
12444
12460
  },
12445
12461
  "side_effects": "none"
@@ -12449,18 +12465,18 @@
12449
12465
  "dist",
12450
12466
  "commands",
12451
12467
  "analytics",
12452
- "usage",
12453
- "traffic.cjs"
12468
+ "live",
12469
+ "event-timeseries.cjs"
12454
12470
  ]
12455
12471
  },
12456
- "analytics:video": {
12472
+ "analytics:live:event-totals": {
12457
12473
  "aliases": [],
12458
12474
  "args": {},
12459
- "description": "Get video analytics data",
12475
+ "description": "Get live/webinar event totals analytics",
12460
12476
  "examples": [
12461
- "<%= config.bin %> analytics video --date-expression thisweek",
12462
- "<%= config.bin %> analytics video --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
12463
- "<%= config.bin %> analytics video --json"
12477
+ "<%= config.bin %> analytics live event-totals --date-expression thisweek",
12478
+ "<%= config.bin %> analytics live event-totals --date-start 2024-01-01 --date-end 2024-01-31",
12479
+ "<%= config.bin %> analytics live event-totals --json"
12464
12480
  ],
12465
12481
  "flags": {
12466
12482
  "json": {
@@ -12503,25 +12519,9 @@
12503
12519
  "multiple": false,
12504
12520
  "type": "option"
12505
12521
  },
12506
- "date-expression": {
12507
- "description": "Predefined date range (e.g. thisweek, lastyear)",
12508
- "name": "date-expression",
12509
- "required": false,
12510
- "hasDynamicHelp": false,
12511
- "multiple": false,
12512
- "type": "option"
12513
- },
12514
- "page": {
12515
- "description": "Page number",
12516
- "name": "page",
12517
- "required": false,
12518
- "hasDynamicHelp": false,
12519
- "multiple": false,
12520
- "type": "option"
12521
- },
12522
- "size": {
12523
- "description": "Page size",
12524
- "name": "size",
12522
+ "date-expression": {
12523
+ "description": "Predefined date range (e.g. thisweek, lastyear)",
12524
+ "name": "date-expression",
12525
12525
  "required": false,
12526
12526
  "hasDynamicHelp": false,
12527
12527
  "multiple": false,
@@ -12562,23 +12562,23 @@
12562
12562
  },
12563
12563
  "hasDynamicHelp": false,
12564
12564
  "hiddenAliases": [],
12565
- "id": "analytics:video",
12565
+ "id": "analytics:live:event-totals",
12566
12566
  "pluginAlias": "twentythree-cli",
12567
12567
  "pluginName": "twentythree-cli",
12568
12568
  "pluginType": "core",
12569
12569
  "strict": true,
12570
12570
  "enableJsonFlag": true,
12571
12571
  "agentMetadata": {
12572
- "api_endpoint": "GET /analytics/data/videos",
12572
+ "api_endpoint": "GET /analytics/data/live/event/totals",
12573
12573
  "auth_scope": "read",
12574
12574
  "output_shape": {
12575
12575
  "type": "table",
12576
12576
  "columns": [
12577
12577
  "Plays",
12578
+ "Peak Viewers",
12578
12579
  "Engagement",
12579
12580
  "Playrate",
12580
- "Avg View Time",
12581
- "Traffic"
12581
+ "Avg View Time"
12582
12582
  ]
12583
12583
  },
12584
12584
  "side_effects": "none"
@@ -12588,18 +12588,18 @@
12588
12588
  "dist",
12589
12589
  "commands",
12590
12590
  "analytics",
12591
- "video",
12592
- "index.cjs"
12591
+ "live",
12592
+ "event-totals.cjs"
12593
12593
  ]
12594
12594
  },
12595
- "analytics:video:performance": {
12595
+ "analytics:live:event": {
12596
12596
  "aliases": [],
12597
12597
  "args": {},
12598
- "description": "Get video performance analytics",
12598
+ "description": "Get live/webinar event analytics",
12599
12599
  "examples": [
12600
- "<%= config.bin %> analytics video performance --date-expression thismonth",
12601
- "<%= config.bin %> analytics video performance --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
12602
- "<%= config.bin %> analytics video performance --json"
12600
+ "<%= config.bin %> analytics live event --date-expression thismonth",
12601
+ "<%= config.bin %> analytics live event --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
12602
+ "<%= config.bin %> analytics live event --json"
12603
12603
  ],
12604
12604
  "flags": {
12605
12605
  "json": {
@@ -12701,22 +12701,22 @@
12701
12701
  },
12702
12702
  "hasDynamicHelp": false,
12703
12703
  "hiddenAliases": [],
12704
- "id": "analytics:video:performance",
12704
+ "id": "analytics:live:event",
12705
12705
  "pluginAlias": "twentythree-cli",
12706
12706
  "pluginName": "twentythree-cli",
12707
12707
  "pluginType": "core",
12708
12708
  "strict": true,
12709
12709
  "enableJsonFlag": true,
12710
12710
  "agentMetadata": {
12711
- "api_endpoint": "GET /analytics/data/videos/performance",
12711
+ "api_endpoint": "GET /analytics/data/live/event",
12712
12712
  "auth_scope": "read",
12713
12713
  "output_shape": {
12714
12714
  "type": "table",
12715
12715
  "columns": [
12716
- "Title",
12716
+ "Event",
12717
12717
  "Plays",
12718
+ "Peak Viewers",
12718
12719
  "Engagement",
12719
- "Playrate",
12720
12720
  "Performance"
12721
12721
  ]
12722
12722
  },
@@ -12727,18 +12727,18 @@
12727
12727
  "dist",
12728
12728
  "commands",
12729
12729
  "analytics",
12730
- "video",
12731
- "performance.cjs"
12730
+ "live",
12731
+ "event.cjs"
12732
12732
  ]
12733
12733
  },
12734
- "analytics:video:published": {
12734
+ "analytics:live": {
12735
12735
  "aliases": [],
12736
12736
  "args": {},
12737
- "description": "Get analytics for published videos",
12737
+ "description": "Get live/webinar analytics data",
12738
12738
  "examples": [
12739
- "<%= config.bin %> analytics video published --date-expression thismonth",
12740
- "<%= config.bin %> analytics video published --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
12741
- "<%= config.bin %> analytics video published --json"
12739
+ "<%= config.bin %> analytics live --date-expression thisweek",
12740
+ "<%= config.bin %> analytics live --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
12741
+ "<%= config.bin %> analytics live --json"
12742
12742
  ],
12743
12743
  "flags": {
12744
12744
  "json": {
@@ -12840,23 +12840,23 @@
12840
12840
  },
12841
12841
  "hasDynamicHelp": false,
12842
12842
  "hiddenAliases": [],
12843
- "id": "analytics:video:published",
12843
+ "id": "analytics:live",
12844
12844
  "pluginAlias": "twentythree-cli",
12845
12845
  "pluginName": "twentythree-cli",
12846
12846
  "pluginType": "core",
12847
12847
  "strict": true,
12848
12848
  "enableJsonFlag": true,
12849
12849
  "agentMetadata": {
12850
- "api_endpoint": "GET /analytics/data/videos/published",
12850
+ "api_endpoint": "GET /analytics/data/live",
12851
12851
  "auth_scope": "read",
12852
12852
  "output_shape": {
12853
12853
  "type": "table",
12854
12854
  "columns": [
12855
- "Date",
12856
- "Videos",
12857
12855
  "Plays",
12856
+ "Peak Viewers",
12858
12857
  "Engagement",
12859
- "Traffic"
12858
+ "Playrate",
12859
+ "Avg View Time"
12860
12860
  ]
12861
12861
  },
12862
12862
  "side_effects": "none"
@@ -12866,18 +12866,18 @@
12866
12866
  "dist",
12867
12867
  "commands",
12868
12868
  "analytics",
12869
- "video",
12870
- "published.cjs"
12869
+ "live",
12870
+ "index.cjs"
12871
12871
  ]
12872
12872
  },
12873
- "analytics:video:timeseries": {
12873
+ "analytics:live:timeseries": {
12874
12874
  "aliases": [],
12875
12875
  "args": {},
12876
- "description": "Get video analytics time series data",
12876
+ "description": "Get live/webinar analytics time series data",
12877
12877
  "examples": [
12878
- "<%= config.bin %> analytics video timeseries --date-expression thisweek",
12879
- "<%= config.bin %> analytics video timeseries --date-start 2024-01-01 --date-end 2024-01-31",
12880
- "<%= config.bin %> analytics video timeseries --json"
12878
+ "<%= config.bin %> analytics live timeseries --date-expression thisweek",
12879
+ "<%= config.bin %> analytics live timeseries --date-start 2024-01-01 --date-end 2024-01-31",
12880
+ "<%= config.bin %> analytics live timeseries --json"
12881
12881
  ],
12882
12882
  "flags": {
12883
12883
  "json": {
@@ -12963,23 +12963,23 @@
12963
12963
  },
12964
12964
  "hasDynamicHelp": false,
12965
12965
  "hiddenAliases": [],
12966
- "id": "analytics:video:timeseries",
12966
+ "id": "analytics:live:timeseries",
12967
12967
  "pluginAlias": "twentythree-cli",
12968
12968
  "pluginName": "twentythree-cli",
12969
12969
  "pluginType": "core",
12970
12970
  "strict": true,
12971
12971
  "enableJsonFlag": true,
12972
12972
  "agentMetadata": {
12973
- "api_endpoint": "GET /analytics/data/videos/timeseries",
12973
+ "api_endpoint": "GET /analytics/data/live/timeseries",
12974
12974
  "auth_scope": "read",
12975
12975
  "output_shape": {
12976
12976
  "type": "table",
12977
12977
  "columns": [
12978
12978
  "Date",
12979
12979
  "Plays",
12980
+ "Peak Viewers",
12980
12981
  "Engagement",
12981
- "Playrate",
12982
- "Traffic"
12982
+ "Playrate"
12983
12983
  ]
12984
12984
  },
12985
12985
  "side_effects": "none"
@@ -12989,18 +12989,18 @@
12989
12989
  "dist",
12990
12990
  "commands",
12991
12991
  "analytics",
12992
- "video",
12992
+ "live",
12993
12993
  "timeseries.cjs"
12994
12994
  ]
12995
12995
  },
12996
- "analytics:video:totals": {
12996
+ "analytics:live:totals": {
12997
12997
  "aliases": [],
12998
12998
  "args": {},
12999
- "description": "Get aggregated video analytics totals",
12999
+ "description": "Get live/webinar analytics totals",
13000
13000
  "examples": [
13001
- "<%= config.bin %> analytics video totals --date-expression thismonth",
13002
- "<%= config.bin %> analytics video totals --date-start 2024-01-01 --date-end 2024-01-31",
13003
- "<%= config.bin %> analytics video totals --json"
13001
+ "<%= config.bin %> analytics live totals --date-expression thisweek",
13002
+ "<%= config.bin %> analytics live totals --date-start 2024-01-01 --date-end 2024-01-31",
13003
+ "<%= config.bin %> analytics live totals --json"
13004
13004
  ],
13005
13005
  "flags": {
13006
13006
  "json": {
@@ -13086,23 +13086,23 @@
13086
13086
  },
13087
13087
  "hasDynamicHelp": false,
13088
13088
  "hiddenAliases": [],
13089
- "id": "analytics:video:totals",
13089
+ "id": "analytics:live:totals",
13090
13090
  "pluginAlias": "twentythree-cli",
13091
13091
  "pluginName": "twentythree-cli",
13092
13092
  "pluginType": "core",
13093
13093
  "strict": true,
13094
13094
  "enableJsonFlag": true,
13095
13095
  "agentMetadata": {
13096
- "api_endpoint": "GET /analytics/data/videos/totals",
13096
+ "api_endpoint": "GET /analytics/data/live/totals",
13097
13097
  "auth_scope": "read",
13098
13098
  "output_shape": {
13099
13099
  "type": "table",
13100
13100
  "columns": [
13101
13101
  "Plays",
13102
+ "Peak Viewers",
13102
13103
  "Engagement",
13103
13104
  "Playrate",
13104
- "Avg View Time",
13105
- "Traffic"
13105
+ "Avg View Time"
13106
13106
  ]
13107
13107
  },
13108
13108
  "side_effects": "none"
@@ -13112,18 +13112,18 @@
13112
13112
  "dist",
13113
13113
  "commands",
13114
13114
  "analytics",
13115
- "video",
13115
+ "live",
13116
13116
  "totals.cjs"
13117
13117
  ]
13118
13118
  },
13119
- "analytics:video:weekday": {
13119
+ "analytics:live:weekday": {
13120
13120
  "aliases": [],
13121
13121
  "args": {},
13122
- "description": "Get video analytics broken down by day of week",
13122
+ "description": "Get live/webinar analytics by day of week",
13123
13123
  "examples": [
13124
- "<%= config.bin %> analytics video weekday --date-expression thismonth",
13125
- "<%= config.bin %> analytics video weekday --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
13126
- "<%= config.bin %> analytics video weekday --json"
13124
+ "<%= config.bin %> analytics live weekday --date-expression thismonth",
13125
+ "<%= config.bin %> analytics live weekday --date-start 2024-01-01 --date-end 2024-01-31 --page 1 --size 20",
13126
+ "<%= config.bin %> analytics live weekday --json"
13127
13127
  ],
13128
13128
  "flags": {
13129
13129
  "json": {
@@ -13225,23 +13225,23 @@
13225
13225
  },
13226
13226
  "hasDynamicHelp": false,
13227
13227
  "hiddenAliases": [],
13228
- "id": "analytics:video:weekday",
13228
+ "id": "analytics:live:weekday",
13229
13229
  "pluginAlias": "twentythree-cli",
13230
13230
  "pluginName": "twentythree-cli",
13231
13231
  "pluginType": "core",
13232
13232
  "strict": true,
13233
13233
  "enableJsonFlag": true,
13234
13234
  "agentMetadata": {
13235
- "api_endpoint": "GET /analytics/data/videos/weekday",
13235
+ "api_endpoint": "GET /analytics/data/live/weekday",
13236
13236
  "auth_scope": "read",
13237
13237
  "output_shape": {
13238
13238
  "type": "table",
13239
13239
  "columns": [
13240
13240
  "Day",
13241
13241
  "Plays",
13242
+ "Peak Viewers",
13242
13243
  "Engagement",
13243
- "Playrate",
13244
- "Traffic"
13244
+ "Playrate"
13245
13245
  ]
13246
13246
  },
13247
13247
  "side_effects": "none"
@@ -13251,7 +13251,7 @@
13251
13251
  "dist",
13252
13252
  "commands",
13253
13253
  "analytics",
13254
- "video",
13254
+ "live",
13255
13255
  "weekday.cjs"
13256
13256
  ]
13257
13257
  },
@@ -19975,14 +19975,14 @@
19975
19975
  "transcriptionlist.cjs"
19976
19976
  ]
19977
19977
  },
19978
- "analytics:live:weekday:timeseries": {
19978
+ "analytics:usage:domains:totals": {
19979
19979
  "aliases": [],
19980
19980
  "args": {},
19981
- "description": "Get live/webinar analytics by weekday - time series",
19981
+ "description": "Get aggregated usage analytics by embed domain - totals",
19982
19982
  "examples": [
19983
- "<%= config.bin %> analytics live weekday timeseries --date-expression thisweek",
19984
- "<%= config.bin %> analytics live weekday timeseries --date-start 2024-01-01 --date-end 2024-01-31",
19985
- "<%= config.bin %> analytics live weekday timeseries --json"
19983
+ "<%= config.bin %> analytics usage domains totals --date-expression thismonth",
19984
+ "<%= config.bin %> analytics usage domains totals --date-start 2024-01-01 --date-end 2024-01-31",
19985
+ "<%= config.bin %> analytics usage domains totals --json"
19986
19986
  ],
19987
19987
  "flags": {
19988
19988
  "json": {
@@ -20068,23 +20068,22 @@
20068
20068
  },
20069
20069
  "hasDynamicHelp": false,
20070
20070
  "hiddenAliases": [],
20071
- "id": "analytics:live:weekday:timeseries",
20071
+ "id": "analytics:usage:domains:totals",
20072
20072
  "pluginAlias": "twentythree-cli",
20073
20073
  "pluginName": "twentythree-cli",
20074
20074
  "pluginType": "core",
20075
20075
  "strict": true,
20076
20076
  "enableJsonFlag": true,
20077
20077
  "agentMetadata": {
20078
- "api_endpoint": "GET /analytics/data/live/weekday/timeseries",
20078
+ "api_endpoint": "GET /analytics/data/usage/domains/totals",
20079
20079
  "auth_scope": "read",
20080
20080
  "output_shape": {
20081
20081
  "type": "table",
20082
20082
  "columns": [
20083
- "Date",
20084
- "Day",
20083
+ "Domain",
20085
20084
  "Plays",
20086
- "Peak Viewers",
20087
- "Engagement"
20085
+ "Engagement",
20086
+ "Traffic"
20088
20087
  ]
20089
20088
  },
20090
20089
  "side_effects": "none"
@@ -20094,19 +20093,19 @@
20094
20093
  "dist",
20095
20094
  "commands",
20096
20095
  "analytics",
20097
- "live",
20098
- "weekday",
20099
- "timeseries.cjs"
20096
+ "usage",
20097
+ "domains",
20098
+ "totals.cjs"
20100
20099
  ]
20101
20100
  },
20102
- "analytics:live:weekday:totals": {
20101
+ "analytics:usage:locations:totals": {
20103
20102
  "aliases": [],
20104
20103
  "args": {},
20105
- "description": "Get aggregated live/webinar analytics by weekday - totals",
20104
+ "description": "Get aggregated usage analytics by location - totals",
20106
20105
  "examples": [
20107
- "<%= config.bin %> analytics live weekday totals --date-expression thismonth",
20108
- "<%= config.bin %> analytics live weekday totals --date-start 2024-01-01 --date-end 2024-01-31",
20109
- "<%= config.bin %> analytics live weekday totals --json"
20106
+ "<%= config.bin %> analytics usage locations totals --date-expression thismonth",
20107
+ "<%= config.bin %> analytics usage locations totals --date-start 2024-01-01 --date-end 2024-01-31",
20108
+ "<%= config.bin %> analytics usage locations totals --json"
20110
20109
  ],
20111
20110
  "flags": {
20112
20111
  "json": {
@@ -20192,23 +20191,22 @@
20192
20191
  },
20193
20192
  "hasDynamicHelp": false,
20194
20193
  "hiddenAliases": [],
20195
- "id": "analytics:live:weekday:totals",
20194
+ "id": "analytics:usage:locations:totals",
20196
20195
  "pluginAlias": "twentythree-cli",
20197
20196
  "pluginName": "twentythree-cli",
20198
20197
  "pluginType": "core",
20199
20198
  "strict": true,
20200
20199
  "enableJsonFlag": true,
20201
20200
  "agentMetadata": {
20202
- "api_endpoint": "GET /analytics/data/live/weekday/totals",
20201
+ "api_endpoint": "GET /analytics/data/usage/locations/totals",
20203
20202
  "auth_scope": "read",
20204
20203
  "output_shape": {
20205
20204
  "type": "table",
20206
20205
  "columns": [
20207
- "Day",
20206
+ "Location",
20208
20207
  "Plays",
20209
- "Peak Viewers",
20210
20208
  "Engagement",
20211
- "Playrate"
20209
+ "Traffic"
20212
20210
  ]
20213
20211
  },
20214
20212
  "side_effects": "none"
@@ -20218,19 +20216,19 @@
20218
20216
  "dist",
20219
20217
  "commands",
20220
20218
  "analytics",
20221
- "live",
20222
- "weekday",
20219
+ "usage",
20220
+ "locations",
20223
20221
  "totals.cjs"
20224
20222
  ]
20225
20223
  },
20226
- "analytics:usage:devices:timeseries": {
20224
+ "analytics:usage:sourceids:totals": {
20227
20225
  "aliases": [],
20228
20226
  "args": {},
20229
- "description": "Get usage analytics by device type - time series",
20227
+ "description": "Get aggregated usage analytics by source ID - totals",
20230
20228
  "examples": [
20231
- "<%= config.bin %> analytics usage devices timeseries --date-expression thisweek",
20232
- "<%= config.bin %> analytics usage devices timeseries --date-start 2024-01-01 --date-end 2024-01-31",
20233
- "<%= config.bin %> analytics usage devices timeseries --json"
20229
+ "<%= config.bin %> analytics usage sourceids totals --date-expression thismonth",
20230
+ "<%= config.bin %> analytics usage sourceids totals --date-start 2024-01-01 --date-end 2024-01-31",
20231
+ "<%= config.bin %> analytics usage sourceids totals --json"
20234
20232
  ],
20235
20233
  "flags": {
20236
20234
  "json": {
@@ -20316,22 +20314,22 @@
20316
20314
  },
20317
20315
  "hasDynamicHelp": false,
20318
20316
  "hiddenAliases": [],
20319
- "id": "analytics:usage:devices:timeseries",
20317
+ "id": "analytics:usage:sourceids:totals",
20320
20318
  "pluginAlias": "twentythree-cli",
20321
20319
  "pluginName": "twentythree-cli",
20322
20320
  "pluginType": "core",
20323
20321
  "strict": true,
20324
20322
  "enableJsonFlag": true,
20325
20323
  "agentMetadata": {
20326
- "api_endpoint": "GET /analytics/data/usage/devices/timeseries",
20324
+ "api_endpoint": "GET /analytics/data/usage/sourceids/totals",
20327
20325
  "auth_scope": "read",
20328
20326
  "output_shape": {
20329
20327
  "type": "table",
20330
20328
  "columns": [
20331
- "Date",
20332
- "Device",
20329
+ "Source ID",
20333
20330
  "Plays",
20334
- "Engagement"
20331
+ "Engagement",
20332
+ "Traffic"
20335
20333
  ]
20336
20334
  },
20337
20335
  "side_effects": "none"
@@ -20342,18 +20340,18 @@
20342
20340
  "commands",
20343
20341
  "analytics",
20344
20342
  "usage",
20345
- "devices",
20346
- "timeseries.cjs"
20343
+ "sourceids",
20344
+ "totals.cjs"
20347
20345
  ]
20348
20346
  },
20349
- "analytics:usage:devices:totals": {
20347
+ "analytics:usage:sources:totals": {
20350
20348
  "aliases": [],
20351
20349
  "args": {},
20352
- "description": "Get aggregated usage analytics by device type - totals",
20350
+ "description": "Get aggregated usage analytics by source - totals",
20353
20351
  "examples": [
20354
- "<%= config.bin %> analytics usage devices totals --date-expression thismonth",
20355
- "<%= config.bin %> analytics usage devices totals --date-start 2024-01-01 --date-end 2024-01-31",
20356
- "<%= config.bin %> analytics usage devices totals --json"
20352
+ "<%= config.bin %> analytics usage sources totals --date-expression thismonth",
20353
+ "<%= config.bin %> analytics usage sources totals --date-start 2024-01-01 --date-end 2024-01-31",
20354
+ "<%= config.bin %> analytics usage sources totals --json"
20357
20355
  ],
20358
20356
  "flags": {
20359
20357
  "json": {
@@ -20439,23 +20437,22 @@
20439
20437
  },
20440
20438
  "hasDynamicHelp": false,
20441
20439
  "hiddenAliases": [],
20442
- "id": "analytics:usage:devices:totals",
20440
+ "id": "analytics:usage:sources:totals",
20443
20441
  "pluginAlias": "twentythree-cli",
20444
20442
  "pluginName": "twentythree-cli",
20445
20443
  "pluginType": "core",
20446
20444
  "strict": true,
20447
20445
  "enableJsonFlag": true,
20448
20446
  "agentMetadata": {
20449
- "api_endpoint": "GET /analytics/data/usage/devices/totals",
20447
+ "api_endpoint": "GET /analytics/data/usage/sources/totals",
20450
20448
  "auth_scope": "read",
20451
20449
  "output_shape": {
20452
20450
  "type": "table",
20453
20451
  "columns": [
20454
- "Device",
20452
+ "Source",
20455
20453
  "Plays",
20456
20454
  "Engagement",
20457
- "Traffic",
20458
- "Impressions"
20455
+ "Traffic"
20459
20456
  ]
20460
20457
  },
20461
20458
  "side_effects": "none"
@@ -20466,18 +20463,18 @@
20466
20463
  "commands",
20467
20464
  "analytics",
20468
20465
  "usage",
20469
- "devices",
20466
+ "sources",
20470
20467
  "totals.cjs"
20471
20468
  ]
20472
20469
  },
20473
- "analytics:usage:domains:totals": {
20470
+ "analytics:usage:spots:timeseries": {
20474
20471
  "aliases": [],
20475
20472
  "args": {},
20476
- "description": "Get aggregated usage analytics by embed domain - totals",
20473
+ "description": "Get spot usage analytics - time series",
20477
20474
  "examples": [
20478
- "<%= config.bin %> analytics usage domains totals --date-expression thismonth",
20479
- "<%= config.bin %> analytics usage domains totals --date-start 2024-01-01 --date-end 2024-01-31",
20480
- "<%= config.bin %> analytics usage domains totals --json"
20475
+ "<%= config.bin %> analytics usage spots timeseries --date-expression thisweek",
20476
+ "<%= config.bin %> analytics usage spots timeseries --date-start 2024-01-01 --date-end 2024-01-31",
20477
+ "<%= config.bin %> analytics usage spots timeseries --json"
20481
20478
  ],
20482
20479
  "flags": {
20483
20480
  "json": {
@@ -20563,22 +20560,22 @@
20563
20560
  },
20564
20561
  "hasDynamicHelp": false,
20565
20562
  "hiddenAliases": [],
20566
- "id": "analytics:usage:domains:totals",
20563
+ "id": "analytics:usage:spots:timeseries",
20567
20564
  "pluginAlias": "twentythree-cli",
20568
20565
  "pluginName": "twentythree-cli",
20569
20566
  "pluginType": "core",
20570
20567
  "strict": true,
20571
20568
  "enableJsonFlag": true,
20572
20569
  "agentMetadata": {
20573
- "api_endpoint": "GET /analytics/data/usage/domains/totals",
20570
+ "api_endpoint": "GET /analytics/data/usage/spots/timeseries",
20574
20571
  "auth_scope": "read",
20575
20572
  "output_shape": {
20576
20573
  "type": "table",
20577
20574
  "columns": [
20578
- "Domain",
20575
+ "Date",
20576
+ "Spot",
20579
20577
  "Plays",
20580
- "Engagement",
20581
- "Traffic"
20578
+ "Engagement"
20582
20579
  ]
20583
20580
  },
20584
20581
  "side_effects": "none"
@@ -20589,18 +20586,18 @@
20589
20586
  "commands",
20590
20587
  "analytics",
20591
20588
  "usage",
20592
- "domains",
20593
- "totals.cjs"
20589
+ "spots",
20590
+ "timeseries.cjs"
20594
20591
  ]
20595
20592
  },
20596
- "analytics:usage:locations:totals": {
20593
+ "analytics:usage:spots:totals": {
20597
20594
  "aliases": [],
20598
20595
  "args": {},
20599
- "description": "Get aggregated usage analytics by location - totals",
20596
+ "description": "Get aggregated spot usage analytics - totals",
20600
20597
  "examples": [
20601
- "<%= config.bin %> analytics usage locations totals --date-expression thismonth",
20602
- "<%= config.bin %> analytics usage locations totals --date-start 2024-01-01 --date-end 2024-01-31",
20603
- "<%= config.bin %> analytics usage locations totals --json"
20598
+ "<%= config.bin %> analytics usage spots totals --date-expression thismonth",
20599
+ "<%= config.bin %> analytics usage spots totals --date-start 2024-01-01 --date-end 2024-01-31",
20600
+ "<%= config.bin %> analytics usage spots totals --json"
20604
20601
  ],
20605
20602
  "flags": {
20606
20603
  "json": {
@@ -20686,19 +20683,19 @@
20686
20683
  },
20687
20684
  "hasDynamicHelp": false,
20688
20685
  "hiddenAliases": [],
20689
- "id": "analytics:usage:locations:totals",
20686
+ "id": "analytics:usage:spots:totals",
20690
20687
  "pluginAlias": "twentythree-cli",
20691
20688
  "pluginName": "twentythree-cli",
20692
20689
  "pluginType": "core",
20693
20690
  "strict": true,
20694
20691
  "enableJsonFlag": true,
20695
20692
  "agentMetadata": {
20696
- "api_endpoint": "GET /analytics/data/usage/locations/totals",
20693
+ "api_endpoint": "GET /analytics/data/usage/spots/totals",
20697
20694
  "auth_scope": "read",
20698
20695
  "output_shape": {
20699
20696
  "type": "table",
20700
20697
  "columns": [
20701
- "Location",
20698
+ "Spot",
20702
20699
  "Plays",
20703
20700
  "Engagement",
20704
20701
  "Traffic"
@@ -20712,18 +20709,18 @@
20712
20709
  "commands",
20713
20710
  "analytics",
20714
20711
  "usage",
20715
- "locations",
20712
+ "spots",
20716
20713
  "totals.cjs"
20717
20714
  ]
20718
20715
  },
20719
- "analytics:usage:sourceids:totals": {
20716
+ "analytics:usage:traffic:timeseries": {
20720
20717
  "aliases": [],
20721
20718
  "args": {},
20722
- "description": "Get aggregated usage analytics by source ID - totals",
20719
+ "description": "Get traffic usage analytics - time series",
20723
20720
  "examples": [
20724
- "<%= config.bin %> analytics usage sourceids totals --date-expression thismonth",
20725
- "<%= config.bin %> analytics usage sourceids totals --date-start 2024-01-01 --date-end 2024-01-31",
20726
- "<%= config.bin %> analytics usage sourceids totals --json"
20721
+ "<%= config.bin %> analytics usage traffic timeseries --date-expression thisweek",
20722
+ "<%= config.bin %> analytics usage traffic timeseries --date-start 2024-01-01 --date-end 2024-01-31",
20723
+ "<%= config.bin %> analytics usage traffic timeseries --json"
20727
20724
  ],
20728
20725
  "flags": {
20729
20726
  "json": {
@@ -20809,22 +20806,22 @@
20809
20806
  },
20810
20807
  "hasDynamicHelp": false,
20811
20808
  "hiddenAliases": [],
20812
- "id": "analytics:usage:sourceids:totals",
20809
+ "id": "analytics:usage:traffic:timeseries",
20813
20810
  "pluginAlias": "twentythree-cli",
20814
20811
  "pluginName": "twentythree-cli",
20815
20812
  "pluginType": "core",
20816
20813
  "strict": true,
20817
20814
  "enableJsonFlag": true,
20818
20815
  "agentMetadata": {
20819
- "api_endpoint": "GET /analytics/data/usage/sourceids/totals",
20816
+ "api_endpoint": "GET /analytics/data/usage/traffic/timeseries",
20820
20817
  "auth_scope": "read",
20821
20818
  "output_shape": {
20822
20819
  "type": "table",
20823
20820
  "columns": [
20824
- "Source ID",
20821
+ "Date",
20822
+ "Traffic Type",
20825
20823
  "Plays",
20826
- "Engagement",
20827
- "Traffic"
20824
+ "Engagement"
20828
20825
  ]
20829
20826
  },
20830
20827
  "side_effects": "none"
@@ -20835,18 +20832,18 @@
20835
20832
  "commands",
20836
20833
  "analytics",
20837
20834
  "usage",
20838
- "sourceids",
20839
- "totals.cjs"
20835
+ "traffic",
20836
+ "timeseries.cjs"
20840
20837
  ]
20841
20838
  },
20842
- "analytics:usage:sources:totals": {
20839
+ "analytics:usage:traffic:totals": {
20843
20840
  "aliases": [],
20844
20841
  "args": {},
20845
- "description": "Get aggregated usage analytics by source - totals",
20842
+ "description": "Get aggregated traffic usage analytics - totals",
20846
20843
  "examples": [
20847
- "<%= config.bin %> analytics usage sources totals --date-expression thismonth",
20848
- "<%= config.bin %> analytics usage sources totals --date-start 2024-01-01 --date-end 2024-01-31",
20849
- "<%= config.bin %> analytics usage sources totals --json"
20844
+ "<%= config.bin %> analytics usage traffic totals --date-expression thismonth",
20845
+ "<%= config.bin %> analytics usage traffic totals --date-start 2024-01-01 --date-end 2024-01-31",
20846
+ "<%= config.bin %> analytics usage traffic totals --json"
20850
20847
  ],
20851
20848
  "flags": {
20852
20849
  "json": {
@@ -20932,22 +20929,23 @@
20932
20929
  },
20933
20930
  "hasDynamicHelp": false,
20934
20931
  "hiddenAliases": [],
20935
- "id": "analytics:usage:sources:totals",
20932
+ "id": "analytics:usage:traffic:totals",
20936
20933
  "pluginAlias": "twentythree-cli",
20937
20934
  "pluginName": "twentythree-cli",
20938
20935
  "pluginType": "core",
20939
20936
  "strict": true,
20940
20937
  "enableJsonFlag": true,
20941
20938
  "agentMetadata": {
20942
- "api_endpoint": "GET /analytics/data/usage/sources/totals",
20939
+ "api_endpoint": "GET /analytics/data/usage/traffic/totals",
20943
20940
  "auth_scope": "read",
20944
20941
  "output_shape": {
20945
20942
  "type": "table",
20946
20943
  "columns": [
20947
- "Source",
20944
+ "Traffic Type",
20948
20945
  "Plays",
20949
20946
  "Engagement",
20950
- "Traffic"
20947
+ "Traffic",
20948
+ "Impressions"
20951
20949
  ]
20952
20950
  },
20953
20951
  "side_effects": "none"
@@ -20958,18 +20956,18 @@
20958
20956
  "commands",
20959
20957
  "analytics",
20960
20958
  "usage",
20961
- "sources",
20959
+ "traffic",
20962
20960
  "totals.cjs"
20963
20961
  ]
20964
20962
  },
20965
- "analytics:usage:spots:timeseries": {
20963
+ "analytics:video:performance:timeseries": {
20966
20964
  "aliases": [],
20967
20965
  "args": {},
20968
- "description": "Get spot usage analytics - time series",
20966
+ "description": "Get video playthrough performance - time series",
20969
20967
  "examples": [
20970
- "<%= config.bin %> analytics usage spots timeseries --date-expression thisweek",
20971
- "<%= config.bin %> analytics usage spots timeseries --date-start 2024-01-01 --date-end 2024-01-31",
20972
- "<%= config.bin %> analytics usage spots timeseries --json"
20968
+ "<%= config.bin %> analytics video performance timeseries --date-expression thisweek",
20969
+ "<%= config.bin %> analytics video performance timeseries --date-start 2024-01-01 --date-end 2024-01-31",
20970
+ "<%= config.bin %> analytics video performance timeseries --json"
20973
20971
  ],
20974
20972
  "flags": {
20975
20973
  "json": {
@@ -21055,22 +21053,22 @@
21055
21053
  },
21056
21054
  "hasDynamicHelp": false,
21057
21055
  "hiddenAliases": [],
21058
- "id": "analytics:usage:spots:timeseries",
21056
+ "id": "analytics:video:performance:timeseries",
21059
21057
  "pluginAlias": "twentythree-cli",
21060
21058
  "pluginName": "twentythree-cli",
21061
21059
  "pluginType": "core",
21062
21060
  "strict": true,
21063
21061
  "enableJsonFlag": true,
21064
21062
  "agentMetadata": {
21065
- "api_endpoint": "GET /analytics/data/usage/spots/timeseries",
21063
+ "api_endpoint": "GET /analytics/data/videos/performance/timeseries",
21066
21064
  "auth_scope": "read",
21067
21065
  "output_shape": {
21068
21066
  "type": "table",
21069
21067
  "columns": [
21070
21068
  "Date",
21071
- "Spot",
21072
21069
  "Plays",
21073
- "Engagement"
21070
+ "Engagement",
21071
+ "Playthrough"
21074
21072
  ]
21075
21073
  },
21076
21074
  "side_effects": "none"
@@ -21080,19 +21078,19 @@
21080
21078
  "dist",
21081
21079
  "commands",
21082
21080
  "analytics",
21083
- "usage",
21084
- "spots",
21081
+ "video",
21082
+ "performance",
21085
21083
  "timeseries.cjs"
21086
21084
  ]
21087
21085
  },
21088
- "analytics:usage:spots:totals": {
21086
+ "analytics:video:performance:totals": {
21089
21087
  "aliases": [],
21090
21088
  "args": {},
21091
- "description": "Get aggregated spot usage analytics - totals",
21089
+ "description": "Get aggregated video playthrough performance - totals",
21092
21090
  "examples": [
21093
- "<%= config.bin %> analytics usage spots totals --date-expression thismonth",
21094
- "<%= config.bin %> analytics usage spots totals --date-start 2024-01-01 --date-end 2024-01-31",
21095
- "<%= config.bin %> analytics usage spots totals --json"
21091
+ "<%= config.bin %> analytics video performance totals --date-expression thisweek",
21092
+ "<%= config.bin %> analytics video performance totals --date-start 2024-01-01 --date-end 2024-01-31",
21093
+ "<%= config.bin %> analytics video performance totals --json"
21096
21094
  ],
21097
21095
  "flags": {
21098
21096
  "json": {
@@ -21178,22 +21176,21 @@
21178
21176
  },
21179
21177
  "hasDynamicHelp": false,
21180
21178
  "hiddenAliases": [],
21181
- "id": "analytics:usage:spots:totals",
21179
+ "id": "analytics:video:performance:totals",
21182
21180
  "pluginAlias": "twentythree-cli",
21183
21181
  "pluginName": "twentythree-cli",
21184
21182
  "pluginType": "core",
21185
21183
  "strict": true,
21186
21184
  "enableJsonFlag": true,
21187
21185
  "agentMetadata": {
21188
- "api_endpoint": "GET /analytics/data/usage/spots/totals",
21186
+ "api_endpoint": "GET /analytics/data/videos/performance/totals",
21189
21187
  "auth_scope": "read",
21190
21188
  "output_shape": {
21191
21189
  "type": "table",
21192
21190
  "columns": [
21193
- "Spot",
21194
21191
  "Plays",
21195
21192
  "Engagement",
21196
- "Traffic"
21193
+ "Playthrough"
21197
21194
  ]
21198
21195
  },
21199
21196
  "side_effects": "none"
@@ -21203,19 +21200,19 @@
21203
21200
  "dist",
21204
21201
  "commands",
21205
21202
  "analytics",
21206
- "usage",
21207
- "spots",
21203
+ "video",
21204
+ "performance",
21208
21205
  "totals.cjs"
21209
21206
  ]
21210
21207
  },
21211
- "analytics:usage:traffic:timeseries": {
21208
+ "analytics:video:published:timeseries": {
21212
21209
  "aliases": [],
21213
21210
  "args": {},
21214
- "description": "Get traffic usage analytics - time series",
21211
+ "description": "Get video analytics by publish date - time series",
21215
21212
  "examples": [
21216
- "<%= config.bin %> analytics usage traffic timeseries --date-expression thisweek",
21217
- "<%= config.bin %> analytics usage traffic timeseries --date-start 2024-01-01 --date-end 2024-01-31",
21218
- "<%= config.bin %> analytics usage traffic timeseries --json"
21213
+ "<%= config.bin %> analytics video published timeseries --date-expression thisweek",
21214
+ "<%= config.bin %> analytics video published timeseries --date-start 2024-01-01 --date-end 2024-01-31",
21215
+ "<%= config.bin %> analytics video published timeseries --json"
21219
21216
  ],
21220
21217
  "flags": {
21221
21218
  "json": {
@@ -21301,20 +21298,20 @@
21301
21298
  },
21302
21299
  "hasDynamicHelp": false,
21303
21300
  "hiddenAliases": [],
21304
- "id": "analytics:usage:traffic:timeseries",
21301
+ "id": "analytics:video:published:timeseries",
21305
21302
  "pluginAlias": "twentythree-cli",
21306
21303
  "pluginName": "twentythree-cli",
21307
21304
  "pluginType": "core",
21308
21305
  "strict": true,
21309
21306
  "enableJsonFlag": true,
21310
21307
  "agentMetadata": {
21311
- "api_endpoint": "GET /analytics/data/usage/traffic/timeseries",
21308
+ "api_endpoint": "GET /analytics/data/videos/published/timeseries",
21312
21309
  "auth_scope": "read",
21313
21310
  "output_shape": {
21314
21311
  "type": "table",
21315
21312
  "columns": [
21316
21313
  "Date",
21317
- "Traffic Type",
21314
+ "Published",
21318
21315
  "Plays",
21319
21316
  "Engagement"
21320
21317
  ]
@@ -21326,19 +21323,19 @@
21326
21323
  "dist",
21327
21324
  "commands",
21328
21325
  "analytics",
21329
- "usage",
21330
- "traffic",
21326
+ "video",
21327
+ "published",
21331
21328
  "timeseries.cjs"
21332
21329
  ]
21333
21330
  },
21334
- "analytics:usage:traffic:totals": {
21331
+ "analytics:video:published:totals": {
21335
21332
  "aliases": [],
21336
21333
  "args": {},
21337
- "description": "Get aggregated traffic usage analytics - totals",
21334
+ "description": "Get aggregated video analytics by publish date - totals",
21338
21335
  "examples": [
21339
- "<%= config.bin %> analytics usage traffic totals --date-expression thismonth",
21340
- "<%= config.bin %> analytics usage traffic totals --date-start 2024-01-01 --date-end 2024-01-31",
21341
- "<%= config.bin %> analytics usage traffic totals --json"
21336
+ "<%= config.bin %> analytics video published totals --date-expression thisweek",
21337
+ "<%= config.bin %> analytics video published totals --date-start 2024-01-01 --date-end 2024-01-31",
21338
+ "<%= config.bin %> analytics video published totals --json"
21342
21339
  ],
21343
21340
  "flags": {
21344
21341
  "json": {
@@ -21424,23 +21421,21 @@
21424
21421
  },
21425
21422
  "hasDynamicHelp": false,
21426
21423
  "hiddenAliases": [],
21427
- "id": "analytics:usage:traffic:totals",
21424
+ "id": "analytics:video:published:totals",
21428
21425
  "pluginAlias": "twentythree-cli",
21429
21426
  "pluginName": "twentythree-cli",
21430
21427
  "pluginType": "core",
21431
21428
  "strict": true,
21432
21429
  "enableJsonFlag": true,
21433
21430
  "agentMetadata": {
21434
- "api_endpoint": "GET /analytics/data/usage/traffic/totals",
21431
+ "api_endpoint": "GET /analytics/data/videos/published/totals",
21435
21432
  "auth_scope": "read",
21436
21433
  "output_shape": {
21437
21434
  "type": "table",
21438
21435
  "columns": [
21439
- "Traffic Type",
21436
+ "Published",
21440
21437
  "Plays",
21441
- "Engagement",
21442
- "Traffic",
21443
- "Impressions"
21438
+ "Engagement"
21444
21439
  ]
21445
21440
  },
21446
21441
  "side_effects": "none"
@@ -21450,19 +21445,19 @@
21450
21445
  "dist",
21451
21446
  "commands",
21452
21447
  "analytics",
21453
- "usage",
21454
- "traffic",
21448
+ "video",
21449
+ "published",
21455
21450
  "totals.cjs"
21456
21451
  ]
21457
21452
  },
21458
- "analytics:video:performance:timeseries": {
21453
+ "analytics:video:weekday:timeseries": {
21459
21454
  "aliases": [],
21460
21455
  "args": {},
21461
- "description": "Get video playthrough performance - time series",
21456
+ "description": "Get video analytics by weekday - time series",
21462
21457
  "examples": [
21463
- "<%= config.bin %> analytics video performance timeseries --date-expression thisweek",
21464
- "<%= config.bin %> analytics video performance timeseries --date-start 2024-01-01 --date-end 2024-01-31",
21465
- "<%= config.bin %> analytics video performance timeseries --json"
21458
+ "<%= config.bin %> analytics video weekday timeseries --date-expression thisweek",
21459
+ "<%= config.bin %> analytics video weekday timeseries --date-start 2024-01-01 --date-end 2024-01-31",
21460
+ "<%= config.bin %> analytics video weekday timeseries --json"
21466
21461
  ],
21467
21462
  "flags": {
21468
21463
  "json": {
@@ -21548,22 +21543,23 @@
21548
21543
  },
21549
21544
  "hasDynamicHelp": false,
21550
21545
  "hiddenAliases": [],
21551
- "id": "analytics:video:performance:timeseries",
21546
+ "id": "analytics:video:weekday:timeseries",
21552
21547
  "pluginAlias": "twentythree-cli",
21553
21548
  "pluginName": "twentythree-cli",
21554
21549
  "pluginType": "core",
21555
21550
  "strict": true,
21556
21551
  "enableJsonFlag": true,
21557
21552
  "agentMetadata": {
21558
- "api_endpoint": "GET /analytics/data/videos/performance/timeseries",
21553
+ "api_endpoint": "GET /analytics/data/videos/weekday/timeseries",
21559
21554
  "auth_scope": "read",
21560
21555
  "output_shape": {
21561
21556
  "type": "table",
21562
21557
  "columns": [
21563
21558
  "Date",
21559
+ "Day",
21564
21560
  "Plays",
21565
21561
  "Engagement",
21566
- "Playthrough"
21562
+ "Playrate"
21567
21563
  ]
21568
21564
  },
21569
21565
  "side_effects": "none"
@@ -21574,18 +21570,18 @@
21574
21570
  "commands",
21575
21571
  "analytics",
21576
21572
  "video",
21577
- "performance",
21573
+ "weekday",
21578
21574
  "timeseries.cjs"
21579
21575
  ]
21580
21576
  },
21581
- "analytics:video:performance:totals": {
21577
+ "analytics:video:weekday:totals": {
21582
21578
  "aliases": [],
21583
21579
  "args": {},
21584
- "description": "Get aggregated video playthrough performance - totals",
21580
+ "description": "Get aggregated video analytics by weekday - totals",
21585
21581
  "examples": [
21586
- "<%= config.bin %> analytics video performance totals --date-expression thisweek",
21587
- "<%= config.bin %> analytics video performance totals --date-start 2024-01-01 --date-end 2024-01-31",
21588
- "<%= config.bin %> analytics video performance totals --json"
21582
+ "<%= config.bin %> analytics video weekday totals --date-expression thisweek",
21583
+ "<%= config.bin %> analytics video weekday totals --date-start 2024-01-01 --date-end 2024-01-31",
21584
+ "<%= config.bin %> analytics video weekday totals --json"
21589
21585
  ],
21590
21586
  "flags": {
21591
21587
  "json": {
@@ -21671,21 +21667,22 @@
21671
21667
  },
21672
21668
  "hasDynamicHelp": false,
21673
21669
  "hiddenAliases": [],
21674
- "id": "analytics:video:performance:totals",
21670
+ "id": "analytics:video:weekday:totals",
21675
21671
  "pluginAlias": "twentythree-cli",
21676
21672
  "pluginName": "twentythree-cli",
21677
21673
  "pluginType": "core",
21678
21674
  "strict": true,
21679
21675
  "enableJsonFlag": true,
21680
21676
  "agentMetadata": {
21681
- "api_endpoint": "GET /analytics/data/videos/performance/totals",
21677
+ "api_endpoint": "GET /analytics/data/videos/weekday/totals",
21682
21678
  "auth_scope": "read",
21683
21679
  "output_shape": {
21684
21680
  "type": "table",
21685
21681
  "columns": [
21682
+ "Day",
21686
21683
  "Plays",
21687
21684
  "Engagement",
21688
- "Playthrough"
21685
+ "Playrate"
21689
21686
  ]
21690
21687
  },
21691
21688
  "side_effects": "none"
@@ -21696,18 +21693,18 @@
21696
21693
  "commands",
21697
21694
  "analytics",
21698
21695
  "video",
21699
- "performance",
21696
+ "weekday",
21700
21697
  "totals.cjs"
21701
21698
  ]
21702
21699
  },
21703
- "analytics:video:published:timeseries": {
21700
+ "analytics:usage:devices:timeseries": {
21704
21701
  "aliases": [],
21705
21702
  "args": {},
21706
- "description": "Get video analytics by publish date - time series",
21703
+ "description": "Get usage analytics by device type - time series",
21707
21704
  "examples": [
21708
- "<%= config.bin %> analytics video published timeseries --date-expression thisweek",
21709
- "<%= config.bin %> analytics video published timeseries --date-start 2024-01-01 --date-end 2024-01-31",
21710
- "<%= config.bin %> analytics video published timeseries --json"
21705
+ "<%= config.bin %> analytics usage devices timeseries --date-expression thisweek",
21706
+ "<%= config.bin %> analytics usage devices timeseries --date-start 2024-01-01 --date-end 2024-01-31",
21707
+ "<%= config.bin %> analytics usage devices timeseries --json"
21711
21708
  ],
21712
21709
  "flags": {
21713
21710
  "json": {
@@ -21793,20 +21790,20 @@
21793
21790
  },
21794
21791
  "hasDynamicHelp": false,
21795
21792
  "hiddenAliases": [],
21796
- "id": "analytics:video:published:timeseries",
21793
+ "id": "analytics:usage:devices:timeseries",
21797
21794
  "pluginAlias": "twentythree-cli",
21798
21795
  "pluginName": "twentythree-cli",
21799
21796
  "pluginType": "core",
21800
21797
  "strict": true,
21801
21798
  "enableJsonFlag": true,
21802
21799
  "agentMetadata": {
21803
- "api_endpoint": "GET /analytics/data/videos/published/timeseries",
21800
+ "api_endpoint": "GET /analytics/data/usage/devices/timeseries",
21804
21801
  "auth_scope": "read",
21805
21802
  "output_shape": {
21806
21803
  "type": "table",
21807
21804
  "columns": [
21808
21805
  "Date",
21809
- "Published",
21806
+ "Device",
21810
21807
  "Plays",
21811
21808
  "Engagement"
21812
21809
  ]
@@ -21818,19 +21815,19 @@
21818
21815
  "dist",
21819
21816
  "commands",
21820
21817
  "analytics",
21821
- "video",
21822
- "published",
21818
+ "usage",
21819
+ "devices",
21823
21820
  "timeseries.cjs"
21824
21821
  ]
21825
21822
  },
21826
- "analytics:video:published:totals": {
21823
+ "analytics:usage:devices:totals": {
21827
21824
  "aliases": [],
21828
21825
  "args": {},
21829
- "description": "Get aggregated video analytics by publish date - totals",
21826
+ "description": "Get aggregated usage analytics by device type - totals",
21830
21827
  "examples": [
21831
- "<%= config.bin %> analytics video published totals --date-expression thisweek",
21832
- "<%= config.bin %> analytics video published totals --date-start 2024-01-01 --date-end 2024-01-31",
21833
- "<%= config.bin %> analytics video published totals --json"
21828
+ "<%= config.bin %> analytics usage devices totals --date-expression thismonth",
21829
+ "<%= config.bin %> analytics usage devices totals --date-start 2024-01-01 --date-end 2024-01-31",
21830
+ "<%= config.bin %> analytics usage devices totals --json"
21834
21831
  ],
21835
21832
  "flags": {
21836
21833
  "json": {
@@ -21916,21 +21913,23 @@
21916
21913
  },
21917
21914
  "hasDynamicHelp": false,
21918
21915
  "hiddenAliases": [],
21919
- "id": "analytics:video:published:totals",
21916
+ "id": "analytics:usage:devices:totals",
21920
21917
  "pluginAlias": "twentythree-cli",
21921
21918
  "pluginName": "twentythree-cli",
21922
21919
  "pluginType": "core",
21923
21920
  "strict": true,
21924
21921
  "enableJsonFlag": true,
21925
21922
  "agentMetadata": {
21926
- "api_endpoint": "GET /analytics/data/videos/published/totals",
21923
+ "api_endpoint": "GET /analytics/data/usage/devices/totals",
21927
21924
  "auth_scope": "read",
21928
21925
  "output_shape": {
21929
21926
  "type": "table",
21930
21927
  "columns": [
21931
- "Published",
21928
+ "Device",
21932
21929
  "Plays",
21933
- "Engagement"
21930
+ "Engagement",
21931
+ "Traffic",
21932
+ "Impressions"
21934
21933
  ]
21935
21934
  },
21936
21935
  "side_effects": "none"
@@ -21940,19 +21939,19 @@
21940
21939
  "dist",
21941
21940
  "commands",
21942
21941
  "analytics",
21943
- "video",
21944
- "published",
21942
+ "usage",
21943
+ "devices",
21945
21944
  "totals.cjs"
21946
21945
  ]
21947
21946
  },
21948
- "analytics:video:weekday:timeseries": {
21947
+ "analytics:live:weekday:timeseries": {
21949
21948
  "aliases": [],
21950
21949
  "args": {},
21951
- "description": "Get video analytics by weekday - time series",
21950
+ "description": "Get live/webinar analytics by weekday - time series",
21952
21951
  "examples": [
21953
- "<%= config.bin %> analytics video weekday timeseries --date-expression thisweek",
21954
- "<%= config.bin %> analytics video weekday timeseries --date-start 2024-01-01 --date-end 2024-01-31",
21955
- "<%= config.bin %> analytics video weekday timeseries --json"
21952
+ "<%= config.bin %> analytics live weekday timeseries --date-expression thisweek",
21953
+ "<%= config.bin %> analytics live weekday timeseries --date-start 2024-01-01 --date-end 2024-01-31",
21954
+ "<%= config.bin %> analytics live weekday timeseries --json"
21956
21955
  ],
21957
21956
  "flags": {
21958
21957
  "json": {
@@ -22038,14 +22037,14 @@
22038
22037
  },
22039
22038
  "hasDynamicHelp": false,
22040
22039
  "hiddenAliases": [],
22041
- "id": "analytics:video:weekday:timeseries",
22040
+ "id": "analytics:live:weekday:timeseries",
22042
22041
  "pluginAlias": "twentythree-cli",
22043
22042
  "pluginName": "twentythree-cli",
22044
22043
  "pluginType": "core",
22045
22044
  "strict": true,
22046
22045
  "enableJsonFlag": true,
22047
22046
  "agentMetadata": {
22048
- "api_endpoint": "GET /analytics/data/videos/weekday/timeseries",
22047
+ "api_endpoint": "GET /analytics/data/live/weekday/timeseries",
22049
22048
  "auth_scope": "read",
22050
22049
  "output_shape": {
22051
22050
  "type": "table",
@@ -22053,8 +22052,8 @@
22053
22052
  "Date",
22054
22053
  "Day",
22055
22054
  "Plays",
22056
- "Engagement",
22057
- "Playrate"
22055
+ "Peak Viewers",
22056
+ "Engagement"
22058
22057
  ]
22059
22058
  },
22060
22059
  "side_effects": "none"
@@ -22064,19 +22063,19 @@
22064
22063
  "dist",
22065
22064
  "commands",
22066
22065
  "analytics",
22067
- "video",
22066
+ "live",
22068
22067
  "weekday",
22069
22068
  "timeseries.cjs"
22070
22069
  ]
22071
22070
  },
22072
- "analytics:video:weekday:totals": {
22071
+ "analytics:live:weekday:totals": {
22073
22072
  "aliases": [],
22074
22073
  "args": {},
22075
- "description": "Get aggregated video analytics by weekday - totals",
22074
+ "description": "Get aggregated live/webinar analytics by weekday - totals",
22076
22075
  "examples": [
22077
- "<%= config.bin %> analytics video weekday totals --date-expression thisweek",
22078
- "<%= config.bin %> analytics video weekday totals --date-start 2024-01-01 --date-end 2024-01-31",
22079
- "<%= config.bin %> analytics video weekday totals --json"
22076
+ "<%= config.bin %> analytics live weekday totals --date-expression thismonth",
22077
+ "<%= config.bin %> analytics live weekday totals --date-start 2024-01-01 --date-end 2024-01-31",
22078
+ "<%= config.bin %> analytics live weekday totals --json"
22080
22079
  ],
22081
22080
  "flags": {
22082
22081
  "json": {
@@ -22162,20 +22161,21 @@
22162
22161
  },
22163
22162
  "hasDynamicHelp": false,
22164
22163
  "hiddenAliases": [],
22165
- "id": "analytics:video:weekday:totals",
22164
+ "id": "analytics:live:weekday:totals",
22166
22165
  "pluginAlias": "twentythree-cli",
22167
22166
  "pluginName": "twentythree-cli",
22168
22167
  "pluginType": "core",
22169
22168
  "strict": true,
22170
22169
  "enableJsonFlag": true,
22171
22170
  "agentMetadata": {
22172
- "api_endpoint": "GET /analytics/data/videos/weekday/totals",
22171
+ "api_endpoint": "GET /analytics/data/live/weekday/totals",
22173
22172
  "auth_scope": "read",
22174
22173
  "output_shape": {
22175
22174
  "type": "table",
22176
22175
  "columns": [
22177
22176
  "Day",
22178
22177
  "Plays",
22178
+ "Peak Viewers",
22179
22179
  "Engagement",
22180
22180
  "Playrate"
22181
22181
  ]
@@ -22187,11 +22187,11 @@
22187
22187
  "dist",
22188
22188
  "commands",
22189
22189
  "analytics",
22190
- "video",
22190
+ "live",
22191
22191
  "weekday",
22192
22192
  "totals.cjs"
22193
22193
  ]
22194
22194
  }
22195
22195
  },
22196
- "version": "1.3.0"
22196
+ "version": "1.3.1"
22197
22197
  }