@nxtedition/types 23.0.63 → 23.0.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common/settings.d.ts +4 -0
- package/dist/nxtpression.d.ts +22 -10
- package/dist/records/domains/media.d.ts +6 -0
- package/dist/records/domains/publish/facebook.d.ts +1 -2
- package/dist/records/exact/monitor.d.ts +9 -8
- package/dist/records/validate/assert-guard.js +277 -251
- package/dist/records/validate/assert.js +278 -251
- package/dist/records/validate/is.js +17 -16
- package/dist/records/validate/schemas.d.ts +6 -9
- package/dist/records/validate/schemas.js +912 -578
- package/dist/records/validate/stringify.js +30 -29
- package/dist/records/validate/utils.js +1 -1
- package/dist/records/validate/validate-equals.js +358 -324
- package/dist/records/validate/validate.js +278 -242
- package/package.json +2 -2
|
@@ -7,7 +7,7 @@ export function getSchemaByRecordName(name) {
|
|
|
7
7
|
version: "3.1",
|
|
8
8
|
components: {
|
|
9
9
|
schemas: {
|
|
10
|
-
DomainRows: {
|
|
10
|
+
"DomainRows.o1": {
|
|
11
11
|
type: "object",
|
|
12
12
|
properties: {
|
|
13
13
|
rows: {
|
|
@@ -24,22 +24,27 @@ export function getSchemaByRecordName(name) {
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
schema: {
|
|
27
|
-
|
|
27
|
+
type: "array",
|
|
28
|
+
prefixItems: [
|
|
29
|
+
{
|
|
30
|
+
$ref: "#/components/schemas/DomainRows.o1"
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
additionalItems: false
|
|
28
34
|
}
|
|
29
35
|
};
|
|
30
36
|
}
|
|
31
37
|
else if (parsed.type === "domain") {
|
|
32
|
-
return
|
|
38
|
+
return _schemasDomainRecord(parsed.domain);
|
|
33
39
|
}
|
|
34
40
|
else {
|
|
35
|
-
return
|
|
41
|
+
return _schemasExactRecord(parsed.exact);
|
|
36
42
|
}
|
|
37
43
|
}
|
|
38
44
|
export function getSchemaByDomain(domain) {
|
|
39
|
-
return
|
|
45
|
+
return _schemasDomainRecord(domain);
|
|
40
46
|
}
|
|
41
|
-
|
|
42
|
-
function _schemaExactRecord(name) {
|
|
47
|
+
function _schemasExactRecord(name) {
|
|
43
48
|
{
|
|
44
49
|
switch (name) {
|
|
45
50
|
case "asset.assignees": {
|
|
@@ -109,9 +114,11 @@ function _schemaExactRecord(name) {
|
|
|
109
114
|
}
|
|
110
115
|
}
|
|
111
116
|
},
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
117
|
+
schemas: [
|
|
118
|
+
{
|
|
119
|
+
$ref: "#/components/schemas/AssetAssigneesRecord"
|
|
120
|
+
}
|
|
121
|
+
]
|
|
115
122
|
};
|
|
116
123
|
}
|
|
117
124
|
case "asset.clone": {
|
|
@@ -166,9 +173,11 @@ function _schemaExactRecord(name) {
|
|
|
166
173
|
}
|
|
167
174
|
}
|
|
168
175
|
},
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
176
|
+
schemas: [
|
|
177
|
+
{
|
|
178
|
+
$ref: "#/components/schemas/AssetCloneRecord"
|
|
179
|
+
}
|
|
180
|
+
]
|
|
172
181
|
};
|
|
173
182
|
}
|
|
174
183
|
case "asset.deadlines": {
|
|
@@ -229,9 +238,11 @@ function _schemaExactRecord(name) {
|
|
|
229
238
|
}
|
|
230
239
|
}
|
|
231
240
|
},
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
241
|
+
schemas: [
|
|
242
|
+
{
|
|
243
|
+
$ref: "#/components/schemas/AssetDeadlinesRecord"
|
|
244
|
+
}
|
|
245
|
+
]
|
|
235
246
|
};
|
|
236
247
|
}
|
|
237
248
|
case "asset.duration": {
|
|
@@ -295,9 +306,11 @@ function _schemaExactRecord(name) {
|
|
|
295
306
|
}
|
|
296
307
|
}
|
|
297
308
|
},
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
309
|
+
schemas: [
|
|
310
|
+
{
|
|
311
|
+
$ref: "#/components/schemas/AssetDurationRecord"
|
|
312
|
+
}
|
|
313
|
+
]
|
|
301
314
|
};
|
|
302
315
|
}
|
|
303
316
|
case "asset.dynamicProperties?": {
|
|
@@ -503,9 +516,11 @@ function _schemaExactRecord(name) {
|
|
|
503
516
|
}
|
|
504
517
|
}
|
|
505
518
|
},
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
519
|
+
schemas: [
|
|
520
|
+
{
|
|
521
|
+
$ref: "#/components/schemas/AssetDynamicPropertiesProvidedRecord"
|
|
522
|
+
}
|
|
523
|
+
]
|
|
509
524
|
};
|
|
510
525
|
}
|
|
511
526
|
case "asset.embedding": {
|
|
@@ -566,9 +581,11 @@ function _schemaExactRecord(name) {
|
|
|
566
581
|
}
|
|
567
582
|
}
|
|
568
583
|
},
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
584
|
+
schemas: [
|
|
585
|
+
{
|
|
586
|
+
$ref: "#/components/schemas/AssetEmbeddingRecord"
|
|
587
|
+
}
|
|
588
|
+
]
|
|
572
589
|
};
|
|
573
590
|
}
|
|
574
591
|
case "asset.icon": {
|
|
@@ -629,9 +646,11 @@ function _schemaExactRecord(name) {
|
|
|
629
646
|
}
|
|
630
647
|
}
|
|
631
648
|
},
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
649
|
+
schemas: [
|
|
650
|
+
{
|
|
651
|
+
$ref: "#/components/schemas/AssetIconRecord"
|
|
652
|
+
}
|
|
653
|
+
]
|
|
635
654
|
};
|
|
636
655
|
}
|
|
637
656
|
case "asset.locations": {
|
|
@@ -725,9 +744,11 @@ function _schemaExactRecord(name) {
|
|
|
725
744
|
}
|
|
726
745
|
}
|
|
727
746
|
},
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
747
|
+
schemas: [
|
|
748
|
+
{
|
|
749
|
+
$ref: "#/components/schemas/AssetLocationsRecord"
|
|
750
|
+
}
|
|
751
|
+
]
|
|
731
752
|
};
|
|
732
753
|
}
|
|
733
754
|
case "asset.media": {
|
|
@@ -798,9 +819,11 @@ function _schemaExactRecord(name) {
|
|
|
798
819
|
}
|
|
799
820
|
}
|
|
800
821
|
},
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
822
|
+
schemas: [
|
|
823
|
+
{
|
|
824
|
+
$ref: "#/components/schemas/AssetMediaRecord"
|
|
825
|
+
}
|
|
826
|
+
]
|
|
804
827
|
};
|
|
805
828
|
}
|
|
806
829
|
case "asset.tags": {
|
|
@@ -870,9 +893,11 @@ function _schemaExactRecord(name) {
|
|
|
870
893
|
}
|
|
871
894
|
}
|
|
872
895
|
},
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
896
|
+
schemas: [
|
|
897
|
+
{
|
|
898
|
+
$ref: "#/components/schemas/AssetTagsRecord"
|
|
899
|
+
}
|
|
900
|
+
]
|
|
876
901
|
};
|
|
877
902
|
}
|
|
878
903
|
case "asset.title": {
|
|
@@ -933,9 +958,11 @@ function _schemaExactRecord(name) {
|
|
|
933
958
|
}
|
|
934
959
|
}
|
|
935
960
|
},
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
961
|
+
schemas: [
|
|
962
|
+
{
|
|
963
|
+
$ref: "#/components/schemas/AssetTitleRecord"
|
|
964
|
+
}
|
|
965
|
+
]
|
|
939
966
|
};
|
|
940
967
|
}
|
|
941
968
|
case "asset.types": {
|
|
@@ -977,9 +1004,11 @@ function _schemaExactRecord(name) {
|
|
|
977
1004
|
}
|
|
978
1005
|
}
|
|
979
1006
|
},
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
1007
|
+
schemas: [
|
|
1008
|
+
{
|
|
1009
|
+
$ref: "#/components/schemas/AssetTypesRecord"
|
|
1010
|
+
}
|
|
1011
|
+
]
|
|
983
1012
|
};
|
|
984
1013
|
}
|
|
985
1014
|
case "storage.locations?": {
|
|
@@ -1119,9 +1148,11 @@ function _schemaExactRecord(name) {
|
|
|
1119
1148
|
}
|
|
1120
1149
|
}
|
|
1121
1150
|
},
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1151
|
+
schemas: [
|
|
1152
|
+
{
|
|
1153
|
+
$ref: "#/components/schemas/StorageLocationsRecord"
|
|
1154
|
+
}
|
|
1155
|
+
]
|
|
1125
1156
|
};
|
|
1126
1157
|
}
|
|
1127
1158
|
case "storage.zones?": {
|
|
@@ -1154,9 +1185,11 @@ function _schemaExactRecord(name) {
|
|
|
1154
1185
|
}
|
|
1155
1186
|
}
|
|
1156
1187
|
},
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1188
|
+
schemas: [
|
|
1189
|
+
{
|
|
1190
|
+
$ref: "#/components/schemas/StorageZonesRecord"
|
|
1191
|
+
}
|
|
1192
|
+
]
|
|
1160
1193
|
};
|
|
1161
1194
|
}
|
|
1162
1195
|
case "nxt.status?": {
|
|
@@ -1230,19 +1263,7 @@ function _schemaExactRecord(name) {
|
|
|
1230
1263
|
messages: {
|
|
1231
1264
|
type: "array",
|
|
1232
1265
|
items: {
|
|
1233
|
-
|
|
1234
|
-
properties: {
|
|
1235
|
-
msg: {
|
|
1236
|
-
type: "string"
|
|
1237
|
-
},
|
|
1238
|
-
level: {
|
|
1239
|
-
type: "number"
|
|
1240
|
-
}
|
|
1241
|
-
},
|
|
1242
|
-
required: [
|
|
1243
|
-
"msg",
|
|
1244
|
-
"level"
|
|
1245
|
-
]
|
|
1266
|
+
$ref: "#/components/schemas/NxtStatusMessage"
|
|
1246
1267
|
}
|
|
1247
1268
|
}
|
|
1248
1269
|
},
|
|
@@ -1252,6 +1273,28 @@ function _schemaExactRecord(name) {
|
|
|
1252
1273
|
"messages"
|
|
1253
1274
|
]
|
|
1254
1275
|
},
|
|
1276
|
+
NxtStatusMessage: {
|
|
1277
|
+
type: "object",
|
|
1278
|
+
properties: {
|
|
1279
|
+
id: {
|
|
1280
|
+
type: "string"
|
|
1281
|
+
},
|
|
1282
|
+
msg: {
|
|
1283
|
+
type: "string"
|
|
1284
|
+
},
|
|
1285
|
+
level: {
|
|
1286
|
+
type: "number"
|
|
1287
|
+
},
|
|
1288
|
+
ignored: {
|
|
1289
|
+
type: "boolean"
|
|
1290
|
+
}
|
|
1291
|
+
},
|
|
1292
|
+
required: [
|
|
1293
|
+
"id",
|
|
1294
|
+
"msg",
|
|
1295
|
+
"level"
|
|
1296
|
+
]
|
|
1297
|
+
},
|
|
1255
1298
|
NxtStatusService: {
|
|
1256
1299
|
type: "object",
|
|
1257
1300
|
properties: {
|
|
@@ -1267,6 +1310,9 @@ function _schemaExactRecord(name) {
|
|
|
1267
1310
|
total: {
|
|
1268
1311
|
type: "number"
|
|
1269
1312
|
},
|
|
1313
|
+
ignored: {
|
|
1314
|
+
type: "boolean"
|
|
1315
|
+
},
|
|
1270
1316
|
tasks: {
|
|
1271
1317
|
type: "array",
|
|
1272
1318
|
items: {
|
|
@@ -1290,19 +1336,7 @@ function _schemaExactRecord(name) {
|
|
|
1290
1336
|
messages: {
|
|
1291
1337
|
type: "array",
|
|
1292
1338
|
items: {
|
|
1293
|
-
|
|
1294
|
-
properties: {
|
|
1295
|
-
msg: {
|
|
1296
|
-
type: "string"
|
|
1297
|
-
},
|
|
1298
|
-
level: {
|
|
1299
|
-
type: "number"
|
|
1300
|
-
}
|
|
1301
|
-
},
|
|
1302
|
-
required: [
|
|
1303
|
-
"msg",
|
|
1304
|
-
"level"
|
|
1305
|
-
]
|
|
1339
|
+
$ref: "#/components/schemas/NxtStatusMessage"
|
|
1306
1340
|
}
|
|
1307
1341
|
}
|
|
1308
1342
|
},
|
|
@@ -1323,19 +1357,7 @@ function _schemaExactRecord(name) {
|
|
|
1323
1357
|
messages: {
|
|
1324
1358
|
type: "array",
|
|
1325
1359
|
items: {
|
|
1326
|
-
|
|
1327
|
-
properties: {
|
|
1328
|
-
msg: {
|
|
1329
|
-
type: "string"
|
|
1330
|
-
},
|
|
1331
|
-
level: {
|
|
1332
|
-
type: "number"
|
|
1333
|
-
}
|
|
1334
|
-
},
|
|
1335
|
-
required: [
|
|
1336
|
-
"msg",
|
|
1337
|
-
"level"
|
|
1338
|
-
]
|
|
1360
|
+
$ref: "#/components/schemas/NxtStatusMessage"
|
|
1339
1361
|
}
|
|
1340
1362
|
}
|
|
1341
1363
|
},
|
|
@@ -1347,9 +1369,11 @@ function _schemaExactRecord(name) {
|
|
|
1347
1369
|
}
|
|
1348
1370
|
}
|
|
1349
1371
|
},
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1372
|
+
schemas: [
|
|
1373
|
+
{
|
|
1374
|
+
$ref: "#/components/schemas/NxtStatusRecord"
|
|
1375
|
+
}
|
|
1376
|
+
]
|
|
1353
1377
|
};
|
|
1354
1378
|
}
|
|
1355
1379
|
case "media.subtitles": {
|
|
@@ -1417,9 +1441,11 @@ function _schemaExactRecord(name) {
|
|
|
1417
1441
|
}
|
|
1418
1442
|
}
|
|
1419
1443
|
},
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1444
|
+
schemas: [
|
|
1445
|
+
{
|
|
1446
|
+
$ref: "#/components/schemas/MediaSubtitlesRecord"
|
|
1447
|
+
}
|
|
1448
|
+
]
|
|
1423
1449
|
};
|
|
1424
1450
|
}
|
|
1425
1451
|
case "media.subtitles?": {
|
|
@@ -1487,9 +1513,11 @@ function _schemaExactRecord(name) {
|
|
|
1487
1513
|
}
|
|
1488
1514
|
}
|
|
1489
1515
|
},
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1516
|
+
schemas: [
|
|
1517
|
+
{
|
|
1518
|
+
$ref: "#/components/schemas/MediaSubtitlesProvidedRecord"
|
|
1519
|
+
}
|
|
1520
|
+
]
|
|
1493
1521
|
};
|
|
1494
1522
|
}
|
|
1495
1523
|
case "media.transcribe": {
|
|
@@ -1703,9 +1731,11 @@ function _schemaExactRecord(name) {
|
|
|
1703
1731
|
}
|
|
1704
1732
|
}
|
|
1705
1733
|
},
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1734
|
+
schemas: [
|
|
1735
|
+
{
|
|
1736
|
+
$ref: "#/components/schemas/MediaTranscribeRecord"
|
|
1737
|
+
}
|
|
1738
|
+
]
|
|
1709
1739
|
};
|
|
1710
1740
|
}
|
|
1711
1741
|
case "media.transcribe?": {
|
|
@@ -1919,9 +1949,11 @@ function _schemaExactRecord(name) {
|
|
|
1919
1949
|
}
|
|
1920
1950
|
}
|
|
1921
1951
|
},
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1952
|
+
schemas: [
|
|
1953
|
+
{
|
|
1954
|
+
$ref: "#/components/schemas/MediaTranscribeProvidedRecord"
|
|
1955
|
+
}
|
|
1956
|
+
]
|
|
1925
1957
|
};
|
|
1926
1958
|
}
|
|
1927
1959
|
case "media.fonts?": {
|
|
@@ -2006,9 +2038,11 @@ function _schemaExactRecord(name) {
|
|
|
2006
2038
|
}
|
|
2007
2039
|
}
|
|
2008
2040
|
},
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2041
|
+
schemas: [
|
|
2042
|
+
{
|
|
2043
|
+
$ref: "#/components/schemas/MediaFonts"
|
|
2044
|
+
}
|
|
2045
|
+
]
|
|
2012
2046
|
};
|
|
2013
2047
|
}
|
|
2014
2048
|
case "media.consolidate": {
|
|
@@ -2200,9 +2234,11 @@ function _schemaExactRecord(name) {
|
|
|
2200
2234
|
}
|
|
2201
2235
|
}
|
|
2202
2236
|
},
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2237
|
+
schemas: [
|
|
2238
|
+
{
|
|
2239
|
+
$ref: "#/components/schemas/MediaConsolidateRecord"
|
|
2240
|
+
}
|
|
2241
|
+
]
|
|
2206
2242
|
};
|
|
2207
2243
|
}
|
|
2208
2244
|
case "asset-daemon": {
|
|
@@ -2221,9 +2257,11 @@ function _schemaExactRecord(name) {
|
|
|
2221
2257
|
}
|
|
2222
2258
|
}
|
|
2223
2259
|
},
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2260
|
+
schemas: [
|
|
2261
|
+
{
|
|
2262
|
+
$ref: "#/components/schemas/AssetDaemonRecord"
|
|
2263
|
+
}
|
|
2264
|
+
]
|
|
2227
2265
|
};
|
|
2228
2266
|
}
|
|
2229
2267
|
case "asset-daemon:user-notify.state": {
|
|
@@ -2255,9 +2293,11 @@ function _schemaExactRecord(name) {
|
|
|
2255
2293
|
}
|
|
2256
2294
|
}
|
|
2257
2295
|
},
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2296
|
+
schemas: [
|
|
2297
|
+
{
|
|
2298
|
+
$ref: "#/components/schemas/AssetDaemonUserNotifyStateRecord"
|
|
2299
|
+
}
|
|
2300
|
+
]
|
|
2261
2301
|
};
|
|
2262
2302
|
}
|
|
2263
2303
|
case "deepstream-replicator.stats?": {
|
|
@@ -2335,17 +2375,18 @@ function _schemaExactRecord(name) {
|
|
|
2335
2375
|
}
|
|
2336
2376
|
}
|
|
2337
2377
|
},
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2378
|
+
schemas: [
|
|
2379
|
+
{
|
|
2380
|
+
$ref: "#/components/schemas/DeepstreamReplicatorStatsRecord"
|
|
2381
|
+
}
|
|
2382
|
+
]
|
|
2341
2383
|
};
|
|
2342
2384
|
}
|
|
2343
2385
|
default: throw new Error("Unrecognized name \"" + name + "\"");
|
|
2344
2386
|
}
|
|
2345
2387
|
}
|
|
2346
2388
|
}
|
|
2347
|
-
|
|
2348
|
-
function _schemaDomainRecord(domain) {
|
|
2389
|
+
function _schemasDomainRecord(domain) {
|
|
2349
2390
|
{
|
|
2350
2391
|
switch (domain) {
|
|
2351
2392
|
case ":asset.title?": {
|
|
@@ -2371,9 +2412,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2371
2412
|
}
|
|
2372
2413
|
}
|
|
2373
2414
|
},
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2415
|
+
schemas: [
|
|
2416
|
+
{
|
|
2417
|
+
$ref: "#/components/schemas/AssetTitleProvidedRecord"
|
|
2418
|
+
}
|
|
2419
|
+
]
|
|
2377
2420
|
};
|
|
2378
2421
|
}
|
|
2379
2422
|
case ":asset.rawTypes?": {
|
|
@@ -2395,9 +2438,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2395
2438
|
}
|
|
2396
2439
|
}
|
|
2397
2440
|
},
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2441
|
+
schemas: [
|
|
2442
|
+
{
|
|
2443
|
+
$ref: "#/components/schemas/AssetRawTypesProvidedRecord"
|
|
2444
|
+
}
|
|
2445
|
+
]
|
|
2401
2446
|
};
|
|
2402
2447
|
}
|
|
2403
2448
|
case ":asset.types?": {
|
|
@@ -2419,9 +2464,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2419
2464
|
}
|
|
2420
2465
|
}
|
|
2421
2466
|
},
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2467
|
+
schemas: [
|
|
2468
|
+
{
|
|
2469
|
+
$ref: "#/components/schemas/AssetTypesProvidedRecord"
|
|
2470
|
+
}
|
|
2471
|
+
]
|
|
2425
2472
|
};
|
|
2426
2473
|
}
|
|
2427
2474
|
case ":asset.assignees?": {
|
|
@@ -2443,9 +2490,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2443
2490
|
}
|
|
2444
2491
|
}
|
|
2445
2492
|
},
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2493
|
+
schemas: [
|
|
2494
|
+
{
|
|
2495
|
+
$ref: "#/components/schemas/AssetAssigneesProvidedRecord"
|
|
2496
|
+
}
|
|
2497
|
+
]
|
|
2449
2498
|
};
|
|
2450
2499
|
}
|
|
2451
2500
|
case ":asset.refs?": {
|
|
@@ -2486,9 +2535,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2486
2535
|
}
|
|
2487
2536
|
}
|
|
2488
2537
|
},
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2538
|
+
schemas: [
|
|
2539
|
+
{
|
|
2540
|
+
$ref: "#/components/schemas/AssetRefsProvidedRecord"
|
|
2541
|
+
}
|
|
2542
|
+
]
|
|
2492
2543
|
};
|
|
2493
2544
|
}
|
|
2494
2545
|
case ":asset.tags?": {
|
|
@@ -2510,9 +2561,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2510
2561
|
}
|
|
2511
2562
|
}
|
|
2512
2563
|
},
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2564
|
+
schemas: [
|
|
2565
|
+
{
|
|
2566
|
+
$ref: "#/components/schemas/AssetTagsProvidedRecord"
|
|
2567
|
+
}
|
|
2568
|
+
]
|
|
2516
2569
|
};
|
|
2517
2570
|
}
|
|
2518
2571
|
case ":asset.fileRefs?": {
|
|
@@ -2534,9 +2587,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2534
2587
|
}
|
|
2535
2588
|
}
|
|
2536
2589
|
},
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2590
|
+
schemas: [
|
|
2591
|
+
{
|
|
2592
|
+
$ref: "#/components/schemas/AssetFileRefsProvidedRecord"
|
|
2593
|
+
}
|
|
2594
|
+
]
|
|
2540
2595
|
};
|
|
2541
2596
|
}
|
|
2542
2597
|
case ":asset.created?": {
|
|
@@ -2561,9 +2616,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2561
2616
|
}
|
|
2562
2617
|
}
|
|
2563
2618
|
},
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2619
|
+
schemas: [
|
|
2620
|
+
{
|
|
2621
|
+
$ref: "#/components/schemas/AssetCreatedProvidedRecord"
|
|
2622
|
+
}
|
|
2623
|
+
]
|
|
2567
2624
|
};
|
|
2568
2625
|
}
|
|
2569
2626
|
case ":asset.modified?": {
|
|
@@ -2591,9 +2648,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2591
2648
|
}
|
|
2592
2649
|
}
|
|
2593
2650
|
},
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2651
|
+
schemas: [
|
|
2652
|
+
{
|
|
2653
|
+
$ref: "#/components/schemas/AssetModifiedProvidedRecord"
|
|
2654
|
+
}
|
|
2655
|
+
]
|
|
2597
2656
|
};
|
|
2598
2657
|
}
|
|
2599
2658
|
case ":asset.status?": {
|
|
@@ -2654,9 +2713,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2654
2713
|
}
|
|
2655
2714
|
}
|
|
2656
2715
|
},
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2716
|
+
schemas: [
|
|
2717
|
+
{
|
|
2718
|
+
$ref: "#/components/schemas/AssetDomainStatusProvidedRecord"
|
|
2719
|
+
}
|
|
2720
|
+
]
|
|
2660
2721
|
};
|
|
2661
2722
|
}
|
|
2662
2723
|
case ":asset.icon?": {
|
|
@@ -2682,9 +2743,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2682
2743
|
}
|
|
2683
2744
|
}
|
|
2684
2745
|
},
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2746
|
+
schemas: [
|
|
2747
|
+
{
|
|
2748
|
+
$ref: "#/components/schemas/AssetDomainIconProvidedRecord"
|
|
2749
|
+
}
|
|
2750
|
+
]
|
|
2688
2751
|
};
|
|
2689
2752
|
}
|
|
2690
2753
|
case ":asset.deadlines?": {
|
|
@@ -2706,9 +2769,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2706
2769
|
}
|
|
2707
2770
|
}
|
|
2708
2771
|
},
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2772
|
+
schemas: [
|
|
2773
|
+
{
|
|
2774
|
+
$ref: "#/components/schemas/AssetDomainDeadlinesProvidedRecord"
|
|
2775
|
+
}
|
|
2776
|
+
]
|
|
2712
2777
|
};
|
|
2713
2778
|
}
|
|
2714
2779
|
case ":asset.publish?": {
|
|
@@ -2730,9 +2795,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2730
2795
|
}
|
|
2731
2796
|
}
|
|
2732
2797
|
},
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2798
|
+
schemas: [
|
|
2799
|
+
{
|
|
2800
|
+
$ref: "#/components/schemas/AssetDomainPublishProvidedRecord"
|
|
2801
|
+
}
|
|
2802
|
+
]
|
|
2736
2803
|
};
|
|
2737
2804
|
}
|
|
2738
2805
|
case ":asset.published?": {
|
|
@@ -2750,9 +2817,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2750
2817
|
}
|
|
2751
2818
|
}
|
|
2752
2819
|
},
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2820
|
+
schemas: [
|
|
2821
|
+
{
|
|
2822
|
+
$ref: "#/components/schemas/AssetDomainPublishedProvidedRecord"
|
|
2823
|
+
}
|
|
2824
|
+
]
|
|
2756
2825
|
};
|
|
2757
2826
|
}
|
|
2758
2827
|
case ":asset.duration?": {
|
|
@@ -2778,9 +2847,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2778
2847
|
}
|
|
2779
2848
|
}
|
|
2780
2849
|
},
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2850
|
+
schemas: [
|
|
2851
|
+
{
|
|
2852
|
+
$ref: "#/components/schemas/AssetDomainDurationProvidedRecord"
|
|
2853
|
+
}
|
|
2854
|
+
]
|
|
2784
2855
|
};
|
|
2785
2856
|
}
|
|
2786
2857
|
case ":asset.locations?": {
|
|
@@ -2814,9 +2885,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2814
2885
|
}
|
|
2815
2886
|
}
|
|
2816
2887
|
},
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2888
|
+
schemas: [
|
|
2889
|
+
{
|
|
2890
|
+
$ref: "#/components/schemas/AssetDomainLocationsProvidedRecord"
|
|
2891
|
+
}
|
|
2892
|
+
]
|
|
2820
2893
|
};
|
|
2821
2894
|
}
|
|
2822
2895
|
case ":asset.controllers?": {
|
|
@@ -2838,9 +2911,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2838
2911
|
}
|
|
2839
2912
|
}
|
|
2840
2913
|
},
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2914
|
+
schemas: [
|
|
2915
|
+
{
|
|
2916
|
+
$ref: "#/components/schemas/AssetDomainControllersProvidedRecord"
|
|
2917
|
+
}
|
|
2918
|
+
]
|
|
2844
2919
|
};
|
|
2845
2920
|
}
|
|
2846
2921
|
case ":asset.embedding?": {
|
|
@@ -2862,9 +2937,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2862
2937
|
}
|
|
2863
2938
|
}
|
|
2864
2939
|
},
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
2940
|
+
schemas: [
|
|
2941
|
+
{
|
|
2942
|
+
$ref: "#/components/schemas/AssetDomainEmbeddingProvidedRecord"
|
|
2943
|
+
}
|
|
2944
|
+
]
|
|
2868
2945
|
};
|
|
2869
2946
|
}
|
|
2870
2947
|
case ":asset.media?": {
|
|
@@ -2880,9 +2957,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2880
2957
|
}
|
|
2881
2958
|
}
|
|
2882
2959
|
},
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
|
|
2960
|
+
schemas: [
|
|
2961
|
+
{
|
|
2962
|
+
$ref: "#/components/schemas/AssetDomainMediaProvidedRecord"
|
|
2963
|
+
}
|
|
2964
|
+
]
|
|
2886
2965
|
};
|
|
2887
2966
|
}
|
|
2888
2967
|
case ":asset.presence?": {
|
|
@@ -2904,9 +2983,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2904
2983
|
}
|
|
2905
2984
|
}
|
|
2906
2985
|
},
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2986
|
+
schemas: [
|
|
2987
|
+
{
|
|
2988
|
+
$ref: "#/components/schemas/AssetDomainPresenceProvidedRecord"
|
|
2989
|
+
}
|
|
2990
|
+
]
|
|
2910
2991
|
};
|
|
2911
2992
|
}
|
|
2912
2993
|
case ":asset.comments?": {
|
|
@@ -2929,9 +3010,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2929
3010
|
}
|
|
2930
3011
|
}
|
|
2931
3012
|
},
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
3013
|
+
schemas: [
|
|
3014
|
+
{
|
|
3015
|
+
$ref: "#/components/schemas/AssetCommentsRecord"
|
|
3016
|
+
}
|
|
3017
|
+
]
|
|
2935
3018
|
};
|
|
2936
3019
|
}
|
|
2937
3020
|
case ":asset.record?": {
|
|
@@ -3307,9 +3390,11 @@ function _schemaDomainRecord(domain) {
|
|
|
3307
3390
|
}
|
|
3308
3391
|
}
|
|
3309
3392
|
},
|
|
3310
|
-
|
|
3311
|
-
|
|
3312
|
-
|
|
3393
|
+
schemas: [
|
|
3394
|
+
{
|
|
3395
|
+
$ref: "#/components/schemas/AssetRecordProvidedRecord"
|
|
3396
|
+
}
|
|
3397
|
+
]
|
|
3313
3398
|
};
|
|
3314
3399
|
}
|
|
3315
3400
|
case ":auth": {
|
|
@@ -3336,9 +3421,11 @@ function _schemaDomainRecord(domain) {
|
|
|
3336
3421
|
}
|
|
3337
3422
|
}
|
|
3338
3423
|
},
|
|
3339
|
-
|
|
3340
|
-
|
|
3341
|
-
|
|
3424
|
+
schemas: [
|
|
3425
|
+
{
|
|
3426
|
+
$ref: "#/components/schemas/AuthDomainRecord"
|
|
3427
|
+
}
|
|
3428
|
+
]
|
|
3342
3429
|
};
|
|
3343
3430
|
}
|
|
3344
3431
|
case ":bundle": {
|
|
@@ -3374,9 +3461,11 @@ function _schemaDomainRecord(domain) {
|
|
|
3374
3461
|
}
|
|
3375
3462
|
}
|
|
3376
3463
|
},
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3464
|
+
schemas: [
|
|
3465
|
+
{
|
|
3466
|
+
$ref: "#/components/schemas/BundleRecord"
|
|
3467
|
+
}
|
|
3468
|
+
]
|
|
3380
3469
|
};
|
|
3381
3470
|
}
|
|
3382
3471
|
case ":bundle.revisions": {
|
|
@@ -3420,9 +3509,11 @@ function _schemaDomainRecord(domain) {
|
|
|
3420
3509
|
}
|
|
3421
3510
|
}
|
|
3422
3511
|
},
|
|
3423
|
-
|
|
3424
|
-
|
|
3425
|
-
|
|
3512
|
+
schemas: [
|
|
3513
|
+
{
|
|
3514
|
+
$ref: "#/components/schemas/BundleRevisionsRecord"
|
|
3515
|
+
}
|
|
3516
|
+
]
|
|
3426
3517
|
};
|
|
3427
3518
|
}
|
|
3428
3519
|
case ":calendarevent": {
|
|
@@ -3533,9 +3624,11 @@ function _schemaDomainRecord(domain) {
|
|
|
3533
3624
|
}
|
|
3534
3625
|
}
|
|
3535
3626
|
},
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3627
|
+
schemas: [
|
|
3628
|
+
{
|
|
3629
|
+
$ref: "#/components/schemas/CalendarEventDomainRecord"
|
|
3630
|
+
}
|
|
3631
|
+
]
|
|
3539
3632
|
};
|
|
3540
3633
|
}
|
|
3541
3634
|
case ":clone": {
|
|
@@ -3590,9 +3683,11 @@ function _schemaDomainRecord(domain) {
|
|
|
3590
3683
|
}
|
|
3591
3684
|
}
|
|
3592
3685
|
},
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3686
|
+
schemas: [
|
|
3687
|
+
{
|
|
3688
|
+
$ref: "#/components/schemas/CloneDomainCloneRecord"
|
|
3689
|
+
}
|
|
3690
|
+
]
|
|
3596
3691
|
};
|
|
3597
3692
|
}
|
|
3598
3693
|
case ":comment-reaction": {
|
|
@@ -3621,9 +3716,11 @@ function _schemaDomainRecord(domain) {
|
|
|
3621
3716
|
}
|
|
3622
3717
|
}
|
|
3623
3718
|
},
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3719
|
+
schemas: [
|
|
3720
|
+
{
|
|
3721
|
+
$ref: "#/components/schemas/CommentReactionDomainRecord"
|
|
3722
|
+
}
|
|
3723
|
+
]
|
|
3627
3724
|
};
|
|
3628
3725
|
}
|
|
3629
3726
|
case ":comment-read-mark": {
|
|
@@ -3652,9 +3749,11 @@ function _schemaDomainRecord(domain) {
|
|
|
3652
3749
|
}
|
|
3653
3750
|
}
|
|
3654
3751
|
},
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3752
|
+
schemas: [
|
|
3753
|
+
{
|
|
3754
|
+
$ref: "#/components/schemas/CommentReadMarkDomainRecord"
|
|
3755
|
+
}
|
|
3756
|
+
]
|
|
3658
3757
|
};
|
|
3659
3758
|
}
|
|
3660
3759
|
case ":comment": {
|
|
@@ -3976,9 +4075,11 @@ function _schemaDomainRecord(domain) {
|
|
|
3976
4075
|
}
|
|
3977
4076
|
}
|
|
3978
4077
|
},
|
|
3979
|
-
|
|
3980
|
-
|
|
3981
|
-
|
|
4078
|
+
schemas: [
|
|
4079
|
+
{
|
|
4080
|
+
$ref: "#/components/schemas/CommentDomainCommentRecord"
|
|
4081
|
+
}
|
|
4082
|
+
]
|
|
3982
4083
|
};
|
|
3983
4084
|
}
|
|
3984
4085
|
case ":comment.reactions?": {
|
|
@@ -4011,9 +4112,11 @@ function _schemaDomainRecord(domain) {
|
|
|
4011
4112
|
}
|
|
4012
4113
|
}
|
|
4013
4114
|
},
|
|
4014
|
-
|
|
4015
|
-
|
|
4016
|
-
|
|
4115
|
+
schemas: [
|
|
4116
|
+
{
|
|
4117
|
+
$ref: "#/components/schemas/CommentReactionsProvidedRecord"
|
|
4118
|
+
}
|
|
4119
|
+
]
|
|
4017
4120
|
};
|
|
4018
4121
|
}
|
|
4019
4122
|
case ":comment.replies?": {
|
|
@@ -4035,9 +4138,11 @@ function _schemaDomainRecord(domain) {
|
|
|
4035
4138
|
}
|
|
4036
4139
|
}
|
|
4037
4140
|
},
|
|
4038
|
-
|
|
4039
|
-
|
|
4040
|
-
|
|
4141
|
+
schemas: [
|
|
4142
|
+
{
|
|
4143
|
+
$ref: "#/components/schemas/CommentDomainRepliesProvidedRecord"
|
|
4144
|
+
}
|
|
4145
|
+
]
|
|
4041
4146
|
};
|
|
4042
4147
|
}
|
|
4043
4148
|
case ":comment.readMarks?": {
|
|
@@ -4059,9 +4164,11 @@ function _schemaDomainRecord(domain) {
|
|
|
4059
4164
|
}
|
|
4060
4165
|
}
|
|
4061
4166
|
},
|
|
4062
|
-
|
|
4063
|
-
|
|
4064
|
-
|
|
4167
|
+
schemas: [
|
|
4168
|
+
{
|
|
4169
|
+
$ref: "#/components/schemas/CommentDomainReadMarksProvidedRecord"
|
|
4170
|
+
}
|
|
4171
|
+
]
|
|
4065
4172
|
};
|
|
4066
4173
|
}
|
|
4067
4174
|
case ":condition": {
|
|
@@ -4087,9 +4194,11 @@ function _schemaDomainRecord(domain) {
|
|
|
4087
4194
|
}
|
|
4088
4195
|
}
|
|
4089
4196
|
},
|
|
4090
|
-
|
|
4091
|
-
|
|
4092
|
-
|
|
4197
|
+
schemas: [
|
|
4198
|
+
{
|
|
4199
|
+
$ref: "#/components/schemas/SearchCondition"
|
|
4200
|
+
}
|
|
4201
|
+
]
|
|
4093
4202
|
};
|
|
4094
4203
|
}
|
|
4095
4204
|
case ":connection": {
|
|
@@ -6378,34 +6487,36 @@ function _schemaDomainRecord(domain) {
|
|
|
6378
6487
|
}
|
|
6379
6488
|
}
|
|
6380
6489
|
},
|
|
6381
|
-
|
|
6382
|
-
|
|
6383
|
-
|
|
6384
|
-
|
|
6385
|
-
|
|
6386
|
-
|
|
6387
|
-
|
|
6388
|
-
|
|
6389
|
-
|
|
6390
|
-
|
|
6391
|
-
|
|
6392
|
-
|
|
6393
|
-
|
|
6394
|
-
|
|
6395
|
-
|
|
6396
|
-
|
|
6397
|
-
|
|
6398
|
-
|
|
6399
|
-
|
|
6400
|
-
|
|
6401
|
-
|
|
6402
|
-
|
|
6403
|
-
|
|
6404
|
-
|
|
6405
|
-
|
|
6406
|
-
|
|
6407
|
-
|
|
6408
|
-
|
|
6490
|
+
schemas: [
|
|
6491
|
+
{
|
|
6492
|
+
oneOf: [
|
|
6493
|
+
{
|
|
6494
|
+
$ref: "#/components/schemas/FileConnectionFtpRecord"
|
|
6495
|
+
},
|
|
6496
|
+
{
|
|
6497
|
+
$ref: "#/components/schemas/FileConnectionHttpRecord"
|
|
6498
|
+
},
|
|
6499
|
+
{
|
|
6500
|
+
$ref: "#/components/schemas/FileConnectionS3Record"
|
|
6501
|
+
},
|
|
6502
|
+
{
|
|
6503
|
+
$ref: "#/components/schemas/FileConnectionSmbRecord"
|
|
6504
|
+
},
|
|
6505
|
+
{
|
|
6506
|
+
$ref: "#/components/schemas/FileConnectionSftpRecord"
|
|
6507
|
+
},
|
|
6508
|
+
{
|
|
6509
|
+
$ref: "#/components/schemas/FacebookConnectionRecord"
|
|
6510
|
+
},
|
|
6511
|
+
{
|
|
6512
|
+
$ref: "#/components/schemas/ReutersConnectionRecord"
|
|
6513
|
+
},
|
|
6514
|
+
{
|
|
6515
|
+
$ref: "#/components/schemas/EmptyConnectionRecord"
|
|
6516
|
+
}
|
|
6517
|
+
]
|
|
6518
|
+
}
|
|
6519
|
+
]
|
|
6409
6520
|
};
|
|
6410
6521
|
}
|
|
6411
6522
|
case ":connection.methods?": {
|
|
@@ -6428,9 +6539,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6428
6539
|
}
|
|
6429
6540
|
}
|
|
6430
6541
|
},
|
|
6431
|
-
|
|
6432
|
-
|
|
6433
|
-
|
|
6542
|
+
schemas: [
|
|
6543
|
+
{
|
|
6544
|
+
$ref: "#/components/schemas/ConnectionMethodsBase"
|
|
6545
|
+
}
|
|
6546
|
+
]
|
|
6434
6547
|
};
|
|
6435
6548
|
}
|
|
6436
6549
|
case ":connection.stats?": {
|
|
@@ -6464,9 +6577,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6464
6577
|
}
|
|
6465
6578
|
}
|
|
6466
6579
|
},
|
|
6467
|
-
|
|
6468
|
-
|
|
6469
|
-
|
|
6580
|
+
schemas: [
|
|
6581
|
+
{
|
|
6582
|
+
$ref: "#/components/schemas/ConnectionStatsBase"
|
|
6583
|
+
}
|
|
6584
|
+
]
|
|
6470
6585
|
};
|
|
6471
6586
|
}
|
|
6472
6587
|
case ":contact": {
|
|
@@ -6506,9 +6621,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6506
6621
|
}
|
|
6507
6622
|
}
|
|
6508
6623
|
},
|
|
6509
|
-
|
|
6510
|
-
|
|
6511
|
-
|
|
6624
|
+
schemas: [
|
|
6625
|
+
{
|
|
6626
|
+
$ref: "#/components/schemas/ContactRecord"
|
|
6627
|
+
}
|
|
6628
|
+
]
|
|
6512
6629
|
};
|
|
6513
6630
|
}
|
|
6514
6631
|
case ":deepstream.replicate": {
|
|
@@ -6543,9 +6660,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6543
6660
|
}
|
|
6544
6661
|
}
|
|
6545
6662
|
},
|
|
6546
|
-
|
|
6547
|
-
|
|
6548
|
-
|
|
6663
|
+
schemas: [
|
|
6664
|
+
{
|
|
6665
|
+
$ref: "#/components/schemas/DeepstreamDomainReplicateRecord"
|
|
6666
|
+
}
|
|
6667
|
+
]
|
|
6549
6668
|
};
|
|
6550
6669
|
}
|
|
6551
6670
|
case ":design?": {
|
|
@@ -6586,9 +6705,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6586
6705
|
}
|
|
6587
6706
|
}
|
|
6588
6707
|
},
|
|
6589
|
-
|
|
6590
|
-
|
|
6591
|
-
|
|
6708
|
+
schemas: [
|
|
6709
|
+
{
|
|
6710
|
+
$ref: "#/components/schemas/DesignDomainRecordstringstringunknown"
|
|
6711
|
+
}
|
|
6712
|
+
]
|
|
6592
6713
|
};
|
|
6593
6714
|
}
|
|
6594
6715
|
case ":device": {
|
|
@@ -6619,9 +6740,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6619
6740
|
}
|
|
6620
6741
|
}
|
|
6621
6742
|
},
|
|
6622
|
-
|
|
6623
|
-
|
|
6624
|
-
|
|
6743
|
+
schemas: [
|
|
6744
|
+
{
|
|
6745
|
+
$ref: "#/components/schemas/DeviceDomainRecord"
|
|
6746
|
+
}
|
|
6747
|
+
]
|
|
6625
6748
|
};
|
|
6626
6749
|
}
|
|
6627
6750
|
case ":device.status?": {
|
|
@@ -6646,9 +6769,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6646
6769
|
}
|
|
6647
6770
|
}
|
|
6648
6771
|
},
|
|
6649
|
-
|
|
6650
|
-
|
|
6651
|
-
|
|
6772
|
+
schemas: [
|
|
6773
|
+
{
|
|
6774
|
+
$ref: "#/components/schemas/DeviceDomainStatusRecord"
|
|
6775
|
+
}
|
|
6776
|
+
]
|
|
6652
6777
|
};
|
|
6653
6778
|
}
|
|
6654
6779
|
case ":edit": {
|
|
@@ -6691,9 +6816,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6691
6816
|
}
|
|
6692
6817
|
}
|
|
6693
6818
|
},
|
|
6694
|
-
|
|
6695
|
-
|
|
6696
|
-
|
|
6819
|
+
schemas: [
|
|
6820
|
+
{
|
|
6821
|
+
$ref: "#/components/schemas/EditRecord"
|
|
6822
|
+
}
|
|
6823
|
+
]
|
|
6697
6824
|
};
|
|
6698
6825
|
}
|
|
6699
6826
|
case ":event": {
|
|
@@ -6778,9 +6905,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6778
6905
|
}
|
|
6779
6906
|
}
|
|
6780
6907
|
},
|
|
6781
|
-
|
|
6782
|
-
|
|
6783
|
-
|
|
6908
|
+
schemas: [
|
|
6909
|
+
{
|
|
6910
|
+
$ref: "#/components/schemas/EventRecord"
|
|
6911
|
+
}
|
|
6912
|
+
]
|
|
6784
6913
|
};
|
|
6785
6914
|
}
|
|
6786
6915
|
case ":event._template?": {
|
|
@@ -6819,9 +6948,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6819
6948
|
}
|
|
6820
6949
|
}
|
|
6821
6950
|
},
|
|
6822
|
-
|
|
6823
|
-
|
|
6824
|
-
|
|
6951
|
+
schemas: [
|
|
6952
|
+
{
|
|
6953
|
+
$ref: "#/components/schemas/EventTemplateRecord"
|
|
6954
|
+
}
|
|
6955
|
+
]
|
|
6825
6956
|
};
|
|
6826
6957
|
}
|
|
6827
6958
|
case ":event.overlay?": {
|
|
@@ -6924,9 +7055,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6924
7055
|
}
|
|
6925
7056
|
}
|
|
6926
7057
|
},
|
|
6927
|
-
|
|
6928
|
-
|
|
6929
|
-
|
|
7058
|
+
schemas: [
|
|
7059
|
+
{
|
|
7060
|
+
$ref: "#/components/schemas/EventOverlayRecord"
|
|
7061
|
+
}
|
|
7062
|
+
]
|
|
6930
7063
|
};
|
|
6931
7064
|
}
|
|
6932
7065
|
case ":event.template?": {
|
|
@@ -6965,9 +7098,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6965
7098
|
}
|
|
6966
7099
|
}
|
|
6967
7100
|
},
|
|
6968
|
-
|
|
6969
|
-
|
|
6970
|
-
|
|
7101
|
+
schemas: [
|
|
7102
|
+
{
|
|
7103
|
+
$ref: "#/components/schemas/EventTemplateRecord"
|
|
7104
|
+
}
|
|
7105
|
+
]
|
|
6971
7106
|
};
|
|
6972
7107
|
}
|
|
6973
7108
|
case ":event.duration?": {
|
|
@@ -7002,9 +7137,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7002
7137
|
}
|
|
7003
7138
|
}
|
|
7004
7139
|
},
|
|
7005
|
-
|
|
7006
|
-
|
|
7007
|
-
|
|
7140
|
+
schemas: [
|
|
7141
|
+
{
|
|
7142
|
+
$ref: "#/components/schemas/EventDurationRecord"
|
|
7143
|
+
}
|
|
7144
|
+
]
|
|
7008
7145
|
};
|
|
7009
7146
|
}
|
|
7010
7147
|
case ":event.children?": {
|
|
@@ -7028,9 +7165,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7028
7165
|
}
|
|
7029
7166
|
}
|
|
7030
7167
|
},
|
|
7031
|
-
|
|
7032
|
-
|
|
7033
|
-
|
|
7168
|
+
schemas: [
|
|
7169
|
+
{
|
|
7170
|
+
$ref: "#/components/schemas/EventChildrenRecord"
|
|
7171
|
+
}
|
|
7172
|
+
]
|
|
7034
7173
|
};
|
|
7035
7174
|
}
|
|
7036
7175
|
case ":event.props?": {
|
|
@@ -7117,9 +7256,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7117
7256
|
}
|
|
7118
7257
|
}
|
|
7119
7258
|
},
|
|
7120
|
-
|
|
7121
|
-
|
|
7122
|
-
|
|
7259
|
+
schemas: [
|
|
7260
|
+
{
|
|
7261
|
+
$ref: "#/components/schemas/EventPropsRecord"
|
|
7262
|
+
}
|
|
7263
|
+
]
|
|
7123
7264
|
};
|
|
7124
7265
|
}
|
|
7125
7266
|
case ":file.replicate": {
|
|
@@ -7223,9 +7364,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7223
7364
|
}
|
|
7224
7365
|
}
|
|
7225
7366
|
},
|
|
7226
|
-
|
|
7227
|
-
|
|
7228
|
-
|
|
7367
|
+
schemas: [
|
|
7368
|
+
{
|
|
7369
|
+
$ref: "#/components/schemas/FileReplicateRecord"
|
|
7370
|
+
}
|
|
7371
|
+
]
|
|
7229
7372
|
};
|
|
7230
7373
|
}
|
|
7231
7374
|
case ":file.restrictions": {
|
|
@@ -7271,9 +7414,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7271
7414
|
}
|
|
7272
7415
|
}
|
|
7273
7416
|
},
|
|
7274
|
-
|
|
7275
|
-
|
|
7276
|
-
|
|
7417
|
+
schemas: [
|
|
7418
|
+
{
|
|
7419
|
+
$ref: "#/components/schemas/FileRestrictionsRecord"
|
|
7420
|
+
}
|
|
7421
|
+
]
|
|
7277
7422
|
};
|
|
7278
7423
|
}
|
|
7279
7424
|
case ":file.stats?": {
|
|
@@ -7537,9 +7682,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7537
7682
|
}
|
|
7538
7683
|
}
|
|
7539
7684
|
},
|
|
7540
|
-
|
|
7541
|
-
|
|
7542
|
-
|
|
7685
|
+
schemas: [
|
|
7686
|
+
{
|
|
7687
|
+
$ref: "#/components/schemas/FileStats"
|
|
7688
|
+
}
|
|
7689
|
+
]
|
|
7543
7690
|
};
|
|
7544
7691
|
}
|
|
7545
7692
|
case ":folder.items": {
|
|
@@ -7563,9 +7710,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7563
7710
|
}
|
|
7564
7711
|
}
|
|
7565
7712
|
},
|
|
7566
|
-
|
|
7567
|
-
|
|
7568
|
-
|
|
7713
|
+
schemas: [
|
|
7714
|
+
{
|
|
7715
|
+
$ref: "#/components/schemas/FolderItemsDomainRecord"
|
|
7716
|
+
}
|
|
7717
|
+
]
|
|
7569
7718
|
};
|
|
7570
7719
|
}
|
|
7571
7720
|
case ":general.title": {
|
|
@@ -7584,9 +7733,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7584
7733
|
}
|
|
7585
7734
|
}
|
|
7586
7735
|
},
|
|
7587
|
-
|
|
7588
|
-
|
|
7589
|
-
|
|
7736
|
+
schemas: [
|
|
7737
|
+
{
|
|
7738
|
+
$ref: "#/components/schemas/GeneralTitleRecord"
|
|
7739
|
+
}
|
|
7740
|
+
]
|
|
7590
7741
|
};
|
|
7591
7742
|
}
|
|
7592
7743
|
case ":general.tags": {
|
|
@@ -7610,9 +7761,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7610
7761
|
}
|
|
7611
7762
|
}
|
|
7612
7763
|
},
|
|
7613
|
-
|
|
7614
|
-
|
|
7615
|
-
|
|
7764
|
+
schemas: [
|
|
7765
|
+
{
|
|
7766
|
+
$ref: "#/components/schemas/GeneralTagsRecord"
|
|
7767
|
+
}
|
|
7768
|
+
]
|
|
7616
7769
|
};
|
|
7617
7770
|
}
|
|
7618
7771
|
case ":general.created": {
|
|
@@ -7637,9 +7790,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7637
7790
|
}
|
|
7638
7791
|
}
|
|
7639
7792
|
},
|
|
7640
|
-
|
|
7641
|
-
|
|
7642
|
-
|
|
7793
|
+
schemas: [
|
|
7794
|
+
{
|
|
7795
|
+
$ref: "#/components/schemas/GeneralCreatedRecord"
|
|
7796
|
+
}
|
|
7797
|
+
]
|
|
7643
7798
|
};
|
|
7644
7799
|
}
|
|
7645
7800
|
case ":general.poster": {
|
|
@@ -7670,9 +7825,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7670
7825
|
}
|
|
7671
7826
|
}
|
|
7672
7827
|
},
|
|
7673
|
-
|
|
7674
|
-
|
|
7675
|
-
|
|
7828
|
+
schemas: [
|
|
7829
|
+
{
|
|
7830
|
+
$ref: "#/components/schemas/GeneralPosterRecord"
|
|
7831
|
+
}
|
|
7832
|
+
]
|
|
7676
7833
|
};
|
|
7677
7834
|
}
|
|
7678
7835
|
case ":general.status": {
|
|
@@ -7699,9 +7856,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7699
7856
|
}
|
|
7700
7857
|
}
|
|
7701
7858
|
},
|
|
7702
|
-
|
|
7703
|
-
|
|
7704
|
-
|
|
7859
|
+
schemas: [
|
|
7860
|
+
{
|
|
7861
|
+
$ref: "#/components/schemas/GeneralStatusRecord"
|
|
7862
|
+
}
|
|
7863
|
+
]
|
|
7705
7864
|
};
|
|
7706
7865
|
}
|
|
7707
7866
|
case ":general.description": {
|
|
@@ -7720,9 +7879,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7720
7879
|
}
|
|
7721
7880
|
}
|
|
7722
7881
|
},
|
|
7723
|
-
|
|
7724
|
-
|
|
7725
|
-
|
|
7882
|
+
schemas: [
|
|
7883
|
+
{
|
|
7884
|
+
$ref: "#/components/schemas/GeneralDescriptionRecord"
|
|
7885
|
+
}
|
|
7886
|
+
]
|
|
7726
7887
|
};
|
|
7727
7888
|
}
|
|
7728
7889
|
case ":general._asset": {
|
|
@@ -7765,9 +7926,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7765
7926
|
}
|
|
7766
7927
|
}
|
|
7767
7928
|
},
|
|
7768
|
-
|
|
7769
|
-
|
|
7770
|
-
|
|
7929
|
+
schemas: [
|
|
7930
|
+
{
|
|
7931
|
+
$ref: "#/components/schemas/GeneralAssetRecord"
|
|
7932
|
+
}
|
|
7933
|
+
]
|
|
7771
7934
|
};
|
|
7772
7935
|
}
|
|
7773
7936
|
case ":general._embedding": {
|
|
@@ -7792,9 +7955,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7792
7955
|
}
|
|
7793
7956
|
}
|
|
7794
7957
|
},
|
|
7795
|
-
|
|
7796
|
-
|
|
7797
|
-
|
|
7958
|
+
schemas: [
|
|
7959
|
+
{
|
|
7960
|
+
$ref: "#/components/schemas/GeneralEmbeddingRecord"
|
|
7961
|
+
}
|
|
7962
|
+
]
|
|
7798
7963
|
};
|
|
7799
7964
|
}
|
|
7800
7965
|
case ":harvest": {
|
|
@@ -7828,9 +7993,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7828
7993
|
}
|
|
7829
7994
|
}
|
|
7830
7995
|
},
|
|
7831
|
-
|
|
7832
|
-
|
|
7833
|
-
|
|
7996
|
+
schemas: [
|
|
7997
|
+
{
|
|
7998
|
+
$ref: "#/components/schemas/HarvestDomainRecord"
|
|
7999
|
+
}
|
|
8000
|
+
]
|
|
7834
8001
|
};
|
|
7835
8002
|
}
|
|
7836
8003
|
case ":ingestclip": {
|
|
@@ -7894,9 +8061,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7894
8061
|
}
|
|
7895
8062
|
}
|
|
7896
8063
|
},
|
|
7897
|
-
|
|
7898
|
-
|
|
7899
|
-
|
|
8064
|
+
schemas: [
|
|
8065
|
+
{
|
|
8066
|
+
$ref: "#/components/schemas/IngestclipDomainRecord"
|
|
8067
|
+
}
|
|
8068
|
+
]
|
|
7900
8069
|
};
|
|
7901
8070
|
}
|
|
7902
8071
|
case ":ingestschedule": {
|
|
@@ -8069,9 +8238,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8069
8238
|
}
|
|
8070
8239
|
}
|
|
8071
8240
|
},
|
|
8072
|
-
|
|
8073
|
-
|
|
8074
|
-
|
|
8241
|
+
schemas: [
|
|
8242
|
+
{
|
|
8243
|
+
$ref: "#/components/schemas/IngestScheduleDomainRecord"
|
|
8244
|
+
}
|
|
8245
|
+
]
|
|
8075
8246
|
};
|
|
8076
8247
|
}
|
|
8077
8248
|
case ":ingestschedule.stats?": {
|
|
@@ -8088,9 +8259,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8088
8259
|
}
|
|
8089
8260
|
}
|
|
8090
8261
|
},
|
|
8091
|
-
|
|
8092
|
-
|
|
8093
|
-
|
|
8262
|
+
schemas: [
|
|
8263
|
+
{
|
|
8264
|
+
$ref: "#/components/schemas/IngestScheduleDomainStatsRecord"
|
|
8265
|
+
}
|
|
8266
|
+
]
|
|
8094
8267
|
};
|
|
8095
8268
|
}
|
|
8096
8269
|
case ":media.source": {
|
|
@@ -8291,9 +8464,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8291
8464
|
}
|
|
8292
8465
|
}
|
|
8293
8466
|
},
|
|
8294
|
-
|
|
8295
|
-
|
|
8296
|
-
|
|
8467
|
+
schemas: [
|
|
8468
|
+
{
|
|
8469
|
+
$ref: "#/components/schemas/RenderSceneObject"
|
|
8470
|
+
}
|
|
8471
|
+
]
|
|
8297
8472
|
};
|
|
8298
8473
|
}
|
|
8299
8474
|
case ":media.consolidate": {
|
|
@@ -8469,9 +8644,56 @@ function _schemaDomainRecord(domain) {
|
|
|
8469
8644
|
}
|
|
8470
8645
|
}
|
|
8471
8646
|
},
|
|
8472
|
-
|
|
8473
|
-
|
|
8474
|
-
|
|
8647
|
+
schemas: [
|
|
8648
|
+
{
|
|
8649
|
+
$ref: "#/components/schemas/MediaDomainConsolidateRecord"
|
|
8650
|
+
}
|
|
8651
|
+
]
|
|
8652
|
+
};
|
|
8653
|
+
}
|
|
8654
|
+
case ":media.consolidate?": {
|
|
8655
|
+
return {
|
|
8656
|
+
version: "3.1",
|
|
8657
|
+
components: {
|
|
8658
|
+
schemas: {
|
|
8659
|
+
MediaDomainConsolidateRecordProvided: {
|
|
8660
|
+
type: "object",
|
|
8661
|
+
properties: {
|
|
8662
|
+
status: {
|
|
8663
|
+
oneOf: [
|
|
8664
|
+
{
|
|
8665
|
+
"const": "completed"
|
|
8666
|
+
},
|
|
8667
|
+
{
|
|
8668
|
+
"const": "error"
|
|
8669
|
+
},
|
|
8670
|
+
{
|
|
8671
|
+
"const": "idle"
|
|
8672
|
+
},
|
|
8673
|
+
{
|
|
8674
|
+
"const": "pending"
|
|
8675
|
+
},
|
|
8676
|
+
{
|
|
8677
|
+
"const": "source_mismatch"
|
|
8678
|
+
}
|
|
8679
|
+
]
|
|
8680
|
+
},
|
|
8681
|
+
progress: {
|
|
8682
|
+
type: "number"
|
|
8683
|
+
},
|
|
8684
|
+
error: {}
|
|
8685
|
+
},
|
|
8686
|
+
required: [
|
|
8687
|
+
"status"
|
|
8688
|
+
]
|
|
8689
|
+
}
|
|
8690
|
+
}
|
|
8691
|
+
},
|
|
8692
|
+
schemas: [
|
|
8693
|
+
{
|
|
8694
|
+
$ref: "#/components/schemas/MediaDomainConsolidateRecordProvided"
|
|
8695
|
+
}
|
|
8696
|
+
]
|
|
8475
8697
|
};
|
|
8476
8698
|
}
|
|
8477
8699
|
case ":media.renders?": {
|
|
@@ -8513,9 +8735,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8513
8735
|
}
|
|
8514
8736
|
}
|
|
8515
8737
|
},
|
|
8516
|
-
|
|
8517
|
-
|
|
8518
|
-
|
|
8738
|
+
schemas: [
|
|
8739
|
+
{
|
|
8740
|
+
$ref: "#/components/schemas/MediaRendersRecord"
|
|
8741
|
+
}
|
|
8742
|
+
]
|
|
8519
8743
|
};
|
|
8520
8744
|
}
|
|
8521
8745
|
case ":media.transcriptChanges": {
|
|
@@ -8683,9 +8907,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8683
8907
|
}
|
|
8684
8908
|
}
|
|
8685
8909
|
},
|
|
8686
|
-
|
|
8687
|
-
|
|
8688
|
-
|
|
8910
|
+
schemas: [
|
|
8911
|
+
{
|
|
8912
|
+
$ref: "#/components/schemas/MediaTranscriptChangesRecord"
|
|
8913
|
+
}
|
|
8914
|
+
]
|
|
8689
8915
|
};
|
|
8690
8916
|
}
|
|
8691
8917
|
case ":media.font": {
|
|
@@ -8704,9 +8930,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8704
8930
|
}
|
|
8705
8931
|
}
|
|
8706
8932
|
},
|
|
8707
|
-
|
|
8708
|
-
|
|
8709
|
-
|
|
8933
|
+
schemas: [
|
|
8934
|
+
{
|
|
8935
|
+
$ref: "#/components/schemas/MediaFontRecord"
|
|
8936
|
+
}
|
|
8937
|
+
]
|
|
8710
8938
|
};
|
|
8711
8939
|
}
|
|
8712
8940
|
case ":media.restrictions?": {
|
|
@@ -8756,9 +8984,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8756
8984
|
}
|
|
8757
8985
|
}
|
|
8758
8986
|
},
|
|
8759
|
-
|
|
8760
|
-
|
|
8761
|
-
|
|
8987
|
+
schemas: [
|
|
8988
|
+
{
|
|
8989
|
+
$ref: "#/components/schemas/MediaRestrictionsRecord"
|
|
8990
|
+
}
|
|
8991
|
+
]
|
|
8762
8992
|
};
|
|
8763
8993
|
}
|
|
8764
8994
|
case ":media.probe?": {
|
|
@@ -8918,9 +9148,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8918
9148
|
}
|
|
8919
9149
|
}
|
|
8920
9150
|
},
|
|
8921
|
-
|
|
8922
|
-
|
|
8923
|
-
|
|
9151
|
+
schemas: [
|
|
9152
|
+
{
|
|
9153
|
+
$ref: "#/components/schemas/MediaProbeRecord"
|
|
9154
|
+
}
|
|
9155
|
+
]
|
|
8924
9156
|
};
|
|
8925
9157
|
}
|
|
8926
9158
|
case ":media.updateSubtitles?": {
|
|
@@ -8936,9 +9168,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8936
9168
|
}
|
|
8937
9169
|
}
|
|
8938
9170
|
},
|
|
8939
|
-
|
|
8940
|
-
|
|
8941
|
-
|
|
9171
|
+
schemas: [
|
|
9172
|
+
{
|
|
9173
|
+
$ref: "#/components/schemas/MediaDomainUpdateSubtitlesRecord"
|
|
9174
|
+
}
|
|
9175
|
+
]
|
|
8942
9176
|
};
|
|
8943
9177
|
}
|
|
8944
9178
|
case ":media.updateGraphics?": {
|
|
@@ -8954,9 +9188,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8954
9188
|
}
|
|
8955
9189
|
}
|
|
8956
9190
|
},
|
|
8957
|
-
|
|
8958
|
-
|
|
8959
|
-
|
|
9191
|
+
schemas: [
|
|
9192
|
+
{
|
|
9193
|
+
$ref: "#/components/schemas/MediaDomainUpdateGraphicsRecord"
|
|
9194
|
+
}
|
|
9195
|
+
]
|
|
8960
9196
|
};
|
|
8961
9197
|
}
|
|
8962
9198
|
case ":monitor.stats?": {
|
|
@@ -9570,9 +9806,11 @@ function _schemaDomainRecord(domain) {
|
|
|
9570
9806
|
}
|
|
9571
9807
|
}
|
|
9572
9808
|
},
|
|
9573
|
-
|
|
9574
|
-
|
|
9575
|
-
|
|
9809
|
+
schemas: [
|
|
9810
|
+
{
|
|
9811
|
+
$ref: "#/components/schemas/MonitorStatsRecord"
|
|
9812
|
+
}
|
|
9813
|
+
]
|
|
9576
9814
|
};
|
|
9577
9815
|
}
|
|
9578
9816
|
case ":note": {
|
|
@@ -9593,9 +9831,11 @@ function _schemaDomainRecord(domain) {
|
|
|
9593
9831
|
}
|
|
9594
9832
|
}
|
|
9595
9833
|
},
|
|
9596
|
-
|
|
9597
|
-
|
|
9598
|
-
|
|
9834
|
+
schemas: [
|
|
9835
|
+
{
|
|
9836
|
+
$ref: "#/components/schemas/NoteDomainRecord"
|
|
9837
|
+
}
|
|
9838
|
+
]
|
|
9599
9839
|
};
|
|
9600
9840
|
}
|
|
9601
9841
|
case ":panel": {
|
|
@@ -9908,9 +10148,11 @@ function _schemaDomainRecord(domain) {
|
|
|
9908
10148
|
}
|
|
9909
10149
|
}
|
|
9910
10150
|
},
|
|
9911
|
-
|
|
9912
|
-
|
|
9913
|
-
|
|
10151
|
+
schemas: [
|
|
10152
|
+
{
|
|
10153
|
+
$ref: "#/components/schemas/PanelDomainPanelRecord"
|
|
10154
|
+
}
|
|
10155
|
+
]
|
|
9914
10156
|
};
|
|
9915
10157
|
}
|
|
9916
10158
|
case ":permission?": {
|
|
@@ -10003,9 +10245,11 @@ function _schemaDomainRecord(domain) {
|
|
|
10003
10245
|
}
|
|
10004
10246
|
}
|
|
10005
10247
|
},
|
|
10006
|
-
|
|
10007
|
-
|
|
10008
|
-
|
|
10248
|
+
schemas: [
|
|
10249
|
+
{
|
|
10250
|
+
$ref: "#/components/schemas/ProvidedPermissionRecord"
|
|
10251
|
+
}
|
|
10252
|
+
]
|
|
10009
10253
|
};
|
|
10010
10254
|
}
|
|
10011
10255
|
case ":permission": {
|
|
@@ -10084,9 +10328,11 @@ function _schemaDomainRecord(domain) {
|
|
|
10084
10328
|
}
|
|
10085
10329
|
}
|
|
10086
10330
|
},
|
|
10087
|
-
|
|
10088
|
-
|
|
10089
|
-
|
|
10331
|
+
schemas: [
|
|
10332
|
+
{
|
|
10333
|
+
$ref: "#/components/schemas/PermissionRecordPermisson"
|
|
10334
|
+
}
|
|
10335
|
+
]
|
|
10090
10336
|
};
|
|
10091
10337
|
}
|
|
10092
10338
|
case ":pipeline-preset": {
|
|
@@ -10158,9 +10404,11 @@ function _schemaDomainRecord(domain) {
|
|
|
10158
10404
|
}
|
|
10159
10405
|
}
|
|
10160
10406
|
},
|
|
10161
|
-
|
|
10162
|
-
|
|
10163
|
-
|
|
10407
|
+
schemas: [
|
|
10408
|
+
{
|
|
10409
|
+
$ref: "#/components/schemas/PipelinePresetDomainRecord"
|
|
10410
|
+
}
|
|
10411
|
+
]
|
|
10164
10412
|
};
|
|
10165
10413
|
}
|
|
10166
10414
|
case ":pipeline": {
|
|
@@ -10217,9 +10465,11 @@ function _schemaDomainRecord(domain) {
|
|
|
10217
10465
|
}
|
|
10218
10466
|
}
|
|
10219
10467
|
},
|
|
10220
|
-
|
|
10221
|
-
|
|
10222
|
-
|
|
10468
|
+
schemas: [
|
|
10469
|
+
{
|
|
10470
|
+
$ref: "#/components/schemas/PipelineDomainRecord"
|
|
10471
|
+
}
|
|
10472
|
+
]
|
|
10223
10473
|
};
|
|
10224
10474
|
}
|
|
10225
10475
|
case ":pipeline.items": {
|
|
@@ -10241,9 +10491,11 @@ function _schemaDomainRecord(domain) {
|
|
|
10241
10491
|
}
|
|
10242
10492
|
}
|
|
10243
10493
|
},
|
|
10244
|
-
|
|
10245
|
-
|
|
10246
|
-
|
|
10494
|
+
schemas: [
|
|
10495
|
+
{
|
|
10496
|
+
$ref: "#/components/schemas/PipelineDomainItemsRecord"
|
|
10497
|
+
}
|
|
10498
|
+
]
|
|
10247
10499
|
};
|
|
10248
10500
|
}
|
|
10249
10501
|
case ":planning": {
|
|
@@ -10269,9 +10521,11 @@ function _schemaDomainRecord(domain) {
|
|
|
10269
10521
|
}
|
|
10270
10522
|
}
|
|
10271
10523
|
},
|
|
10272
|
-
|
|
10273
|
-
|
|
10274
|
-
|
|
10524
|
+
schemas: [
|
|
10525
|
+
{
|
|
10526
|
+
$ref: "#/components/schemas/PlanningRecord"
|
|
10527
|
+
}
|
|
10528
|
+
]
|
|
10275
10529
|
};
|
|
10276
10530
|
}
|
|
10277
10531
|
case ":planning.assignees": {
|
|
@@ -10293,9 +10547,11 @@ function _schemaDomainRecord(domain) {
|
|
|
10293
10547
|
}
|
|
10294
10548
|
}
|
|
10295
10549
|
},
|
|
10296
|
-
|
|
10297
|
-
|
|
10298
|
-
|
|
10550
|
+
schemas: [
|
|
10551
|
+
{
|
|
10552
|
+
$ref: "#/components/schemas/PlanningAssigneesRecord"
|
|
10553
|
+
}
|
|
10554
|
+
]
|
|
10299
10555
|
};
|
|
10300
10556
|
}
|
|
10301
10557
|
case ":planning.deadline": {
|
|
@@ -10323,9 +10579,11 @@ function _schemaDomainRecord(domain) {
|
|
|
10323
10579
|
}
|
|
10324
10580
|
}
|
|
10325
10581
|
},
|
|
10326
|
-
|
|
10327
|
-
|
|
10328
|
-
|
|
10582
|
+
schemas: [
|
|
10583
|
+
{
|
|
10584
|
+
$ref: "#/components/schemas/PlanningDeadlineRecord"
|
|
10585
|
+
}
|
|
10586
|
+
]
|
|
10329
10587
|
};
|
|
10330
10588
|
}
|
|
10331
10589
|
case ":prompter": {
|
|
@@ -10392,9 +10650,11 @@ function _schemaDomainRecord(domain) {
|
|
|
10392
10650
|
}
|
|
10393
10651
|
}
|
|
10394
10652
|
},
|
|
10395
|
-
|
|
10396
|
-
|
|
10397
|
-
|
|
10653
|
+
schemas: [
|
|
10654
|
+
{
|
|
10655
|
+
$ref: "#/components/schemas/PrompterDomainRecord"
|
|
10656
|
+
}
|
|
10657
|
+
]
|
|
10398
10658
|
};
|
|
10399
10659
|
}
|
|
10400
10660
|
case ":publish": {
|
|
@@ -11273,25 +11533,27 @@ function _schemaDomainRecord(domain) {
|
|
|
11273
11533
|
}
|
|
11274
11534
|
}
|
|
11275
11535
|
},
|
|
11276
|
-
|
|
11277
|
-
|
|
11278
|
-
|
|
11279
|
-
|
|
11280
|
-
|
|
11281
|
-
|
|
11282
|
-
|
|
11283
|
-
|
|
11284
|
-
|
|
11285
|
-
|
|
11286
|
-
|
|
11287
|
-
|
|
11288
|
-
|
|
11289
|
-
|
|
11290
|
-
|
|
11291
|
-
|
|
11292
|
-
|
|
11293
|
-
|
|
11294
|
-
|
|
11536
|
+
schemas: [
|
|
11537
|
+
{
|
|
11538
|
+
oneOf: [
|
|
11539
|
+
{
|
|
11540
|
+
$ref: "#/components/schemas/EmptyPublishRecord"
|
|
11541
|
+
},
|
|
11542
|
+
{
|
|
11543
|
+
$ref: "#/components/schemas/FacebookPublishRecord"
|
|
11544
|
+
},
|
|
11545
|
+
{
|
|
11546
|
+
$ref: "#/components/schemas/FilePublishRecordLegacy"
|
|
11547
|
+
},
|
|
11548
|
+
{
|
|
11549
|
+
$ref: "#/components/schemas/FilePublishRecord"
|
|
11550
|
+
},
|
|
11551
|
+
{
|
|
11552
|
+
$ref: "#/components/schemas/YoutubePublishRecord"
|
|
11553
|
+
}
|
|
11554
|
+
]
|
|
11555
|
+
}
|
|
11556
|
+
]
|
|
11295
11557
|
};
|
|
11296
11558
|
}
|
|
11297
11559
|
case ":publish.stats?": {
|
|
@@ -11962,26 +12224,6 @@ function _schemaDomainRecord(domain) {
|
|
|
11962
12224
|
],
|
|
11963
12225
|
description: "render preset + overrides"
|
|
11964
12226
|
},
|
|
11965
|
-
FacebookPublishStatsRecord: {
|
|
11966
|
-
type: "object",
|
|
11967
|
-
properties: {
|
|
11968
|
-
status: {
|
|
11969
|
-
type: "string"
|
|
11970
|
-
},
|
|
11971
|
-
substatus: {
|
|
11972
|
-
type: "string"
|
|
11973
|
-
},
|
|
11974
|
-
messages: {
|
|
11975
|
-
type: "array",
|
|
11976
|
-
items: {
|
|
11977
|
-
$ref: "#/components/schemas/Message"
|
|
11978
|
-
}
|
|
11979
|
-
},
|
|
11980
|
-
retrieved: {},
|
|
11981
|
-
defaults: {}
|
|
11982
|
-
},
|
|
11983
|
-
required: []
|
|
11984
|
-
},
|
|
11985
12227
|
PublishStatsRecordBase: {
|
|
11986
12228
|
type: "object",
|
|
11987
12229
|
properties: {
|
|
@@ -12004,19 +12246,18 @@ function _schemaDomainRecord(domain) {
|
|
|
12004
12246
|
}
|
|
12005
12247
|
}
|
|
12006
12248
|
},
|
|
12007
|
-
|
|
12008
|
-
|
|
12009
|
-
|
|
12010
|
-
|
|
12011
|
-
|
|
12012
|
-
|
|
12013
|
-
|
|
12014
|
-
|
|
12015
|
-
|
|
12016
|
-
|
|
12017
|
-
|
|
12018
|
-
|
|
12019
|
-
}
|
|
12249
|
+
schemas: [
|
|
12250
|
+
{
|
|
12251
|
+
oneOf: [
|
|
12252
|
+
{
|
|
12253
|
+
$ref: "#/components/schemas/FilePublishStatsRecord"
|
|
12254
|
+
},
|
|
12255
|
+
{
|
|
12256
|
+
$ref: "#/components/schemas/PublishStatsRecordBase"
|
|
12257
|
+
}
|
|
12258
|
+
]
|
|
12259
|
+
}
|
|
12260
|
+
]
|
|
12020
12261
|
};
|
|
12021
12262
|
}
|
|
12022
12263
|
case ":publish.methods?": {
|
|
@@ -12044,9 +12285,11 @@ function _schemaDomainRecord(domain) {
|
|
|
12044
12285
|
}
|
|
12045
12286
|
}
|
|
12046
12287
|
},
|
|
12047
|
-
|
|
12048
|
-
|
|
12049
|
-
|
|
12288
|
+
schemas: [
|
|
12289
|
+
{
|
|
12290
|
+
$ref: "#/components/schemas/PublishDomainMethodsRecordBase"
|
|
12291
|
+
}
|
|
12292
|
+
]
|
|
12050
12293
|
};
|
|
12051
12294
|
}
|
|
12052
12295
|
case ":publish.accepts": {
|
|
@@ -12063,9 +12306,11 @@ function _schemaDomainRecord(domain) {
|
|
|
12063
12306
|
}
|
|
12064
12307
|
}
|
|
12065
12308
|
},
|
|
12066
|
-
|
|
12067
|
-
|
|
12068
|
-
|
|
12309
|
+
schemas: [
|
|
12310
|
+
{
|
|
12311
|
+
$ref: "#/components/schemas/PublishDomainAcceptsProvidedRecordBase"
|
|
12312
|
+
}
|
|
12313
|
+
]
|
|
12069
12314
|
};
|
|
12070
12315
|
}
|
|
12071
12316
|
case ":published": {
|
|
@@ -12126,9 +12371,11 @@ function _schemaDomainRecord(domain) {
|
|
|
12126
12371
|
}
|
|
12127
12372
|
}
|
|
12128
12373
|
},
|
|
12129
|
-
|
|
12130
|
-
|
|
12131
|
-
|
|
12374
|
+
schemas: [
|
|
12375
|
+
{
|
|
12376
|
+
$ref: "#/components/schemas/PublishedRecord"
|
|
12377
|
+
}
|
|
12378
|
+
]
|
|
12132
12379
|
};
|
|
12133
12380
|
}
|
|
12134
12381
|
case ":render-preset": {
|
|
@@ -12285,9 +12532,11 @@ function _schemaDomainRecord(domain) {
|
|
|
12285
12532
|
}
|
|
12286
12533
|
}
|
|
12287
12534
|
},
|
|
12288
|
-
|
|
12289
|
-
|
|
12290
|
-
|
|
12535
|
+
schemas: [
|
|
12536
|
+
{
|
|
12537
|
+
$ref: "#/components/schemas/RenderPresetObject"
|
|
12538
|
+
}
|
|
12539
|
+
]
|
|
12291
12540
|
};
|
|
12292
12541
|
}
|
|
12293
12542
|
case ":render.stats?": {
|
|
@@ -13022,9 +13271,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13022
13271
|
}
|
|
13023
13272
|
}
|
|
13024
13273
|
},
|
|
13025
|
-
|
|
13026
|
-
|
|
13027
|
-
|
|
13274
|
+
schemas: [
|
|
13275
|
+
{
|
|
13276
|
+
$ref: "#/components/schemas/RenderDomainStatsRecord"
|
|
13277
|
+
}
|
|
13278
|
+
]
|
|
13028
13279
|
};
|
|
13029
13280
|
}
|
|
13030
13281
|
case ":render.query?": {
|
|
@@ -13367,9 +13618,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13367
13618
|
}
|
|
13368
13619
|
}
|
|
13369
13620
|
},
|
|
13370
|
-
|
|
13371
|
-
|
|
13372
|
-
|
|
13621
|
+
schemas: [
|
|
13622
|
+
{
|
|
13623
|
+
$ref: "#/components/schemas/RenderDomainQueryRecord"
|
|
13624
|
+
}
|
|
13625
|
+
]
|
|
13373
13626
|
};
|
|
13374
13627
|
}
|
|
13375
13628
|
case ":render.result?": {
|
|
@@ -13413,9 +13666,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13413
13666
|
}
|
|
13414
13667
|
}
|
|
13415
13668
|
},
|
|
13416
|
-
|
|
13417
|
-
|
|
13418
|
-
|
|
13669
|
+
schemas: [
|
|
13670
|
+
{
|
|
13671
|
+
$ref: "#/components/schemas/RenderDomainResultRecord"
|
|
13672
|
+
}
|
|
13673
|
+
]
|
|
13419
13674
|
};
|
|
13420
13675
|
}
|
|
13421
13676
|
case ":render.schedulers?": {
|
|
@@ -13436,9 +13691,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13436
13691
|
}
|
|
13437
13692
|
}
|
|
13438
13693
|
},
|
|
13439
|
-
|
|
13440
|
-
|
|
13441
|
-
|
|
13694
|
+
schemas: [
|
|
13695
|
+
{
|
|
13696
|
+
$ref: "#/components/schemas/RenderDomainSchedulersRecord"
|
|
13697
|
+
}
|
|
13698
|
+
]
|
|
13442
13699
|
};
|
|
13443
13700
|
}
|
|
13444
13701
|
case ":revs?": {
|
|
@@ -13460,9 +13717,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13460
13717
|
}
|
|
13461
13718
|
}
|
|
13462
13719
|
},
|
|
13463
|
-
|
|
13464
|
-
|
|
13465
|
-
|
|
13720
|
+
schemas: [
|
|
13721
|
+
{
|
|
13722
|
+
$ref: "#/components/schemas/RevsRecord"
|
|
13723
|
+
}
|
|
13724
|
+
]
|
|
13466
13725
|
};
|
|
13467
13726
|
}
|
|
13468
13727
|
case ":role.tags": {
|
|
@@ -13486,9 +13745,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13486
13745
|
}
|
|
13487
13746
|
}
|
|
13488
13747
|
},
|
|
13489
|
-
|
|
13490
|
-
|
|
13491
|
-
|
|
13748
|
+
schemas: [
|
|
13749
|
+
{
|
|
13750
|
+
$ref: "#/components/schemas/RoleTagsRecord"
|
|
13751
|
+
}
|
|
13752
|
+
]
|
|
13492
13753
|
};
|
|
13493
13754
|
}
|
|
13494
13755
|
case ":script": {
|
|
@@ -13526,9 +13787,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13526
13787
|
}
|
|
13527
13788
|
}
|
|
13528
13789
|
},
|
|
13529
|
-
|
|
13530
|
-
|
|
13531
|
-
|
|
13790
|
+
schemas: [
|
|
13791
|
+
{
|
|
13792
|
+
$ref: "#/components/schemas/ScriptRecord"
|
|
13793
|
+
}
|
|
13794
|
+
]
|
|
13532
13795
|
};
|
|
13533
13796
|
}
|
|
13534
13797
|
case ":script?": {
|
|
@@ -13668,9 +13931,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13668
13931
|
}
|
|
13669
13932
|
}
|
|
13670
13933
|
},
|
|
13671
|
-
|
|
13672
|
-
|
|
13673
|
-
|
|
13934
|
+
schemas: [
|
|
13935
|
+
{
|
|
13936
|
+
$ref: "#/components/schemas/ScriptEditorStateRecord"
|
|
13937
|
+
}
|
|
13938
|
+
]
|
|
13674
13939
|
};
|
|
13675
13940
|
}
|
|
13676
13941
|
case ":script.revisions?": {
|
|
@@ -13709,9 +13974,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13709
13974
|
}
|
|
13710
13975
|
}
|
|
13711
13976
|
},
|
|
13712
|
-
|
|
13713
|
-
|
|
13714
|
-
|
|
13977
|
+
schemas: [
|
|
13978
|
+
{
|
|
13979
|
+
$ref: "#/components/schemas/ScriptRevisionsRecord"
|
|
13980
|
+
}
|
|
13981
|
+
]
|
|
13715
13982
|
};
|
|
13716
13983
|
}
|
|
13717
13984
|
case ":script.revision": {
|
|
@@ -13744,9 +14011,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13744
14011
|
}
|
|
13745
14012
|
}
|
|
13746
14013
|
},
|
|
13747
|
-
|
|
13748
|
-
|
|
13749
|
-
|
|
14014
|
+
schemas: [
|
|
14015
|
+
{
|
|
14016
|
+
$ref: "#/components/schemas/ScriptRevisionRecord"
|
|
14017
|
+
}
|
|
14018
|
+
]
|
|
13750
14019
|
};
|
|
13751
14020
|
}
|
|
13752
14021
|
case ":script.revision?": {
|
|
@@ -13898,9 +14167,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13898
14167
|
}
|
|
13899
14168
|
}
|
|
13900
14169
|
},
|
|
13901
|
-
|
|
13902
|
-
|
|
13903
|
-
|
|
14170
|
+
schemas: [
|
|
14171
|
+
{
|
|
14172
|
+
$ref: "#/components/schemas/ScriptEditorStateRevisionRecord"
|
|
14173
|
+
}
|
|
14174
|
+
]
|
|
13904
14175
|
};
|
|
13905
14176
|
}
|
|
13906
14177
|
case ":script.content?": {
|
|
@@ -14204,9 +14475,11 @@ function _schemaDomainRecord(domain) {
|
|
|
14204
14475
|
}
|
|
14205
14476
|
}
|
|
14206
14477
|
},
|
|
14207
|
-
|
|
14208
|
-
|
|
14209
|
-
|
|
14478
|
+
schemas: [
|
|
14479
|
+
{
|
|
14480
|
+
$ref: "#/components/schemas/ScriptContentRecord"
|
|
14481
|
+
}
|
|
14482
|
+
]
|
|
14210
14483
|
};
|
|
14211
14484
|
}
|
|
14212
14485
|
case ":script.text?": {
|
|
@@ -14231,9 +14504,11 @@ function _schemaDomainRecord(domain) {
|
|
|
14231
14504
|
}
|
|
14232
14505
|
}
|
|
14233
14506
|
},
|
|
14234
|
-
|
|
14235
|
-
|
|
14236
|
-
|
|
14507
|
+
schemas: [
|
|
14508
|
+
{
|
|
14509
|
+
$ref: "#/components/schemas/ScriptTextRecord"
|
|
14510
|
+
}
|
|
14511
|
+
]
|
|
14237
14512
|
};
|
|
14238
14513
|
}
|
|
14239
14514
|
case ":script.children": {
|
|
@@ -14256,9 +14531,11 @@ function _schemaDomainRecord(domain) {
|
|
|
14256
14531
|
}
|
|
14257
14532
|
}
|
|
14258
14533
|
},
|
|
14259
|
-
|
|
14260
|
-
|
|
14261
|
-
|
|
14534
|
+
schemas: [
|
|
14535
|
+
{
|
|
14536
|
+
$ref: "#/components/schemas/ScriptChildrenRecord"
|
|
14537
|
+
}
|
|
14538
|
+
]
|
|
14262
14539
|
};
|
|
14263
14540
|
}
|
|
14264
14541
|
case ":search": {
|
|
@@ -14428,9 +14705,11 @@ function _schemaDomainRecord(domain) {
|
|
|
14428
14705
|
}
|
|
14429
14706
|
}
|
|
14430
14707
|
},
|
|
14431
|
-
|
|
14432
|
-
|
|
14433
|
-
|
|
14708
|
+
schemas: [
|
|
14709
|
+
{
|
|
14710
|
+
$ref: "#/components/schemas/SearchRecord"
|
|
14711
|
+
}
|
|
14712
|
+
]
|
|
14434
14713
|
};
|
|
14435
14714
|
}
|
|
14436
14715
|
case ":search?": {
|
|
@@ -14461,9 +14740,11 @@ function _schemaDomainRecord(domain) {
|
|
|
14461
14740
|
}
|
|
14462
14741
|
}
|
|
14463
14742
|
},
|
|
14464
|
-
|
|
14465
|
-
|
|
14466
|
-
|
|
14743
|
+
schemas: [
|
|
14744
|
+
{
|
|
14745
|
+
$ref: "#/components/schemas/SearchRecordProvided"
|
|
14746
|
+
}
|
|
14747
|
+
]
|
|
14467
14748
|
};
|
|
14468
14749
|
}
|
|
14469
14750
|
case ":search.conditions": {
|
|
@@ -14486,9 +14767,11 @@ function _schemaDomainRecord(domain) {
|
|
|
14486
14767
|
}
|
|
14487
14768
|
}
|
|
14488
14769
|
},
|
|
14489
|
-
|
|
14490
|
-
|
|
14491
|
-
|
|
14770
|
+
schemas: [
|
|
14771
|
+
{
|
|
14772
|
+
$ref: "#/components/schemas/SearchDomainConditionsRecord"
|
|
14773
|
+
}
|
|
14774
|
+
]
|
|
14492
14775
|
};
|
|
14493
14776
|
}
|
|
14494
14777
|
case ":search.visibleColumnKeys": {
|
|
@@ -14511,9 +14794,11 @@ function _schemaDomainRecord(domain) {
|
|
|
14511
14794
|
}
|
|
14512
14795
|
}
|
|
14513
14796
|
},
|
|
14514
|
-
|
|
14515
|
-
|
|
14516
|
-
|
|
14797
|
+
schemas: [
|
|
14798
|
+
{
|
|
14799
|
+
$ref: "#/components/schemas/SearchDomainVisibleColumnKeysRecord"
|
|
14800
|
+
}
|
|
14801
|
+
]
|
|
14517
14802
|
};
|
|
14518
14803
|
}
|
|
14519
14804
|
case ":settings": {
|
|
@@ -15926,6 +16211,19 @@ function _schemaDomainRecord(domain) {
|
|
|
15926
16211
|
}
|
|
15927
16212
|
},
|
|
15928
16213
|
required: []
|
|
16214
|
+
},
|
|
16215
|
+
performance: {
|
|
16216
|
+
type: "object",
|
|
16217
|
+
properties: {
|
|
16218
|
+
ignoredMessages: {
|
|
16219
|
+
type: "array",
|
|
16220
|
+
items: {
|
|
16221
|
+
type: "string"
|
|
16222
|
+
},
|
|
16223
|
+
description: "List of message identifiers to ignore in overall health aggregation (format: \"serviceName:messageText\")"
|
|
16224
|
+
}
|
|
16225
|
+
},
|
|
16226
|
+
required: []
|
|
15929
16227
|
}
|
|
15930
16228
|
},
|
|
15931
16229
|
required: []
|
|
@@ -16105,9 +16403,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16105
16403
|
}
|
|
16106
16404
|
}
|
|
16107
16405
|
},
|
|
16108
|
-
|
|
16109
|
-
|
|
16110
|
-
|
|
16406
|
+
schemas: [
|
|
16407
|
+
{
|
|
16408
|
+
$ref: "#/components/schemas/Settings"
|
|
16409
|
+
}
|
|
16410
|
+
]
|
|
16111
16411
|
};
|
|
16112
16412
|
}
|
|
16113
16413
|
case ":settings.node": {
|
|
@@ -16137,9 +16437,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16137
16437
|
}
|
|
16138
16438
|
}
|
|
16139
16439
|
},
|
|
16140
|
-
|
|
16141
|
-
|
|
16142
|
-
|
|
16440
|
+
schemas: [
|
|
16441
|
+
{
|
|
16442
|
+
$ref: "#/components/schemas/SettingsNodeRecord"
|
|
16443
|
+
}
|
|
16444
|
+
]
|
|
16143
16445
|
};
|
|
16144
16446
|
}
|
|
16145
16447
|
case ":shotbox": {
|
|
@@ -16295,9 +16597,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16295
16597
|
}
|
|
16296
16598
|
}
|
|
16297
16599
|
},
|
|
16298
|
-
|
|
16299
|
-
|
|
16300
|
-
|
|
16600
|
+
schemas: [
|
|
16601
|
+
{
|
|
16602
|
+
$ref: "#/components/schemas/ShotboxDomainRecord"
|
|
16603
|
+
}
|
|
16604
|
+
]
|
|
16301
16605
|
};
|
|
16302
16606
|
}
|
|
16303
16607
|
case ":storyboard": {
|
|
@@ -16313,9 +16617,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16313
16617
|
}
|
|
16314
16618
|
}
|
|
16315
16619
|
},
|
|
16316
|
-
|
|
16317
|
-
|
|
16318
|
-
|
|
16620
|
+
schemas: [
|
|
16621
|
+
{
|
|
16622
|
+
$ref: "#/components/schemas/StoryboardDomainRecord"
|
|
16623
|
+
}
|
|
16624
|
+
]
|
|
16319
16625
|
};
|
|
16320
16626
|
}
|
|
16321
16627
|
case ":storyboard.pipelines": {
|
|
@@ -16337,9 +16643,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16337
16643
|
}
|
|
16338
16644
|
}
|
|
16339
16645
|
},
|
|
16340
|
-
|
|
16341
|
-
|
|
16342
|
-
|
|
16646
|
+
schemas: [
|
|
16647
|
+
{
|
|
16648
|
+
$ref: "#/components/schemas/StoryboardDomainPipelinesRecord"
|
|
16649
|
+
}
|
|
16650
|
+
]
|
|
16343
16651
|
};
|
|
16344
16652
|
}
|
|
16345
16653
|
case ":storyboard.descendants?": {
|
|
@@ -16361,9 +16669,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16361
16669
|
}
|
|
16362
16670
|
}
|
|
16363
16671
|
},
|
|
16364
|
-
|
|
16365
|
-
|
|
16366
|
-
|
|
16672
|
+
schemas: [
|
|
16673
|
+
{
|
|
16674
|
+
$ref: "#/components/schemas/StoryboardDescendantsRecord"
|
|
16675
|
+
}
|
|
16676
|
+
]
|
|
16367
16677
|
};
|
|
16368
16678
|
}
|
|
16369
16679
|
case ":storyboard.ancestors?": {
|
|
@@ -16385,9 +16695,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16385
16695
|
}
|
|
16386
16696
|
}
|
|
16387
16697
|
},
|
|
16388
|
-
|
|
16389
|
-
|
|
16390
|
-
|
|
16698
|
+
schemas: [
|
|
16699
|
+
{
|
|
16700
|
+
$ref: "#/components/schemas/StoryboardAncestorsRecord"
|
|
16701
|
+
}
|
|
16702
|
+
]
|
|
16391
16703
|
};
|
|
16392
16704
|
}
|
|
16393
16705
|
case ":subtitle-style": {
|
|
@@ -16496,9 +16808,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16496
16808
|
}
|
|
16497
16809
|
}
|
|
16498
16810
|
},
|
|
16499
|
-
|
|
16500
|
-
|
|
16501
|
-
|
|
16811
|
+
schemas: [
|
|
16812
|
+
{
|
|
16813
|
+
$ref: "#/components/schemas/SubtitleStyleDomainRecord"
|
|
16814
|
+
}
|
|
16815
|
+
]
|
|
16502
16816
|
};
|
|
16503
16817
|
}
|
|
16504
16818
|
case ":subtitle": {
|
|
@@ -16539,9 +16853,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16539
16853
|
}
|
|
16540
16854
|
}
|
|
16541
16855
|
},
|
|
16542
|
-
|
|
16543
|
-
|
|
16544
|
-
|
|
16856
|
+
schemas: [
|
|
16857
|
+
{
|
|
16858
|
+
$ref: "#/components/schemas/SubtitleDomainRecord"
|
|
16859
|
+
}
|
|
16860
|
+
]
|
|
16545
16861
|
};
|
|
16546
16862
|
}
|
|
16547
16863
|
case ":template": {
|
|
@@ -16587,9 +16903,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16587
16903
|
}
|
|
16588
16904
|
}
|
|
16589
16905
|
},
|
|
16590
|
-
|
|
16591
|
-
|
|
16592
|
-
|
|
16906
|
+
schemas: [
|
|
16907
|
+
{
|
|
16908
|
+
$ref: "#/components/schemas/TemplateRecord"
|
|
16909
|
+
}
|
|
16910
|
+
]
|
|
16593
16911
|
};
|
|
16594
16912
|
}
|
|
16595
16913
|
case ":_user-notification-status": {
|
|
@@ -16657,9 +16975,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16657
16975
|
}
|
|
16658
16976
|
}
|
|
16659
16977
|
},
|
|
16660
|
-
|
|
16661
|
-
|
|
16662
|
-
|
|
16978
|
+
schemas: [
|
|
16979
|
+
{
|
|
16980
|
+
$ref: "#/components/schemas/UserNotificationStatusDomainRecord"
|
|
16981
|
+
}
|
|
16982
|
+
]
|
|
16663
16983
|
};
|
|
16664
16984
|
}
|
|
16665
16985
|
case ":user-notification": {
|
|
@@ -16967,9 +17287,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16967
17287
|
}
|
|
16968
17288
|
}
|
|
16969
17289
|
},
|
|
16970
|
-
|
|
16971
|
-
|
|
16972
|
-
|
|
17290
|
+
schemas: [
|
|
17291
|
+
{
|
|
17292
|
+
$ref: "#/components/schemas/UserNotificationRecord"
|
|
17293
|
+
}
|
|
17294
|
+
]
|
|
16973
17295
|
};
|
|
16974
17296
|
}
|
|
16975
17297
|
case ":user-notification.readAt": {
|
|
@@ -16989,9 +17311,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16989
17311
|
}
|
|
16990
17312
|
}
|
|
16991
17313
|
},
|
|
16992
|
-
|
|
16993
|
-
|
|
16994
|
-
|
|
17314
|
+
schemas: [
|
|
17315
|
+
{
|
|
17316
|
+
$ref: "#/components/schemas/UserNotificationDomainReadAtRecord"
|
|
17317
|
+
}
|
|
17318
|
+
]
|
|
16995
17319
|
};
|
|
16996
17320
|
}
|
|
16997
17321
|
case ":user": {
|
|
@@ -17023,9 +17347,11 @@ function _schemaDomainRecord(domain) {
|
|
|
17023
17347
|
}
|
|
17024
17348
|
}
|
|
17025
17349
|
},
|
|
17026
|
-
|
|
17027
|
-
|
|
17028
|
-
|
|
17350
|
+
schemas: [
|
|
17351
|
+
{
|
|
17352
|
+
$ref: "#/components/schemas/UserDomainRecord"
|
|
17353
|
+
}
|
|
17354
|
+
]
|
|
17029
17355
|
};
|
|
17030
17356
|
}
|
|
17031
17357
|
case ":user.latestSeenNotification": {
|
|
@@ -17044,9 +17370,11 @@ function _schemaDomainRecord(domain) {
|
|
|
17044
17370
|
}
|
|
17045
17371
|
}
|
|
17046
17372
|
},
|
|
17047
|
-
|
|
17048
|
-
|
|
17049
|
-
|
|
17373
|
+
schemas: [
|
|
17374
|
+
{
|
|
17375
|
+
$ref: "#/components/schemas/UserDomainLatestSeenNotificationRecord"
|
|
17376
|
+
}
|
|
17377
|
+
]
|
|
17050
17378
|
};
|
|
17051
17379
|
}
|
|
17052
17380
|
case ":user.receivedNotifications?": {
|
|
@@ -17069,9 +17397,11 @@ function _schemaDomainRecord(domain) {
|
|
|
17069
17397
|
}
|
|
17070
17398
|
}
|
|
17071
17399
|
},
|
|
17072
|
-
|
|
17073
|
-
|
|
17074
|
-
|
|
17400
|
+
schemas: [
|
|
17401
|
+
{
|
|
17402
|
+
$ref: "#/components/schemas/UserDomainReceivedNotificationsProvidedRecord"
|
|
17403
|
+
}
|
|
17404
|
+
]
|
|
17075
17405
|
};
|
|
17076
17406
|
}
|
|
17077
17407
|
case ":user.unseenNotifications?": {
|
|
@@ -17093,9 +17423,11 @@ function _schemaDomainRecord(domain) {
|
|
|
17093
17423
|
}
|
|
17094
17424
|
}
|
|
17095
17425
|
},
|
|
17096
|
-
|
|
17097
|
-
|
|
17098
|
-
|
|
17426
|
+
schemas: [
|
|
17427
|
+
{
|
|
17428
|
+
$ref: "#/components/schemas/UserDomainUnseenNotificationsRecord"
|
|
17429
|
+
}
|
|
17430
|
+
]
|
|
17099
17431
|
};
|
|
17100
17432
|
}
|
|
17101
17433
|
case ":username?": {
|
|
@@ -17117,9 +17449,11 @@ function _schemaDomainRecord(domain) {
|
|
|
17117
17449
|
}
|
|
17118
17450
|
}
|
|
17119
17451
|
},
|
|
17120
|
-
|
|
17121
|
-
|
|
17122
|
-
|
|
17452
|
+
schemas: [
|
|
17453
|
+
{
|
|
17454
|
+
$ref: "#/components/schemas/UsernameDomainRecord"
|
|
17455
|
+
}
|
|
17456
|
+
]
|
|
17123
17457
|
};
|
|
17124
17458
|
}
|
|
17125
17459
|
default: throw new Error("Unrecognized domain \"" + domain + "\"");
|