@nxtedition/types 23.0.63 → 23.0.66
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 +24 -10
- package/dist/records/domains/media.d.ts +6 -0
- package/dist/records/domains/publish/facebook.d.ts +1 -2
- package/dist/records/exact/media.d.ts +2 -0
- package/dist/records/exact/monitor.d.ts +9 -8
- package/dist/records/validate/assert-guard.js +291 -255
- package/dist/records/validate/assert.js +292 -255
- package/dist/records/validate/is.js +19 -18
- package/dist/records/validate/schemas.d.ts +6 -9
- package/dist/records/validate/schemas.js +918 -578
- package/dist/records/validate/stringify.js +32 -31
- package/dist/records/validate/utils.js +1 -1
- package/dist/records/validate/validate-equals.js +374 -332
- package/dist/records/validate/validate.js +290 -246
- 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": {
|
|
@@ -1360,6 +1384,9 @@ function _schemaExactRecord(name) {
|
|
|
1360
1384
|
MediaSubtitlesRecord: {
|
|
1361
1385
|
type: "object",
|
|
1362
1386
|
properties: {
|
|
1387
|
+
defaultLanguage: {
|
|
1388
|
+
type: "string"
|
|
1389
|
+
},
|
|
1363
1390
|
languages: {
|
|
1364
1391
|
$ref: "#/components/schemas/Recordstringstring"
|
|
1365
1392
|
},
|
|
@@ -1417,9 +1444,11 @@ function _schemaExactRecord(name) {
|
|
|
1417
1444
|
}
|
|
1418
1445
|
}
|
|
1419
1446
|
},
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1447
|
+
schemas: [
|
|
1448
|
+
{
|
|
1449
|
+
$ref: "#/components/schemas/MediaSubtitlesRecord"
|
|
1450
|
+
}
|
|
1451
|
+
]
|
|
1423
1452
|
};
|
|
1424
1453
|
}
|
|
1425
1454
|
case "media.subtitles?": {
|
|
@@ -1430,6 +1459,9 @@ function _schemaExactRecord(name) {
|
|
|
1430
1459
|
MediaSubtitlesProvidedRecord: {
|
|
1431
1460
|
type: "object",
|
|
1432
1461
|
properties: {
|
|
1462
|
+
defaultLanguage: {
|
|
1463
|
+
type: "string"
|
|
1464
|
+
},
|
|
1433
1465
|
languages: {
|
|
1434
1466
|
$ref: "#/components/schemas/Recordstringstring"
|
|
1435
1467
|
},
|
|
@@ -1487,9 +1519,11 @@ function _schemaExactRecord(name) {
|
|
|
1487
1519
|
}
|
|
1488
1520
|
}
|
|
1489
1521
|
},
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1522
|
+
schemas: [
|
|
1523
|
+
{
|
|
1524
|
+
$ref: "#/components/schemas/MediaSubtitlesProvidedRecord"
|
|
1525
|
+
}
|
|
1526
|
+
]
|
|
1493
1527
|
};
|
|
1494
1528
|
}
|
|
1495
1529
|
case "media.transcribe": {
|
|
@@ -1703,9 +1737,11 @@ function _schemaExactRecord(name) {
|
|
|
1703
1737
|
}
|
|
1704
1738
|
}
|
|
1705
1739
|
},
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1740
|
+
schemas: [
|
|
1741
|
+
{
|
|
1742
|
+
$ref: "#/components/schemas/MediaTranscribeRecord"
|
|
1743
|
+
}
|
|
1744
|
+
]
|
|
1709
1745
|
};
|
|
1710
1746
|
}
|
|
1711
1747
|
case "media.transcribe?": {
|
|
@@ -1919,9 +1955,11 @@ function _schemaExactRecord(name) {
|
|
|
1919
1955
|
}
|
|
1920
1956
|
}
|
|
1921
1957
|
},
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1958
|
+
schemas: [
|
|
1959
|
+
{
|
|
1960
|
+
$ref: "#/components/schemas/MediaTranscribeProvidedRecord"
|
|
1961
|
+
}
|
|
1962
|
+
]
|
|
1925
1963
|
};
|
|
1926
1964
|
}
|
|
1927
1965
|
case "media.fonts?": {
|
|
@@ -2006,9 +2044,11 @@ function _schemaExactRecord(name) {
|
|
|
2006
2044
|
}
|
|
2007
2045
|
}
|
|
2008
2046
|
},
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2047
|
+
schemas: [
|
|
2048
|
+
{
|
|
2049
|
+
$ref: "#/components/schemas/MediaFonts"
|
|
2050
|
+
}
|
|
2051
|
+
]
|
|
2012
2052
|
};
|
|
2013
2053
|
}
|
|
2014
2054
|
case "media.consolidate": {
|
|
@@ -2200,9 +2240,11 @@ function _schemaExactRecord(name) {
|
|
|
2200
2240
|
}
|
|
2201
2241
|
}
|
|
2202
2242
|
},
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2243
|
+
schemas: [
|
|
2244
|
+
{
|
|
2245
|
+
$ref: "#/components/schemas/MediaConsolidateRecord"
|
|
2246
|
+
}
|
|
2247
|
+
]
|
|
2206
2248
|
};
|
|
2207
2249
|
}
|
|
2208
2250
|
case "asset-daemon": {
|
|
@@ -2221,9 +2263,11 @@ function _schemaExactRecord(name) {
|
|
|
2221
2263
|
}
|
|
2222
2264
|
}
|
|
2223
2265
|
},
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2266
|
+
schemas: [
|
|
2267
|
+
{
|
|
2268
|
+
$ref: "#/components/schemas/AssetDaemonRecord"
|
|
2269
|
+
}
|
|
2270
|
+
]
|
|
2227
2271
|
};
|
|
2228
2272
|
}
|
|
2229
2273
|
case "asset-daemon:user-notify.state": {
|
|
@@ -2255,9 +2299,11 @@ function _schemaExactRecord(name) {
|
|
|
2255
2299
|
}
|
|
2256
2300
|
}
|
|
2257
2301
|
},
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2302
|
+
schemas: [
|
|
2303
|
+
{
|
|
2304
|
+
$ref: "#/components/schemas/AssetDaemonUserNotifyStateRecord"
|
|
2305
|
+
}
|
|
2306
|
+
]
|
|
2261
2307
|
};
|
|
2262
2308
|
}
|
|
2263
2309
|
case "deepstream-replicator.stats?": {
|
|
@@ -2335,17 +2381,18 @@ function _schemaExactRecord(name) {
|
|
|
2335
2381
|
}
|
|
2336
2382
|
}
|
|
2337
2383
|
},
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2384
|
+
schemas: [
|
|
2385
|
+
{
|
|
2386
|
+
$ref: "#/components/schemas/DeepstreamReplicatorStatsRecord"
|
|
2387
|
+
}
|
|
2388
|
+
]
|
|
2341
2389
|
};
|
|
2342
2390
|
}
|
|
2343
2391
|
default: throw new Error("Unrecognized name \"" + name + "\"");
|
|
2344
2392
|
}
|
|
2345
2393
|
}
|
|
2346
2394
|
}
|
|
2347
|
-
|
|
2348
|
-
function _schemaDomainRecord(domain) {
|
|
2395
|
+
function _schemasDomainRecord(domain) {
|
|
2349
2396
|
{
|
|
2350
2397
|
switch (domain) {
|
|
2351
2398
|
case ":asset.title?": {
|
|
@@ -2371,9 +2418,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2371
2418
|
}
|
|
2372
2419
|
}
|
|
2373
2420
|
},
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2421
|
+
schemas: [
|
|
2422
|
+
{
|
|
2423
|
+
$ref: "#/components/schemas/AssetTitleProvidedRecord"
|
|
2424
|
+
}
|
|
2425
|
+
]
|
|
2377
2426
|
};
|
|
2378
2427
|
}
|
|
2379
2428
|
case ":asset.rawTypes?": {
|
|
@@ -2395,9 +2444,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2395
2444
|
}
|
|
2396
2445
|
}
|
|
2397
2446
|
},
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2447
|
+
schemas: [
|
|
2448
|
+
{
|
|
2449
|
+
$ref: "#/components/schemas/AssetRawTypesProvidedRecord"
|
|
2450
|
+
}
|
|
2451
|
+
]
|
|
2401
2452
|
};
|
|
2402
2453
|
}
|
|
2403
2454
|
case ":asset.types?": {
|
|
@@ -2419,9 +2470,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2419
2470
|
}
|
|
2420
2471
|
}
|
|
2421
2472
|
},
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2473
|
+
schemas: [
|
|
2474
|
+
{
|
|
2475
|
+
$ref: "#/components/schemas/AssetTypesProvidedRecord"
|
|
2476
|
+
}
|
|
2477
|
+
]
|
|
2425
2478
|
};
|
|
2426
2479
|
}
|
|
2427
2480
|
case ":asset.assignees?": {
|
|
@@ -2443,9 +2496,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2443
2496
|
}
|
|
2444
2497
|
}
|
|
2445
2498
|
},
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2499
|
+
schemas: [
|
|
2500
|
+
{
|
|
2501
|
+
$ref: "#/components/schemas/AssetAssigneesProvidedRecord"
|
|
2502
|
+
}
|
|
2503
|
+
]
|
|
2449
2504
|
};
|
|
2450
2505
|
}
|
|
2451
2506
|
case ":asset.refs?": {
|
|
@@ -2486,9 +2541,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2486
2541
|
}
|
|
2487
2542
|
}
|
|
2488
2543
|
},
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2544
|
+
schemas: [
|
|
2545
|
+
{
|
|
2546
|
+
$ref: "#/components/schemas/AssetRefsProvidedRecord"
|
|
2547
|
+
}
|
|
2548
|
+
]
|
|
2492
2549
|
};
|
|
2493
2550
|
}
|
|
2494
2551
|
case ":asset.tags?": {
|
|
@@ -2510,9 +2567,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2510
2567
|
}
|
|
2511
2568
|
}
|
|
2512
2569
|
},
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2570
|
+
schemas: [
|
|
2571
|
+
{
|
|
2572
|
+
$ref: "#/components/schemas/AssetTagsProvidedRecord"
|
|
2573
|
+
}
|
|
2574
|
+
]
|
|
2516
2575
|
};
|
|
2517
2576
|
}
|
|
2518
2577
|
case ":asset.fileRefs?": {
|
|
@@ -2534,9 +2593,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2534
2593
|
}
|
|
2535
2594
|
}
|
|
2536
2595
|
},
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2596
|
+
schemas: [
|
|
2597
|
+
{
|
|
2598
|
+
$ref: "#/components/schemas/AssetFileRefsProvidedRecord"
|
|
2599
|
+
}
|
|
2600
|
+
]
|
|
2540
2601
|
};
|
|
2541
2602
|
}
|
|
2542
2603
|
case ":asset.created?": {
|
|
@@ -2561,9 +2622,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2561
2622
|
}
|
|
2562
2623
|
}
|
|
2563
2624
|
},
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2625
|
+
schemas: [
|
|
2626
|
+
{
|
|
2627
|
+
$ref: "#/components/schemas/AssetCreatedProvidedRecord"
|
|
2628
|
+
}
|
|
2629
|
+
]
|
|
2567
2630
|
};
|
|
2568
2631
|
}
|
|
2569
2632
|
case ":asset.modified?": {
|
|
@@ -2591,9 +2654,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2591
2654
|
}
|
|
2592
2655
|
}
|
|
2593
2656
|
},
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2657
|
+
schemas: [
|
|
2658
|
+
{
|
|
2659
|
+
$ref: "#/components/schemas/AssetModifiedProvidedRecord"
|
|
2660
|
+
}
|
|
2661
|
+
]
|
|
2597
2662
|
};
|
|
2598
2663
|
}
|
|
2599
2664
|
case ":asset.status?": {
|
|
@@ -2654,9 +2719,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2654
2719
|
}
|
|
2655
2720
|
}
|
|
2656
2721
|
},
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2722
|
+
schemas: [
|
|
2723
|
+
{
|
|
2724
|
+
$ref: "#/components/schemas/AssetDomainStatusProvidedRecord"
|
|
2725
|
+
}
|
|
2726
|
+
]
|
|
2660
2727
|
};
|
|
2661
2728
|
}
|
|
2662
2729
|
case ":asset.icon?": {
|
|
@@ -2682,9 +2749,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2682
2749
|
}
|
|
2683
2750
|
}
|
|
2684
2751
|
},
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2752
|
+
schemas: [
|
|
2753
|
+
{
|
|
2754
|
+
$ref: "#/components/schemas/AssetDomainIconProvidedRecord"
|
|
2755
|
+
}
|
|
2756
|
+
]
|
|
2688
2757
|
};
|
|
2689
2758
|
}
|
|
2690
2759
|
case ":asset.deadlines?": {
|
|
@@ -2706,9 +2775,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2706
2775
|
}
|
|
2707
2776
|
}
|
|
2708
2777
|
},
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2778
|
+
schemas: [
|
|
2779
|
+
{
|
|
2780
|
+
$ref: "#/components/schemas/AssetDomainDeadlinesProvidedRecord"
|
|
2781
|
+
}
|
|
2782
|
+
]
|
|
2712
2783
|
};
|
|
2713
2784
|
}
|
|
2714
2785
|
case ":asset.publish?": {
|
|
@@ -2730,9 +2801,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2730
2801
|
}
|
|
2731
2802
|
}
|
|
2732
2803
|
},
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2804
|
+
schemas: [
|
|
2805
|
+
{
|
|
2806
|
+
$ref: "#/components/schemas/AssetDomainPublishProvidedRecord"
|
|
2807
|
+
}
|
|
2808
|
+
]
|
|
2736
2809
|
};
|
|
2737
2810
|
}
|
|
2738
2811
|
case ":asset.published?": {
|
|
@@ -2750,9 +2823,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2750
2823
|
}
|
|
2751
2824
|
}
|
|
2752
2825
|
},
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2826
|
+
schemas: [
|
|
2827
|
+
{
|
|
2828
|
+
$ref: "#/components/schemas/AssetDomainPublishedProvidedRecord"
|
|
2829
|
+
}
|
|
2830
|
+
]
|
|
2756
2831
|
};
|
|
2757
2832
|
}
|
|
2758
2833
|
case ":asset.duration?": {
|
|
@@ -2778,9 +2853,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2778
2853
|
}
|
|
2779
2854
|
}
|
|
2780
2855
|
},
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2856
|
+
schemas: [
|
|
2857
|
+
{
|
|
2858
|
+
$ref: "#/components/schemas/AssetDomainDurationProvidedRecord"
|
|
2859
|
+
}
|
|
2860
|
+
]
|
|
2784
2861
|
};
|
|
2785
2862
|
}
|
|
2786
2863
|
case ":asset.locations?": {
|
|
@@ -2814,9 +2891,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2814
2891
|
}
|
|
2815
2892
|
}
|
|
2816
2893
|
},
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2894
|
+
schemas: [
|
|
2895
|
+
{
|
|
2896
|
+
$ref: "#/components/schemas/AssetDomainLocationsProvidedRecord"
|
|
2897
|
+
}
|
|
2898
|
+
]
|
|
2820
2899
|
};
|
|
2821
2900
|
}
|
|
2822
2901
|
case ":asset.controllers?": {
|
|
@@ -2838,9 +2917,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2838
2917
|
}
|
|
2839
2918
|
}
|
|
2840
2919
|
},
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2920
|
+
schemas: [
|
|
2921
|
+
{
|
|
2922
|
+
$ref: "#/components/schemas/AssetDomainControllersProvidedRecord"
|
|
2923
|
+
}
|
|
2924
|
+
]
|
|
2844
2925
|
};
|
|
2845
2926
|
}
|
|
2846
2927
|
case ":asset.embedding?": {
|
|
@@ -2862,9 +2943,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2862
2943
|
}
|
|
2863
2944
|
}
|
|
2864
2945
|
},
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
2946
|
+
schemas: [
|
|
2947
|
+
{
|
|
2948
|
+
$ref: "#/components/schemas/AssetDomainEmbeddingProvidedRecord"
|
|
2949
|
+
}
|
|
2950
|
+
]
|
|
2868
2951
|
};
|
|
2869
2952
|
}
|
|
2870
2953
|
case ":asset.media?": {
|
|
@@ -2880,9 +2963,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2880
2963
|
}
|
|
2881
2964
|
}
|
|
2882
2965
|
},
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
|
|
2966
|
+
schemas: [
|
|
2967
|
+
{
|
|
2968
|
+
$ref: "#/components/schemas/AssetDomainMediaProvidedRecord"
|
|
2969
|
+
}
|
|
2970
|
+
]
|
|
2886
2971
|
};
|
|
2887
2972
|
}
|
|
2888
2973
|
case ":asset.presence?": {
|
|
@@ -2904,9 +2989,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2904
2989
|
}
|
|
2905
2990
|
}
|
|
2906
2991
|
},
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2992
|
+
schemas: [
|
|
2993
|
+
{
|
|
2994
|
+
$ref: "#/components/schemas/AssetDomainPresenceProvidedRecord"
|
|
2995
|
+
}
|
|
2996
|
+
]
|
|
2910
2997
|
};
|
|
2911
2998
|
}
|
|
2912
2999
|
case ":asset.comments?": {
|
|
@@ -2929,9 +3016,11 @@ function _schemaDomainRecord(domain) {
|
|
|
2929
3016
|
}
|
|
2930
3017
|
}
|
|
2931
3018
|
},
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
3019
|
+
schemas: [
|
|
3020
|
+
{
|
|
3021
|
+
$ref: "#/components/schemas/AssetCommentsRecord"
|
|
3022
|
+
}
|
|
3023
|
+
]
|
|
2935
3024
|
};
|
|
2936
3025
|
}
|
|
2937
3026
|
case ":asset.record?": {
|
|
@@ -3307,9 +3396,11 @@ function _schemaDomainRecord(domain) {
|
|
|
3307
3396
|
}
|
|
3308
3397
|
}
|
|
3309
3398
|
},
|
|
3310
|
-
|
|
3311
|
-
|
|
3312
|
-
|
|
3399
|
+
schemas: [
|
|
3400
|
+
{
|
|
3401
|
+
$ref: "#/components/schemas/AssetRecordProvidedRecord"
|
|
3402
|
+
}
|
|
3403
|
+
]
|
|
3313
3404
|
};
|
|
3314
3405
|
}
|
|
3315
3406
|
case ":auth": {
|
|
@@ -3336,9 +3427,11 @@ function _schemaDomainRecord(domain) {
|
|
|
3336
3427
|
}
|
|
3337
3428
|
}
|
|
3338
3429
|
},
|
|
3339
|
-
|
|
3340
|
-
|
|
3341
|
-
|
|
3430
|
+
schemas: [
|
|
3431
|
+
{
|
|
3432
|
+
$ref: "#/components/schemas/AuthDomainRecord"
|
|
3433
|
+
}
|
|
3434
|
+
]
|
|
3342
3435
|
};
|
|
3343
3436
|
}
|
|
3344
3437
|
case ":bundle": {
|
|
@@ -3374,9 +3467,11 @@ function _schemaDomainRecord(domain) {
|
|
|
3374
3467
|
}
|
|
3375
3468
|
}
|
|
3376
3469
|
},
|
|
3377
|
-
|
|
3378
|
-
|
|
3379
|
-
|
|
3470
|
+
schemas: [
|
|
3471
|
+
{
|
|
3472
|
+
$ref: "#/components/schemas/BundleRecord"
|
|
3473
|
+
}
|
|
3474
|
+
]
|
|
3380
3475
|
};
|
|
3381
3476
|
}
|
|
3382
3477
|
case ":bundle.revisions": {
|
|
@@ -3420,9 +3515,11 @@ function _schemaDomainRecord(domain) {
|
|
|
3420
3515
|
}
|
|
3421
3516
|
}
|
|
3422
3517
|
},
|
|
3423
|
-
|
|
3424
|
-
|
|
3425
|
-
|
|
3518
|
+
schemas: [
|
|
3519
|
+
{
|
|
3520
|
+
$ref: "#/components/schemas/BundleRevisionsRecord"
|
|
3521
|
+
}
|
|
3522
|
+
]
|
|
3426
3523
|
};
|
|
3427
3524
|
}
|
|
3428
3525
|
case ":calendarevent": {
|
|
@@ -3533,9 +3630,11 @@ function _schemaDomainRecord(domain) {
|
|
|
3533
3630
|
}
|
|
3534
3631
|
}
|
|
3535
3632
|
},
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3633
|
+
schemas: [
|
|
3634
|
+
{
|
|
3635
|
+
$ref: "#/components/schemas/CalendarEventDomainRecord"
|
|
3636
|
+
}
|
|
3637
|
+
]
|
|
3539
3638
|
};
|
|
3540
3639
|
}
|
|
3541
3640
|
case ":clone": {
|
|
@@ -3590,9 +3689,11 @@ function _schemaDomainRecord(domain) {
|
|
|
3590
3689
|
}
|
|
3591
3690
|
}
|
|
3592
3691
|
},
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3692
|
+
schemas: [
|
|
3693
|
+
{
|
|
3694
|
+
$ref: "#/components/schemas/CloneDomainCloneRecord"
|
|
3695
|
+
}
|
|
3696
|
+
]
|
|
3596
3697
|
};
|
|
3597
3698
|
}
|
|
3598
3699
|
case ":comment-reaction": {
|
|
@@ -3621,9 +3722,11 @@ function _schemaDomainRecord(domain) {
|
|
|
3621
3722
|
}
|
|
3622
3723
|
}
|
|
3623
3724
|
},
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3725
|
+
schemas: [
|
|
3726
|
+
{
|
|
3727
|
+
$ref: "#/components/schemas/CommentReactionDomainRecord"
|
|
3728
|
+
}
|
|
3729
|
+
]
|
|
3627
3730
|
};
|
|
3628
3731
|
}
|
|
3629
3732
|
case ":comment-read-mark": {
|
|
@@ -3652,9 +3755,11 @@ function _schemaDomainRecord(domain) {
|
|
|
3652
3755
|
}
|
|
3653
3756
|
}
|
|
3654
3757
|
},
|
|
3655
|
-
|
|
3656
|
-
|
|
3657
|
-
|
|
3758
|
+
schemas: [
|
|
3759
|
+
{
|
|
3760
|
+
$ref: "#/components/schemas/CommentReadMarkDomainRecord"
|
|
3761
|
+
}
|
|
3762
|
+
]
|
|
3658
3763
|
};
|
|
3659
3764
|
}
|
|
3660
3765
|
case ":comment": {
|
|
@@ -3976,9 +4081,11 @@ function _schemaDomainRecord(domain) {
|
|
|
3976
4081
|
}
|
|
3977
4082
|
}
|
|
3978
4083
|
},
|
|
3979
|
-
|
|
3980
|
-
|
|
3981
|
-
|
|
4084
|
+
schemas: [
|
|
4085
|
+
{
|
|
4086
|
+
$ref: "#/components/schemas/CommentDomainCommentRecord"
|
|
4087
|
+
}
|
|
4088
|
+
]
|
|
3982
4089
|
};
|
|
3983
4090
|
}
|
|
3984
4091
|
case ":comment.reactions?": {
|
|
@@ -4011,9 +4118,11 @@ function _schemaDomainRecord(domain) {
|
|
|
4011
4118
|
}
|
|
4012
4119
|
}
|
|
4013
4120
|
},
|
|
4014
|
-
|
|
4015
|
-
|
|
4016
|
-
|
|
4121
|
+
schemas: [
|
|
4122
|
+
{
|
|
4123
|
+
$ref: "#/components/schemas/CommentReactionsProvidedRecord"
|
|
4124
|
+
}
|
|
4125
|
+
]
|
|
4017
4126
|
};
|
|
4018
4127
|
}
|
|
4019
4128
|
case ":comment.replies?": {
|
|
@@ -4035,9 +4144,11 @@ function _schemaDomainRecord(domain) {
|
|
|
4035
4144
|
}
|
|
4036
4145
|
}
|
|
4037
4146
|
},
|
|
4038
|
-
|
|
4039
|
-
|
|
4040
|
-
|
|
4147
|
+
schemas: [
|
|
4148
|
+
{
|
|
4149
|
+
$ref: "#/components/schemas/CommentDomainRepliesProvidedRecord"
|
|
4150
|
+
}
|
|
4151
|
+
]
|
|
4041
4152
|
};
|
|
4042
4153
|
}
|
|
4043
4154
|
case ":comment.readMarks?": {
|
|
@@ -4059,9 +4170,11 @@ function _schemaDomainRecord(domain) {
|
|
|
4059
4170
|
}
|
|
4060
4171
|
}
|
|
4061
4172
|
},
|
|
4062
|
-
|
|
4063
|
-
|
|
4064
|
-
|
|
4173
|
+
schemas: [
|
|
4174
|
+
{
|
|
4175
|
+
$ref: "#/components/schemas/CommentDomainReadMarksProvidedRecord"
|
|
4176
|
+
}
|
|
4177
|
+
]
|
|
4065
4178
|
};
|
|
4066
4179
|
}
|
|
4067
4180
|
case ":condition": {
|
|
@@ -4087,9 +4200,11 @@ function _schemaDomainRecord(domain) {
|
|
|
4087
4200
|
}
|
|
4088
4201
|
}
|
|
4089
4202
|
},
|
|
4090
|
-
|
|
4091
|
-
|
|
4092
|
-
|
|
4203
|
+
schemas: [
|
|
4204
|
+
{
|
|
4205
|
+
$ref: "#/components/schemas/SearchCondition"
|
|
4206
|
+
}
|
|
4207
|
+
]
|
|
4093
4208
|
};
|
|
4094
4209
|
}
|
|
4095
4210
|
case ":connection": {
|
|
@@ -6378,34 +6493,36 @@ function _schemaDomainRecord(domain) {
|
|
|
6378
6493
|
}
|
|
6379
6494
|
}
|
|
6380
6495
|
},
|
|
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
|
-
|
|
6496
|
+
schemas: [
|
|
6497
|
+
{
|
|
6498
|
+
oneOf: [
|
|
6499
|
+
{
|
|
6500
|
+
$ref: "#/components/schemas/FileConnectionFtpRecord"
|
|
6501
|
+
},
|
|
6502
|
+
{
|
|
6503
|
+
$ref: "#/components/schemas/FileConnectionHttpRecord"
|
|
6504
|
+
},
|
|
6505
|
+
{
|
|
6506
|
+
$ref: "#/components/schemas/FileConnectionS3Record"
|
|
6507
|
+
},
|
|
6508
|
+
{
|
|
6509
|
+
$ref: "#/components/schemas/FileConnectionSmbRecord"
|
|
6510
|
+
},
|
|
6511
|
+
{
|
|
6512
|
+
$ref: "#/components/schemas/FileConnectionSftpRecord"
|
|
6513
|
+
},
|
|
6514
|
+
{
|
|
6515
|
+
$ref: "#/components/schemas/FacebookConnectionRecord"
|
|
6516
|
+
},
|
|
6517
|
+
{
|
|
6518
|
+
$ref: "#/components/schemas/ReutersConnectionRecord"
|
|
6519
|
+
},
|
|
6520
|
+
{
|
|
6521
|
+
$ref: "#/components/schemas/EmptyConnectionRecord"
|
|
6522
|
+
}
|
|
6523
|
+
]
|
|
6524
|
+
}
|
|
6525
|
+
]
|
|
6409
6526
|
};
|
|
6410
6527
|
}
|
|
6411
6528
|
case ":connection.methods?": {
|
|
@@ -6428,9 +6545,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6428
6545
|
}
|
|
6429
6546
|
}
|
|
6430
6547
|
},
|
|
6431
|
-
|
|
6432
|
-
|
|
6433
|
-
|
|
6548
|
+
schemas: [
|
|
6549
|
+
{
|
|
6550
|
+
$ref: "#/components/schemas/ConnectionMethodsBase"
|
|
6551
|
+
}
|
|
6552
|
+
]
|
|
6434
6553
|
};
|
|
6435
6554
|
}
|
|
6436
6555
|
case ":connection.stats?": {
|
|
@@ -6464,9 +6583,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6464
6583
|
}
|
|
6465
6584
|
}
|
|
6466
6585
|
},
|
|
6467
|
-
|
|
6468
|
-
|
|
6469
|
-
|
|
6586
|
+
schemas: [
|
|
6587
|
+
{
|
|
6588
|
+
$ref: "#/components/schemas/ConnectionStatsBase"
|
|
6589
|
+
}
|
|
6590
|
+
]
|
|
6470
6591
|
};
|
|
6471
6592
|
}
|
|
6472
6593
|
case ":contact": {
|
|
@@ -6506,9 +6627,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6506
6627
|
}
|
|
6507
6628
|
}
|
|
6508
6629
|
},
|
|
6509
|
-
|
|
6510
|
-
|
|
6511
|
-
|
|
6630
|
+
schemas: [
|
|
6631
|
+
{
|
|
6632
|
+
$ref: "#/components/schemas/ContactRecord"
|
|
6633
|
+
}
|
|
6634
|
+
]
|
|
6512
6635
|
};
|
|
6513
6636
|
}
|
|
6514
6637
|
case ":deepstream.replicate": {
|
|
@@ -6543,9 +6666,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6543
6666
|
}
|
|
6544
6667
|
}
|
|
6545
6668
|
},
|
|
6546
|
-
|
|
6547
|
-
|
|
6548
|
-
|
|
6669
|
+
schemas: [
|
|
6670
|
+
{
|
|
6671
|
+
$ref: "#/components/schemas/DeepstreamDomainReplicateRecord"
|
|
6672
|
+
}
|
|
6673
|
+
]
|
|
6549
6674
|
};
|
|
6550
6675
|
}
|
|
6551
6676
|
case ":design?": {
|
|
@@ -6586,9 +6711,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6586
6711
|
}
|
|
6587
6712
|
}
|
|
6588
6713
|
},
|
|
6589
|
-
|
|
6590
|
-
|
|
6591
|
-
|
|
6714
|
+
schemas: [
|
|
6715
|
+
{
|
|
6716
|
+
$ref: "#/components/schemas/DesignDomainRecordstringstringunknown"
|
|
6717
|
+
}
|
|
6718
|
+
]
|
|
6592
6719
|
};
|
|
6593
6720
|
}
|
|
6594
6721
|
case ":device": {
|
|
@@ -6619,9 +6746,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6619
6746
|
}
|
|
6620
6747
|
}
|
|
6621
6748
|
},
|
|
6622
|
-
|
|
6623
|
-
|
|
6624
|
-
|
|
6749
|
+
schemas: [
|
|
6750
|
+
{
|
|
6751
|
+
$ref: "#/components/schemas/DeviceDomainRecord"
|
|
6752
|
+
}
|
|
6753
|
+
]
|
|
6625
6754
|
};
|
|
6626
6755
|
}
|
|
6627
6756
|
case ":device.status?": {
|
|
@@ -6646,9 +6775,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6646
6775
|
}
|
|
6647
6776
|
}
|
|
6648
6777
|
},
|
|
6649
|
-
|
|
6650
|
-
|
|
6651
|
-
|
|
6778
|
+
schemas: [
|
|
6779
|
+
{
|
|
6780
|
+
$ref: "#/components/schemas/DeviceDomainStatusRecord"
|
|
6781
|
+
}
|
|
6782
|
+
]
|
|
6652
6783
|
};
|
|
6653
6784
|
}
|
|
6654
6785
|
case ":edit": {
|
|
@@ -6691,9 +6822,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6691
6822
|
}
|
|
6692
6823
|
}
|
|
6693
6824
|
},
|
|
6694
|
-
|
|
6695
|
-
|
|
6696
|
-
|
|
6825
|
+
schemas: [
|
|
6826
|
+
{
|
|
6827
|
+
$ref: "#/components/schemas/EditRecord"
|
|
6828
|
+
}
|
|
6829
|
+
]
|
|
6697
6830
|
};
|
|
6698
6831
|
}
|
|
6699
6832
|
case ":event": {
|
|
@@ -6778,9 +6911,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6778
6911
|
}
|
|
6779
6912
|
}
|
|
6780
6913
|
},
|
|
6781
|
-
|
|
6782
|
-
|
|
6783
|
-
|
|
6914
|
+
schemas: [
|
|
6915
|
+
{
|
|
6916
|
+
$ref: "#/components/schemas/EventRecord"
|
|
6917
|
+
}
|
|
6918
|
+
]
|
|
6784
6919
|
};
|
|
6785
6920
|
}
|
|
6786
6921
|
case ":event._template?": {
|
|
@@ -6819,9 +6954,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6819
6954
|
}
|
|
6820
6955
|
}
|
|
6821
6956
|
},
|
|
6822
|
-
|
|
6823
|
-
|
|
6824
|
-
|
|
6957
|
+
schemas: [
|
|
6958
|
+
{
|
|
6959
|
+
$ref: "#/components/schemas/EventTemplateRecord"
|
|
6960
|
+
}
|
|
6961
|
+
]
|
|
6825
6962
|
};
|
|
6826
6963
|
}
|
|
6827
6964
|
case ":event.overlay?": {
|
|
@@ -6924,9 +7061,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6924
7061
|
}
|
|
6925
7062
|
}
|
|
6926
7063
|
},
|
|
6927
|
-
|
|
6928
|
-
|
|
6929
|
-
|
|
7064
|
+
schemas: [
|
|
7065
|
+
{
|
|
7066
|
+
$ref: "#/components/schemas/EventOverlayRecord"
|
|
7067
|
+
}
|
|
7068
|
+
]
|
|
6930
7069
|
};
|
|
6931
7070
|
}
|
|
6932
7071
|
case ":event.template?": {
|
|
@@ -6965,9 +7104,11 @@ function _schemaDomainRecord(domain) {
|
|
|
6965
7104
|
}
|
|
6966
7105
|
}
|
|
6967
7106
|
},
|
|
6968
|
-
|
|
6969
|
-
|
|
6970
|
-
|
|
7107
|
+
schemas: [
|
|
7108
|
+
{
|
|
7109
|
+
$ref: "#/components/schemas/EventTemplateRecord"
|
|
7110
|
+
}
|
|
7111
|
+
]
|
|
6971
7112
|
};
|
|
6972
7113
|
}
|
|
6973
7114
|
case ":event.duration?": {
|
|
@@ -7002,9 +7143,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7002
7143
|
}
|
|
7003
7144
|
}
|
|
7004
7145
|
},
|
|
7005
|
-
|
|
7006
|
-
|
|
7007
|
-
|
|
7146
|
+
schemas: [
|
|
7147
|
+
{
|
|
7148
|
+
$ref: "#/components/schemas/EventDurationRecord"
|
|
7149
|
+
}
|
|
7150
|
+
]
|
|
7008
7151
|
};
|
|
7009
7152
|
}
|
|
7010
7153
|
case ":event.children?": {
|
|
@@ -7028,9 +7171,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7028
7171
|
}
|
|
7029
7172
|
}
|
|
7030
7173
|
},
|
|
7031
|
-
|
|
7032
|
-
|
|
7033
|
-
|
|
7174
|
+
schemas: [
|
|
7175
|
+
{
|
|
7176
|
+
$ref: "#/components/schemas/EventChildrenRecord"
|
|
7177
|
+
}
|
|
7178
|
+
]
|
|
7034
7179
|
};
|
|
7035
7180
|
}
|
|
7036
7181
|
case ":event.props?": {
|
|
@@ -7117,9 +7262,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7117
7262
|
}
|
|
7118
7263
|
}
|
|
7119
7264
|
},
|
|
7120
|
-
|
|
7121
|
-
|
|
7122
|
-
|
|
7265
|
+
schemas: [
|
|
7266
|
+
{
|
|
7267
|
+
$ref: "#/components/schemas/EventPropsRecord"
|
|
7268
|
+
}
|
|
7269
|
+
]
|
|
7123
7270
|
};
|
|
7124
7271
|
}
|
|
7125
7272
|
case ":file.replicate": {
|
|
@@ -7223,9 +7370,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7223
7370
|
}
|
|
7224
7371
|
}
|
|
7225
7372
|
},
|
|
7226
|
-
|
|
7227
|
-
|
|
7228
|
-
|
|
7373
|
+
schemas: [
|
|
7374
|
+
{
|
|
7375
|
+
$ref: "#/components/schemas/FileReplicateRecord"
|
|
7376
|
+
}
|
|
7377
|
+
]
|
|
7229
7378
|
};
|
|
7230
7379
|
}
|
|
7231
7380
|
case ":file.restrictions": {
|
|
@@ -7271,9 +7420,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7271
7420
|
}
|
|
7272
7421
|
}
|
|
7273
7422
|
},
|
|
7274
|
-
|
|
7275
|
-
|
|
7276
|
-
|
|
7423
|
+
schemas: [
|
|
7424
|
+
{
|
|
7425
|
+
$ref: "#/components/schemas/FileRestrictionsRecord"
|
|
7426
|
+
}
|
|
7427
|
+
]
|
|
7277
7428
|
};
|
|
7278
7429
|
}
|
|
7279
7430
|
case ":file.stats?": {
|
|
@@ -7537,9 +7688,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7537
7688
|
}
|
|
7538
7689
|
}
|
|
7539
7690
|
},
|
|
7540
|
-
|
|
7541
|
-
|
|
7542
|
-
|
|
7691
|
+
schemas: [
|
|
7692
|
+
{
|
|
7693
|
+
$ref: "#/components/schemas/FileStats"
|
|
7694
|
+
}
|
|
7695
|
+
]
|
|
7543
7696
|
};
|
|
7544
7697
|
}
|
|
7545
7698
|
case ":folder.items": {
|
|
@@ -7563,9 +7716,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7563
7716
|
}
|
|
7564
7717
|
}
|
|
7565
7718
|
},
|
|
7566
|
-
|
|
7567
|
-
|
|
7568
|
-
|
|
7719
|
+
schemas: [
|
|
7720
|
+
{
|
|
7721
|
+
$ref: "#/components/schemas/FolderItemsDomainRecord"
|
|
7722
|
+
}
|
|
7723
|
+
]
|
|
7569
7724
|
};
|
|
7570
7725
|
}
|
|
7571
7726
|
case ":general.title": {
|
|
@@ -7584,9 +7739,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7584
7739
|
}
|
|
7585
7740
|
}
|
|
7586
7741
|
},
|
|
7587
|
-
|
|
7588
|
-
|
|
7589
|
-
|
|
7742
|
+
schemas: [
|
|
7743
|
+
{
|
|
7744
|
+
$ref: "#/components/schemas/GeneralTitleRecord"
|
|
7745
|
+
}
|
|
7746
|
+
]
|
|
7590
7747
|
};
|
|
7591
7748
|
}
|
|
7592
7749
|
case ":general.tags": {
|
|
@@ -7610,9 +7767,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7610
7767
|
}
|
|
7611
7768
|
}
|
|
7612
7769
|
},
|
|
7613
|
-
|
|
7614
|
-
|
|
7615
|
-
|
|
7770
|
+
schemas: [
|
|
7771
|
+
{
|
|
7772
|
+
$ref: "#/components/schemas/GeneralTagsRecord"
|
|
7773
|
+
}
|
|
7774
|
+
]
|
|
7616
7775
|
};
|
|
7617
7776
|
}
|
|
7618
7777
|
case ":general.created": {
|
|
@@ -7637,9 +7796,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7637
7796
|
}
|
|
7638
7797
|
}
|
|
7639
7798
|
},
|
|
7640
|
-
|
|
7641
|
-
|
|
7642
|
-
|
|
7799
|
+
schemas: [
|
|
7800
|
+
{
|
|
7801
|
+
$ref: "#/components/schemas/GeneralCreatedRecord"
|
|
7802
|
+
}
|
|
7803
|
+
]
|
|
7643
7804
|
};
|
|
7644
7805
|
}
|
|
7645
7806
|
case ":general.poster": {
|
|
@@ -7670,9 +7831,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7670
7831
|
}
|
|
7671
7832
|
}
|
|
7672
7833
|
},
|
|
7673
|
-
|
|
7674
|
-
|
|
7675
|
-
|
|
7834
|
+
schemas: [
|
|
7835
|
+
{
|
|
7836
|
+
$ref: "#/components/schemas/GeneralPosterRecord"
|
|
7837
|
+
}
|
|
7838
|
+
]
|
|
7676
7839
|
};
|
|
7677
7840
|
}
|
|
7678
7841
|
case ":general.status": {
|
|
@@ -7699,9 +7862,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7699
7862
|
}
|
|
7700
7863
|
}
|
|
7701
7864
|
},
|
|
7702
|
-
|
|
7703
|
-
|
|
7704
|
-
|
|
7865
|
+
schemas: [
|
|
7866
|
+
{
|
|
7867
|
+
$ref: "#/components/schemas/GeneralStatusRecord"
|
|
7868
|
+
}
|
|
7869
|
+
]
|
|
7705
7870
|
};
|
|
7706
7871
|
}
|
|
7707
7872
|
case ":general.description": {
|
|
@@ -7720,9 +7885,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7720
7885
|
}
|
|
7721
7886
|
}
|
|
7722
7887
|
},
|
|
7723
|
-
|
|
7724
|
-
|
|
7725
|
-
|
|
7888
|
+
schemas: [
|
|
7889
|
+
{
|
|
7890
|
+
$ref: "#/components/schemas/GeneralDescriptionRecord"
|
|
7891
|
+
}
|
|
7892
|
+
]
|
|
7726
7893
|
};
|
|
7727
7894
|
}
|
|
7728
7895
|
case ":general._asset": {
|
|
@@ -7765,9 +7932,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7765
7932
|
}
|
|
7766
7933
|
}
|
|
7767
7934
|
},
|
|
7768
|
-
|
|
7769
|
-
|
|
7770
|
-
|
|
7935
|
+
schemas: [
|
|
7936
|
+
{
|
|
7937
|
+
$ref: "#/components/schemas/GeneralAssetRecord"
|
|
7938
|
+
}
|
|
7939
|
+
]
|
|
7771
7940
|
};
|
|
7772
7941
|
}
|
|
7773
7942
|
case ":general._embedding": {
|
|
@@ -7792,9 +7961,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7792
7961
|
}
|
|
7793
7962
|
}
|
|
7794
7963
|
},
|
|
7795
|
-
|
|
7796
|
-
|
|
7797
|
-
|
|
7964
|
+
schemas: [
|
|
7965
|
+
{
|
|
7966
|
+
$ref: "#/components/schemas/GeneralEmbeddingRecord"
|
|
7967
|
+
}
|
|
7968
|
+
]
|
|
7798
7969
|
};
|
|
7799
7970
|
}
|
|
7800
7971
|
case ":harvest": {
|
|
@@ -7828,9 +7999,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7828
7999
|
}
|
|
7829
8000
|
}
|
|
7830
8001
|
},
|
|
7831
|
-
|
|
7832
|
-
|
|
7833
|
-
|
|
8002
|
+
schemas: [
|
|
8003
|
+
{
|
|
8004
|
+
$ref: "#/components/schemas/HarvestDomainRecord"
|
|
8005
|
+
}
|
|
8006
|
+
]
|
|
7834
8007
|
};
|
|
7835
8008
|
}
|
|
7836
8009
|
case ":ingestclip": {
|
|
@@ -7894,9 +8067,11 @@ function _schemaDomainRecord(domain) {
|
|
|
7894
8067
|
}
|
|
7895
8068
|
}
|
|
7896
8069
|
},
|
|
7897
|
-
|
|
7898
|
-
|
|
7899
|
-
|
|
8070
|
+
schemas: [
|
|
8071
|
+
{
|
|
8072
|
+
$ref: "#/components/schemas/IngestclipDomainRecord"
|
|
8073
|
+
}
|
|
8074
|
+
]
|
|
7900
8075
|
};
|
|
7901
8076
|
}
|
|
7902
8077
|
case ":ingestschedule": {
|
|
@@ -8069,9 +8244,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8069
8244
|
}
|
|
8070
8245
|
}
|
|
8071
8246
|
},
|
|
8072
|
-
|
|
8073
|
-
|
|
8074
|
-
|
|
8247
|
+
schemas: [
|
|
8248
|
+
{
|
|
8249
|
+
$ref: "#/components/schemas/IngestScheduleDomainRecord"
|
|
8250
|
+
}
|
|
8251
|
+
]
|
|
8075
8252
|
};
|
|
8076
8253
|
}
|
|
8077
8254
|
case ":ingestschedule.stats?": {
|
|
@@ -8088,9 +8265,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8088
8265
|
}
|
|
8089
8266
|
}
|
|
8090
8267
|
},
|
|
8091
|
-
|
|
8092
|
-
|
|
8093
|
-
|
|
8268
|
+
schemas: [
|
|
8269
|
+
{
|
|
8270
|
+
$ref: "#/components/schemas/IngestScheduleDomainStatsRecord"
|
|
8271
|
+
}
|
|
8272
|
+
]
|
|
8094
8273
|
};
|
|
8095
8274
|
}
|
|
8096
8275
|
case ":media.source": {
|
|
@@ -8291,9 +8470,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8291
8470
|
}
|
|
8292
8471
|
}
|
|
8293
8472
|
},
|
|
8294
|
-
|
|
8295
|
-
|
|
8296
|
-
|
|
8473
|
+
schemas: [
|
|
8474
|
+
{
|
|
8475
|
+
$ref: "#/components/schemas/RenderSceneObject"
|
|
8476
|
+
}
|
|
8477
|
+
]
|
|
8297
8478
|
};
|
|
8298
8479
|
}
|
|
8299
8480
|
case ":media.consolidate": {
|
|
@@ -8469,9 +8650,56 @@ function _schemaDomainRecord(domain) {
|
|
|
8469
8650
|
}
|
|
8470
8651
|
}
|
|
8471
8652
|
},
|
|
8472
|
-
|
|
8473
|
-
|
|
8474
|
-
|
|
8653
|
+
schemas: [
|
|
8654
|
+
{
|
|
8655
|
+
$ref: "#/components/schemas/MediaDomainConsolidateRecord"
|
|
8656
|
+
}
|
|
8657
|
+
]
|
|
8658
|
+
};
|
|
8659
|
+
}
|
|
8660
|
+
case ":media.consolidate?": {
|
|
8661
|
+
return {
|
|
8662
|
+
version: "3.1",
|
|
8663
|
+
components: {
|
|
8664
|
+
schemas: {
|
|
8665
|
+
MediaDomainConsolidateRecordProvided: {
|
|
8666
|
+
type: "object",
|
|
8667
|
+
properties: {
|
|
8668
|
+
status: {
|
|
8669
|
+
oneOf: [
|
|
8670
|
+
{
|
|
8671
|
+
"const": "completed"
|
|
8672
|
+
},
|
|
8673
|
+
{
|
|
8674
|
+
"const": "error"
|
|
8675
|
+
},
|
|
8676
|
+
{
|
|
8677
|
+
"const": "idle"
|
|
8678
|
+
},
|
|
8679
|
+
{
|
|
8680
|
+
"const": "pending"
|
|
8681
|
+
},
|
|
8682
|
+
{
|
|
8683
|
+
"const": "source_mismatch"
|
|
8684
|
+
}
|
|
8685
|
+
]
|
|
8686
|
+
},
|
|
8687
|
+
progress: {
|
|
8688
|
+
type: "number"
|
|
8689
|
+
},
|
|
8690
|
+
error: {}
|
|
8691
|
+
},
|
|
8692
|
+
required: [
|
|
8693
|
+
"status"
|
|
8694
|
+
]
|
|
8695
|
+
}
|
|
8696
|
+
}
|
|
8697
|
+
},
|
|
8698
|
+
schemas: [
|
|
8699
|
+
{
|
|
8700
|
+
$ref: "#/components/schemas/MediaDomainConsolidateRecordProvided"
|
|
8701
|
+
}
|
|
8702
|
+
]
|
|
8475
8703
|
};
|
|
8476
8704
|
}
|
|
8477
8705
|
case ":media.renders?": {
|
|
@@ -8513,9 +8741,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8513
8741
|
}
|
|
8514
8742
|
}
|
|
8515
8743
|
},
|
|
8516
|
-
|
|
8517
|
-
|
|
8518
|
-
|
|
8744
|
+
schemas: [
|
|
8745
|
+
{
|
|
8746
|
+
$ref: "#/components/schemas/MediaRendersRecord"
|
|
8747
|
+
}
|
|
8748
|
+
]
|
|
8519
8749
|
};
|
|
8520
8750
|
}
|
|
8521
8751
|
case ":media.transcriptChanges": {
|
|
@@ -8683,9 +8913,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8683
8913
|
}
|
|
8684
8914
|
}
|
|
8685
8915
|
},
|
|
8686
|
-
|
|
8687
|
-
|
|
8688
|
-
|
|
8916
|
+
schemas: [
|
|
8917
|
+
{
|
|
8918
|
+
$ref: "#/components/schemas/MediaTranscriptChangesRecord"
|
|
8919
|
+
}
|
|
8920
|
+
]
|
|
8689
8921
|
};
|
|
8690
8922
|
}
|
|
8691
8923
|
case ":media.font": {
|
|
@@ -8704,9 +8936,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8704
8936
|
}
|
|
8705
8937
|
}
|
|
8706
8938
|
},
|
|
8707
|
-
|
|
8708
|
-
|
|
8709
|
-
|
|
8939
|
+
schemas: [
|
|
8940
|
+
{
|
|
8941
|
+
$ref: "#/components/schemas/MediaFontRecord"
|
|
8942
|
+
}
|
|
8943
|
+
]
|
|
8710
8944
|
};
|
|
8711
8945
|
}
|
|
8712
8946
|
case ":media.restrictions?": {
|
|
@@ -8756,9 +8990,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8756
8990
|
}
|
|
8757
8991
|
}
|
|
8758
8992
|
},
|
|
8759
|
-
|
|
8760
|
-
|
|
8761
|
-
|
|
8993
|
+
schemas: [
|
|
8994
|
+
{
|
|
8995
|
+
$ref: "#/components/schemas/MediaRestrictionsRecord"
|
|
8996
|
+
}
|
|
8997
|
+
]
|
|
8762
8998
|
};
|
|
8763
8999
|
}
|
|
8764
9000
|
case ":media.probe?": {
|
|
@@ -8918,9 +9154,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8918
9154
|
}
|
|
8919
9155
|
}
|
|
8920
9156
|
},
|
|
8921
|
-
|
|
8922
|
-
|
|
8923
|
-
|
|
9157
|
+
schemas: [
|
|
9158
|
+
{
|
|
9159
|
+
$ref: "#/components/schemas/MediaProbeRecord"
|
|
9160
|
+
}
|
|
9161
|
+
]
|
|
8924
9162
|
};
|
|
8925
9163
|
}
|
|
8926
9164
|
case ":media.updateSubtitles?": {
|
|
@@ -8936,9 +9174,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8936
9174
|
}
|
|
8937
9175
|
}
|
|
8938
9176
|
},
|
|
8939
|
-
|
|
8940
|
-
|
|
8941
|
-
|
|
9177
|
+
schemas: [
|
|
9178
|
+
{
|
|
9179
|
+
$ref: "#/components/schemas/MediaDomainUpdateSubtitlesRecord"
|
|
9180
|
+
}
|
|
9181
|
+
]
|
|
8942
9182
|
};
|
|
8943
9183
|
}
|
|
8944
9184
|
case ":media.updateGraphics?": {
|
|
@@ -8954,9 +9194,11 @@ function _schemaDomainRecord(domain) {
|
|
|
8954
9194
|
}
|
|
8955
9195
|
}
|
|
8956
9196
|
},
|
|
8957
|
-
|
|
8958
|
-
|
|
8959
|
-
|
|
9197
|
+
schemas: [
|
|
9198
|
+
{
|
|
9199
|
+
$ref: "#/components/schemas/MediaDomainUpdateGraphicsRecord"
|
|
9200
|
+
}
|
|
9201
|
+
]
|
|
8960
9202
|
};
|
|
8961
9203
|
}
|
|
8962
9204
|
case ":monitor.stats?": {
|
|
@@ -9570,9 +9812,11 @@ function _schemaDomainRecord(domain) {
|
|
|
9570
9812
|
}
|
|
9571
9813
|
}
|
|
9572
9814
|
},
|
|
9573
|
-
|
|
9574
|
-
|
|
9575
|
-
|
|
9815
|
+
schemas: [
|
|
9816
|
+
{
|
|
9817
|
+
$ref: "#/components/schemas/MonitorStatsRecord"
|
|
9818
|
+
}
|
|
9819
|
+
]
|
|
9576
9820
|
};
|
|
9577
9821
|
}
|
|
9578
9822
|
case ":note": {
|
|
@@ -9593,9 +9837,11 @@ function _schemaDomainRecord(domain) {
|
|
|
9593
9837
|
}
|
|
9594
9838
|
}
|
|
9595
9839
|
},
|
|
9596
|
-
|
|
9597
|
-
|
|
9598
|
-
|
|
9840
|
+
schemas: [
|
|
9841
|
+
{
|
|
9842
|
+
$ref: "#/components/schemas/NoteDomainRecord"
|
|
9843
|
+
}
|
|
9844
|
+
]
|
|
9599
9845
|
};
|
|
9600
9846
|
}
|
|
9601
9847
|
case ":panel": {
|
|
@@ -9908,9 +10154,11 @@ function _schemaDomainRecord(domain) {
|
|
|
9908
10154
|
}
|
|
9909
10155
|
}
|
|
9910
10156
|
},
|
|
9911
|
-
|
|
9912
|
-
|
|
9913
|
-
|
|
10157
|
+
schemas: [
|
|
10158
|
+
{
|
|
10159
|
+
$ref: "#/components/schemas/PanelDomainPanelRecord"
|
|
10160
|
+
}
|
|
10161
|
+
]
|
|
9914
10162
|
};
|
|
9915
10163
|
}
|
|
9916
10164
|
case ":permission?": {
|
|
@@ -10003,9 +10251,11 @@ function _schemaDomainRecord(domain) {
|
|
|
10003
10251
|
}
|
|
10004
10252
|
}
|
|
10005
10253
|
},
|
|
10006
|
-
|
|
10007
|
-
|
|
10008
|
-
|
|
10254
|
+
schemas: [
|
|
10255
|
+
{
|
|
10256
|
+
$ref: "#/components/schemas/ProvidedPermissionRecord"
|
|
10257
|
+
}
|
|
10258
|
+
]
|
|
10009
10259
|
};
|
|
10010
10260
|
}
|
|
10011
10261
|
case ":permission": {
|
|
@@ -10084,9 +10334,11 @@ function _schemaDomainRecord(domain) {
|
|
|
10084
10334
|
}
|
|
10085
10335
|
}
|
|
10086
10336
|
},
|
|
10087
|
-
|
|
10088
|
-
|
|
10089
|
-
|
|
10337
|
+
schemas: [
|
|
10338
|
+
{
|
|
10339
|
+
$ref: "#/components/schemas/PermissionRecordPermisson"
|
|
10340
|
+
}
|
|
10341
|
+
]
|
|
10090
10342
|
};
|
|
10091
10343
|
}
|
|
10092
10344
|
case ":pipeline-preset": {
|
|
@@ -10158,9 +10410,11 @@ function _schemaDomainRecord(domain) {
|
|
|
10158
10410
|
}
|
|
10159
10411
|
}
|
|
10160
10412
|
},
|
|
10161
|
-
|
|
10162
|
-
|
|
10163
|
-
|
|
10413
|
+
schemas: [
|
|
10414
|
+
{
|
|
10415
|
+
$ref: "#/components/schemas/PipelinePresetDomainRecord"
|
|
10416
|
+
}
|
|
10417
|
+
]
|
|
10164
10418
|
};
|
|
10165
10419
|
}
|
|
10166
10420
|
case ":pipeline": {
|
|
@@ -10217,9 +10471,11 @@ function _schemaDomainRecord(domain) {
|
|
|
10217
10471
|
}
|
|
10218
10472
|
}
|
|
10219
10473
|
},
|
|
10220
|
-
|
|
10221
|
-
|
|
10222
|
-
|
|
10474
|
+
schemas: [
|
|
10475
|
+
{
|
|
10476
|
+
$ref: "#/components/schemas/PipelineDomainRecord"
|
|
10477
|
+
}
|
|
10478
|
+
]
|
|
10223
10479
|
};
|
|
10224
10480
|
}
|
|
10225
10481
|
case ":pipeline.items": {
|
|
@@ -10241,9 +10497,11 @@ function _schemaDomainRecord(domain) {
|
|
|
10241
10497
|
}
|
|
10242
10498
|
}
|
|
10243
10499
|
},
|
|
10244
|
-
|
|
10245
|
-
|
|
10246
|
-
|
|
10500
|
+
schemas: [
|
|
10501
|
+
{
|
|
10502
|
+
$ref: "#/components/schemas/PipelineDomainItemsRecord"
|
|
10503
|
+
}
|
|
10504
|
+
]
|
|
10247
10505
|
};
|
|
10248
10506
|
}
|
|
10249
10507
|
case ":planning": {
|
|
@@ -10269,9 +10527,11 @@ function _schemaDomainRecord(domain) {
|
|
|
10269
10527
|
}
|
|
10270
10528
|
}
|
|
10271
10529
|
},
|
|
10272
|
-
|
|
10273
|
-
|
|
10274
|
-
|
|
10530
|
+
schemas: [
|
|
10531
|
+
{
|
|
10532
|
+
$ref: "#/components/schemas/PlanningRecord"
|
|
10533
|
+
}
|
|
10534
|
+
]
|
|
10275
10535
|
};
|
|
10276
10536
|
}
|
|
10277
10537
|
case ":planning.assignees": {
|
|
@@ -10293,9 +10553,11 @@ function _schemaDomainRecord(domain) {
|
|
|
10293
10553
|
}
|
|
10294
10554
|
}
|
|
10295
10555
|
},
|
|
10296
|
-
|
|
10297
|
-
|
|
10298
|
-
|
|
10556
|
+
schemas: [
|
|
10557
|
+
{
|
|
10558
|
+
$ref: "#/components/schemas/PlanningAssigneesRecord"
|
|
10559
|
+
}
|
|
10560
|
+
]
|
|
10299
10561
|
};
|
|
10300
10562
|
}
|
|
10301
10563
|
case ":planning.deadline": {
|
|
@@ -10323,9 +10585,11 @@ function _schemaDomainRecord(domain) {
|
|
|
10323
10585
|
}
|
|
10324
10586
|
}
|
|
10325
10587
|
},
|
|
10326
|
-
|
|
10327
|
-
|
|
10328
|
-
|
|
10588
|
+
schemas: [
|
|
10589
|
+
{
|
|
10590
|
+
$ref: "#/components/schemas/PlanningDeadlineRecord"
|
|
10591
|
+
}
|
|
10592
|
+
]
|
|
10329
10593
|
};
|
|
10330
10594
|
}
|
|
10331
10595
|
case ":prompter": {
|
|
@@ -10392,9 +10656,11 @@ function _schemaDomainRecord(domain) {
|
|
|
10392
10656
|
}
|
|
10393
10657
|
}
|
|
10394
10658
|
},
|
|
10395
|
-
|
|
10396
|
-
|
|
10397
|
-
|
|
10659
|
+
schemas: [
|
|
10660
|
+
{
|
|
10661
|
+
$ref: "#/components/schemas/PrompterDomainRecord"
|
|
10662
|
+
}
|
|
10663
|
+
]
|
|
10398
10664
|
};
|
|
10399
10665
|
}
|
|
10400
10666
|
case ":publish": {
|
|
@@ -11273,25 +11539,27 @@ function _schemaDomainRecord(domain) {
|
|
|
11273
11539
|
}
|
|
11274
11540
|
}
|
|
11275
11541
|
},
|
|
11276
|
-
|
|
11277
|
-
|
|
11278
|
-
|
|
11279
|
-
|
|
11280
|
-
|
|
11281
|
-
|
|
11282
|
-
|
|
11283
|
-
|
|
11284
|
-
|
|
11285
|
-
|
|
11286
|
-
|
|
11287
|
-
|
|
11288
|
-
|
|
11289
|
-
|
|
11290
|
-
|
|
11291
|
-
|
|
11292
|
-
|
|
11293
|
-
|
|
11294
|
-
|
|
11542
|
+
schemas: [
|
|
11543
|
+
{
|
|
11544
|
+
oneOf: [
|
|
11545
|
+
{
|
|
11546
|
+
$ref: "#/components/schemas/EmptyPublishRecord"
|
|
11547
|
+
},
|
|
11548
|
+
{
|
|
11549
|
+
$ref: "#/components/schemas/FacebookPublishRecord"
|
|
11550
|
+
},
|
|
11551
|
+
{
|
|
11552
|
+
$ref: "#/components/schemas/FilePublishRecordLegacy"
|
|
11553
|
+
},
|
|
11554
|
+
{
|
|
11555
|
+
$ref: "#/components/schemas/FilePublishRecord"
|
|
11556
|
+
},
|
|
11557
|
+
{
|
|
11558
|
+
$ref: "#/components/schemas/YoutubePublishRecord"
|
|
11559
|
+
}
|
|
11560
|
+
]
|
|
11561
|
+
}
|
|
11562
|
+
]
|
|
11295
11563
|
};
|
|
11296
11564
|
}
|
|
11297
11565
|
case ":publish.stats?": {
|
|
@@ -11962,26 +12230,6 @@ function _schemaDomainRecord(domain) {
|
|
|
11962
12230
|
],
|
|
11963
12231
|
description: "render preset + overrides"
|
|
11964
12232
|
},
|
|
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
12233
|
PublishStatsRecordBase: {
|
|
11986
12234
|
type: "object",
|
|
11987
12235
|
properties: {
|
|
@@ -12004,19 +12252,18 @@ function _schemaDomainRecord(domain) {
|
|
|
12004
12252
|
}
|
|
12005
12253
|
}
|
|
12006
12254
|
},
|
|
12007
|
-
|
|
12008
|
-
|
|
12009
|
-
|
|
12010
|
-
|
|
12011
|
-
|
|
12012
|
-
|
|
12013
|
-
|
|
12014
|
-
|
|
12015
|
-
|
|
12016
|
-
|
|
12017
|
-
|
|
12018
|
-
|
|
12019
|
-
}
|
|
12255
|
+
schemas: [
|
|
12256
|
+
{
|
|
12257
|
+
oneOf: [
|
|
12258
|
+
{
|
|
12259
|
+
$ref: "#/components/schemas/FilePublishStatsRecord"
|
|
12260
|
+
},
|
|
12261
|
+
{
|
|
12262
|
+
$ref: "#/components/schemas/PublishStatsRecordBase"
|
|
12263
|
+
}
|
|
12264
|
+
]
|
|
12265
|
+
}
|
|
12266
|
+
]
|
|
12020
12267
|
};
|
|
12021
12268
|
}
|
|
12022
12269
|
case ":publish.methods?": {
|
|
@@ -12044,9 +12291,11 @@ function _schemaDomainRecord(domain) {
|
|
|
12044
12291
|
}
|
|
12045
12292
|
}
|
|
12046
12293
|
},
|
|
12047
|
-
|
|
12048
|
-
|
|
12049
|
-
|
|
12294
|
+
schemas: [
|
|
12295
|
+
{
|
|
12296
|
+
$ref: "#/components/schemas/PublishDomainMethodsRecordBase"
|
|
12297
|
+
}
|
|
12298
|
+
]
|
|
12050
12299
|
};
|
|
12051
12300
|
}
|
|
12052
12301
|
case ":publish.accepts": {
|
|
@@ -12063,9 +12312,11 @@ function _schemaDomainRecord(domain) {
|
|
|
12063
12312
|
}
|
|
12064
12313
|
}
|
|
12065
12314
|
},
|
|
12066
|
-
|
|
12067
|
-
|
|
12068
|
-
|
|
12315
|
+
schemas: [
|
|
12316
|
+
{
|
|
12317
|
+
$ref: "#/components/schemas/PublishDomainAcceptsProvidedRecordBase"
|
|
12318
|
+
}
|
|
12319
|
+
]
|
|
12069
12320
|
};
|
|
12070
12321
|
}
|
|
12071
12322
|
case ":published": {
|
|
@@ -12126,9 +12377,11 @@ function _schemaDomainRecord(domain) {
|
|
|
12126
12377
|
}
|
|
12127
12378
|
}
|
|
12128
12379
|
},
|
|
12129
|
-
|
|
12130
|
-
|
|
12131
|
-
|
|
12380
|
+
schemas: [
|
|
12381
|
+
{
|
|
12382
|
+
$ref: "#/components/schemas/PublishedRecord"
|
|
12383
|
+
}
|
|
12384
|
+
]
|
|
12132
12385
|
};
|
|
12133
12386
|
}
|
|
12134
12387
|
case ":render-preset": {
|
|
@@ -12285,9 +12538,11 @@ function _schemaDomainRecord(domain) {
|
|
|
12285
12538
|
}
|
|
12286
12539
|
}
|
|
12287
12540
|
},
|
|
12288
|
-
|
|
12289
|
-
|
|
12290
|
-
|
|
12541
|
+
schemas: [
|
|
12542
|
+
{
|
|
12543
|
+
$ref: "#/components/schemas/RenderPresetObject"
|
|
12544
|
+
}
|
|
12545
|
+
]
|
|
12291
12546
|
};
|
|
12292
12547
|
}
|
|
12293
12548
|
case ":render.stats?": {
|
|
@@ -13022,9 +13277,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13022
13277
|
}
|
|
13023
13278
|
}
|
|
13024
13279
|
},
|
|
13025
|
-
|
|
13026
|
-
|
|
13027
|
-
|
|
13280
|
+
schemas: [
|
|
13281
|
+
{
|
|
13282
|
+
$ref: "#/components/schemas/RenderDomainStatsRecord"
|
|
13283
|
+
}
|
|
13284
|
+
]
|
|
13028
13285
|
};
|
|
13029
13286
|
}
|
|
13030
13287
|
case ":render.query?": {
|
|
@@ -13367,9 +13624,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13367
13624
|
}
|
|
13368
13625
|
}
|
|
13369
13626
|
},
|
|
13370
|
-
|
|
13371
|
-
|
|
13372
|
-
|
|
13627
|
+
schemas: [
|
|
13628
|
+
{
|
|
13629
|
+
$ref: "#/components/schemas/RenderDomainQueryRecord"
|
|
13630
|
+
}
|
|
13631
|
+
]
|
|
13373
13632
|
};
|
|
13374
13633
|
}
|
|
13375
13634
|
case ":render.result?": {
|
|
@@ -13413,9 +13672,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13413
13672
|
}
|
|
13414
13673
|
}
|
|
13415
13674
|
},
|
|
13416
|
-
|
|
13417
|
-
|
|
13418
|
-
|
|
13675
|
+
schemas: [
|
|
13676
|
+
{
|
|
13677
|
+
$ref: "#/components/schemas/RenderDomainResultRecord"
|
|
13678
|
+
}
|
|
13679
|
+
]
|
|
13419
13680
|
};
|
|
13420
13681
|
}
|
|
13421
13682
|
case ":render.schedulers?": {
|
|
@@ -13436,9 +13697,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13436
13697
|
}
|
|
13437
13698
|
}
|
|
13438
13699
|
},
|
|
13439
|
-
|
|
13440
|
-
|
|
13441
|
-
|
|
13700
|
+
schemas: [
|
|
13701
|
+
{
|
|
13702
|
+
$ref: "#/components/schemas/RenderDomainSchedulersRecord"
|
|
13703
|
+
}
|
|
13704
|
+
]
|
|
13442
13705
|
};
|
|
13443
13706
|
}
|
|
13444
13707
|
case ":revs?": {
|
|
@@ -13460,9 +13723,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13460
13723
|
}
|
|
13461
13724
|
}
|
|
13462
13725
|
},
|
|
13463
|
-
|
|
13464
|
-
|
|
13465
|
-
|
|
13726
|
+
schemas: [
|
|
13727
|
+
{
|
|
13728
|
+
$ref: "#/components/schemas/RevsRecord"
|
|
13729
|
+
}
|
|
13730
|
+
]
|
|
13466
13731
|
};
|
|
13467
13732
|
}
|
|
13468
13733
|
case ":role.tags": {
|
|
@@ -13486,9 +13751,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13486
13751
|
}
|
|
13487
13752
|
}
|
|
13488
13753
|
},
|
|
13489
|
-
|
|
13490
|
-
|
|
13491
|
-
|
|
13754
|
+
schemas: [
|
|
13755
|
+
{
|
|
13756
|
+
$ref: "#/components/schemas/RoleTagsRecord"
|
|
13757
|
+
}
|
|
13758
|
+
]
|
|
13492
13759
|
};
|
|
13493
13760
|
}
|
|
13494
13761
|
case ":script": {
|
|
@@ -13526,9 +13793,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13526
13793
|
}
|
|
13527
13794
|
}
|
|
13528
13795
|
},
|
|
13529
|
-
|
|
13530
|
-
|
|
13531
|
-
|
|
13796
|
+
schemas: [
|
|
13797
|
+
{
|
|
13798
|
+
$ref: "#/components/schemas/ScriptRecord"
|
|
13799
|
+
}
|
|
13800
|
+
]
|
|
13532
13801
|
};
|
|
13533
13802
|
}
|
|
13534
13803
|
case ":script?": {
|
|
@@ -13668,9 +13937,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13668
13937
|
}
|
|
13669
13938
|
}
|
|
13670
13939
|
},
|
|
13671
|
-
|
|
13672
|
-
|
|
13673
|
-
|
|
13940
|
+
schemas: [
|
|
13941
|
+
{
|
|
13942
|
+
$ref: "#/components/schemas/ScriptEditorStateRecord"
|
|
13943
|
+
}
|
|
13944
|
+
]
|
|
13674
13945
|
};
|
|
13675
13946
|
}
|
|
13676
13947
|
case ":script.revisions?": {
|
|
@@ -13709,9 +13980,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13709
13980
|
}
|
|
13710
13981
|
}
|
|
13711
13982
|
},
|
|
13712
|
-
|
|
13713
|
-
|
|
13714
|
-
|
|
13983
|
+
schemas: [
|
|
13984
|
+
{
|
|
13985
|
+
$ref: "#/components/schemas/ScriptRevisionsRecord"
|
|
13986
|
+
}
|
|
13987
|
+
]
|
|
13715
13988
|
};
|
|
13716
13989
|
}
|
|
13717
13990
|
case ":script.revision": {
|
|
@@ -13744,9 +14017,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13744
14017
|
}
|
|
13745
14018
|
}
|
|
13746
14019
|
},
|
|
13747
|
-
|
|
13748
|
-
|
|
13749
|
-
|
|
14020
|
+
schemas: [
|
|
14021
|
+
{
|
|
14022
|
+
$ref: "#/components/schemas/ScriptRevisionRecord"
|
|
14023
|
+
}
|
|
14024
|
+
]
|
|
13750
14025
|
};
|
|
13751
14026
|
}
|
|
13752
14027
|
case ":script.revision?": {
|
|
@@ -13898,9 +14173,11 @@ function _schemaDomainRecord(domain) {
|
|
|
13898
14173
|
}
|
|
13899
14174
|
}
|
|
13900
14175
|
},
|
|
13901
|
-
|
|
13902
|
-
|
|
13903
|
-
|
|
14176
|
+
schemas: [
|
|
14177
|
+
{
|
|
14178
|
+
$ref: "#/components/schemas/ScriptEditorStateRevisionRecord"
|
|
14179
|
+
}
|
|
14180
|
+
]
|
|
13904
14181
|
};
|
|
13905
14182
|
}
|
|
13906
14183
|
case ":script.content?": {
|
|
@@ -14204,9 +14481,11 @@ function _schemaDomainRecord(domain) {
|
|
|
14204
14481
|
}
|
|
14205
14482
|
}
|
|
14206
14483
|
},
|
|
14207
|
-
|
|
14208
|
-
|
|
14209
|
-
|
|
14484
|
+
schemas: [
|
|
14485
|
+
{
|
|
14486
|
+
$ref: "#/components/schemas/ScriptContentRecord"
|
|
14487
|
+
}
|
|
14488
|
+
]
|
|
14210
14489
|
};
|
|
14211
14490
|
}
|
|
14212
14491
|
case ":script.text?": {
|
|
@@ -14231,9 +14510,11 @@ function _schemaDomainRecord(domain) {
|
|
|
14231
14510
|
}
|
|
14232
14511
|
}
|
|
14233
14512
|
},
|
|
14234
|
-
|
|
14235
|
-
|
|
14236
|
-
|
|
14513
|
+
schemas: [
|
|
14514
|
+
{
|
|
14515
|
+
$ref: "#/components/schemas/ScriptTextRecord"
|
|
14516
|
+
}
|
|
14517
|
+
]
|
|
14237
14518
|
};
|
|
14238
14519
|
}
|
|
14239
14520
|
case ":script.children": {
|
|
@@ -14256,9 +14537,11 @@ function _schemaDomainRecord(domain) {
|
|
|
14256
14537
|
}
|
|
14257
14538
|
}
|
|
14258
14539
|
},
|
|
14259
|
-
|
|
14260
|
-
|
|
14261
|
-
|
|
14540
|
+
schemas: [
|
|
14541
|
+
{
|
|
14542
|
+
$ref: "#/components/schemas/ScriptChildrenRecord"
|
|
14543
|
+
}
|
|
14544
|
+
]
|
|
14262
14545
|
};
|
|
14263
14546
|
}
|
|
14264
14547
|
case ":search": {
|
|
@@ -14428,9 +14711,11 @@ function _schemaDomainRecord(domain) {
|
|
|
14428
14711
|
}
|
|
14429
14712
|
}
|
|
14430
14713
|
},
|
|
14431
|
-
|
|
14432
|
-
|
|
14433
|
-
|
|
14714
|
+
schemas: [
|
|
14715
|
+
{
|
|
14716
|
+
$ref: "#/components/schemas/SearchRecord"
|
|
14717
|
+
}
|
|
14718
|
+
]
|
|
14434
14719
|
};
|
|
14435
14720
|
}
|
|
14436
14721
|
case ":search?": {
|
|
@@ -14461,9 +14746,11 @@ function _schemaDomainRecord(domain) {
|
|
|
14461
14746
|
}
|
|
14462
14747
|
}
|
|
14463
14748
|
},
|
|
14464
|
-
|
|
14465
|
-
|
|
14466
|
-
|
|
14749
|
+
schemas: [
|
|
14750
|
+
{
|
|
14751
|
+
$ref: "#/components/schemas/SearchRecordProvided"
|
|
14752
|
+
}
|
|
14753
|
+
]
|
|
14467
14754
|
};
|
|
14468
14755
|
}
|
|
14469
14756
|
case ":search.conditions": {
|
|
@@ -14486,9 +14773,11 @@ function _schemaDomainRecord(domain) {
|
|
|
14486
14773
|
}
|
|
14487
14774
|
}
|
|
14488
14775
|
},
|
|
14489
|
-
|
|
14490
|
-
|
|
14491
|
-
|
|
14776
|
+
schemas: [
|
|
14777
|
+
{
|
|
14778
|
+
$ref: "#/components/schemas/SearchDomainConditionsRecord"
|
|
14779
|
+
}
|
|
14780
|
+
]
|
|
14492
14781
|
};
|
|
14493
14782
|
}
|
|
14494
14783
|
case ":search.visibleColumnKeys": {
|
|
@@ -14511,9 +14800,11 @@ function _schemaDomainRecord(domain) {
|
|
|
14511
14800
|
}
|
|
14512
14801
|
}
|
|
14513
14802
|
},
|
|
14514
|
-
|
|
14515
|
-
|
|
14516
|
-
|
|
14803
|
+
schemas: [
|
|
14804
|
+
{
|
|
14805
|
+
$ref: "#/components/schemas/SearchDomainVisibleColumnKeysRecord"
|
|
14806
|
+
}
|
|
14807
|
+
]
|
|
14517
14808
|
};
|
|
14518
14809
|
}
|
|
14519
14810
|
case ":settings": {
|
|
@@ -15926,6 +16217,19 @@ function _schemaDomainRecord(domain) {
|
|
|
15926
16217
|
}
|
|
15927
16218
|
},
|
|
15928
16219
|
required: []
|
|
16220
|
+
},
|
|
16221
|
+
performance: {
|
|
16222
|
+
type: "object",
|
|
16223
|
+
properties: {
|
|
16224
|
+
ignoredMessages: {
|
|
16225
|
+
type: "array",
|
|
16226
|
+
items: {
|
|
16227
|
+
type: "string"
|
|
16228
|
+
},
|
|
16229
|
+
description: "List of message identifiers to ignore in overall health aggregation (format: \"serviceName:messageText\")"
|
|
16230
|
+
}
|
|
16231
|
+
},
|
|
16232
|
+
required: []
|
|
15929
16233
|
}
|
|
15930
16234
|
},
|
|
15931
16235
|
required: []
|
|
@@ -16105,9 +16409,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16105
16409
|
}
|
|
16106
16410
|
}
|
|
16107
16411
|
},
|
|
16108
|
-
|
|
16109
|
-
|
|
16110
|
-
|
|
16412
|
+
schemas: [
|
|
16413
|
+
{
|
|
16414
|
+
$ref: "#/components/schemas/Settings"
|
|
16415
|
+
}
|
|
16416
|
+
]
|
|
16111
16417
|
};
|
|
16112
16418
|
}
|
|
16113
16419
|
case ":settings.node": {
|
|
@@ -16137,9 +16443,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16137
16443
|
}
|
|
16138
16444
|
}
|
|
16139
16445
|
},
|
|
16140
|
-
|
|
16141
|
-
|
|
16142
|
-
|
|
16446
|
+
schemas: [
|
|
16447
|
+
{
|
|
16448
|
+
$ref: "#/components/schemas/SettingsNodeRecord"
|
|
16449
|
+
}
|
|
16450
|
+
]
|
|
16143
16451
|
};
|
|
16144
16452
|
}
|
|
16145
16453
|
case ":shotbox": {
|
|
@@ -16295,9 +16603,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16295
16603
|
}
|
|
16296
16604
|
}
|
|
16297
16605
|
},
|
|
16298
|
-
|
|
16299
|
-
|
|
16300
|
-
|
|
16606
|
+
schemas: [
|
|
16607
|
+
{
|
|
16608
|
+
$ref: "#/components/schemas/ShotboxDomainRecord"
|
|
16609
|
+
}
|
|
16610
|
+
]
|
|
16301
16611
|
};
|
|
16302
16612
|
}
|
|
16303
16613
|
case ":storyboard": {
|
|
@@ -16313,9 +16623,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16313
16623
|
}
|
|
16314
16624
|
}
|
|
16315
16625
|
},
|
|
16316
|
-
|
|
16317
|
-
|
|
16318
|
-
|
|
16626
|
+
schemas: [
|
|
16627
|
+
{
|
|
16628
|
+
$ref: "#/components/schemas/StoryboardDomainRecord"
|
|
16629
|
+
}
|
|
16630
|
+
]
|
|
16319
16631
|
};
|
|
16320
16632
|
}
|
|
16321
16633
|
case ":storyboard.pipelines": {
|
|
@@ -16337,9 +16649,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16337
16649
|
}
|
|
16338
16650
|
}
|
|
16339
16651
|
},
|
|
16340
|
-
|
|
16341
|
-
|
|
16342
|
-
|
|
16652
|
+
schemas: [
|
|
16653
|
+
{
|
|
16654
|
+
$ref: "#/components/schemas/StoryboardDomainPipelinesRecord"
|
|
16655
|
+
}
|
|
16656
|
+
]
|
|
16343
16657
|
};
|
|
16344
16658
|
}
|
|
16345
16659
|
case ":storyboard.descendants?": {
|
|
@@ -16361,9 +16675,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16361
16675
|
}
|
|
16362
16676
|
}
|
|
16363
16677
|
},
|
|
16364
|
-
|
|
16365
|
-
|
|
16366
|
-
|
|
16678
|
+
schemas: [
|
|
16679
|
+
{
|
|
16680
|
+
$ref: "#/components/schemas/StoryboardDescendantsRecord"
|
|
16681
|
+
}
|
|
16682
|
+
]
|
|
16367
16683
|
};
|
|
16368
16684
|
}
|
|
16369
16685
|
case ":storyboard.ancestors?": {
|
|
@@ -16385,9 +16701,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16385
16701
|
}
|
|
16386
16702
|
}
|
|
16387
16703
|
},
|
|
16388
|
-
|
|
16389
|
-
|
|
16390
|
-
|
|
16704
|
+
schemas: [
|
|
16705
|
+
{
|
|
16706
|
+
$ref: "#/components/schemas/StoryboardAncestorsRecord"
|
|
16707
|
+
}
|
|
16708
|
+
]
|
|
16391
16709
|
};
|
|
16392
16710
|
}
|
|
16393
16711
|
case ":subtitle-style": {
|
|
@@ -16496,9 +16814,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16496
16814
|
}
|
|
16497
16815
|
}
|
|
16498
16816
|
},
|
|
16499
|
-
|
|
16500
|
-
|
|
16501
|
-
|
|
16817
|
+
schemas: [
|
|
16818
|
+
{
|
|
16819
|
+
$ref: "#/components/schemas/SubtitleStyleDomainRecord"
|
|
16820
|
+
}
|
|
16821
|
+
]
|
|
16502
16822
|
};
|
|
16503
16823
|
}
|
|
16504
16824
|
case ":subtitle": {
|
|
@@ -16539,9 +16859,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16539
16859
|
}
|
|
16540
16860
|
}
|
|
16541
16861
|
},
|
|
16542
|
-
|
|
16543
|
-
|
|
16544
|
-
|
|
16862
|
+
schemas: [
|
|
16863
|
+
{
|
|
16864
|
+
$ref: "#/components/schemas/SubtitleDomainRecord"
|
|
16865
|
+
}
|
|
16866
|
+
]
|
|
16545
16867
|
};
|
|
16546
16868
|
}
|
|
16547
16869
|
case ":template": {
|
|
@@ -16587,9 +16909,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16587
16909
|
}
|
|
16588
16910
|
}
|
|
16589
16911
|
},
|
|
16590
|
-
|
|
16591
|
-
|
|
16592
|
-
|
|
16912
|
+
schemas: [
|
|
16913
|
+
{
|
|
16914
|
+
$ref: "#/components/schemas/TemplateRecord"
|
|
16915
|
+
}
|
|
16916
|
+
]
|
|
16593
16917
|
};
|
|
16594
16918
|
}
|
|
16595
16919
|
case ":_user-notification-status": {
|
|
@@ -16657,9 +16981,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16657
16981
|
}
|
|
16658
16982
|
}
|
|
16659
16983
|
},
|
|
16660
|
-
|
|
16661
|
-
|
|
16662
|
-
|
|
16984
|
+
schemas: [
|
|
16985
|
+
{
|
|
16986
|
+
$ref: "#/components/schemas/UserNotificationStatusDomainRecord"
|
|
16987
|
+
}
|
|
16988
|
+
]
|
|
16663
16989
|
};
|
|
16664
16990
|
}
|
|
16665
16991
|
case ":user-notification": {
|
|
@@ -16967,9 +17293,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16967
17293
|
}
|
|
16968
17294
|
}
|
|
16969
17295
|
},
|
|
16970
|
-
|
|
16971
|
-
|
|
16972
|
-
|
|
17296
|
+
schemas: [
|
|
17297
|
+
{
|
|
17298
|
+
$ref: "#/components/schemas/UserNotificationRecord"
|
|
17299
|
+
}
|
|
17300
|
+
]
|
|
16973
17301
|
};
|
|
16974
17302
|
}
|
|
16975
17303
|
case ":user-notification.readAt": {
|
|
@@ -16989,9 +17317,11 @@ function _schemaDomainRecord(domain) {
|
|
|
16989
17317
|
}
|
|
16990
17318
|
}
|
|
16991
17319
|
},
|
|
16992
|
-
|
|
16993
|
-
|
|
16994
|
-
|
|
17320
|
+
schemas: [
|
|
17321
|
+
{
|
|
17322
|
+
$ref: "#/components/schemas/UserNotificationDomainReadAtRecord"
|
|
17323
|
+
}
|
|
17324
|
+
]
|
|
16995
17325
|
};
|
|
16996
17326
|
}
|
|
16997
17327
|
case ":user": {
|
|
@@ -17023,9 +17353,11 @@ function _schemaDomainRecord(domain) {
|
|
|
17023
17353
|
}
|
|
17024
17354
|
}
|
|
17025
17355
|
},
|
|
17026
|
-
|
|
17027
|
-
|
|
17028
|
-
|
|
17356
|
+
schemas: [
|
|
17357
|
+
{
|
|
17358
|
+
$ref: "#/components/schemas/UserDomainRecord"
|
|
17359
|
+
}
|
|
17360
|
+
]
|
|
17029
17361
|
};
|
|
17030
17362
|
}
|
|
17031
17363
|
case ":user.latestSeenNotification": {
|
|
@@ -17044,9 +17376,11 @@ function _schemaDomainRecord(domain) {
|
|
|
17044
17376
|
}
|
|
17045
17377
|
}
|
|
17046
17378
|
},
|
|
17047
|
-
|
|
17048
|
-
|
|
17049
|
-
|
|
17379
|
+
schemas: [
|
|
17380
|
+
{
|
|
17381
|
+
$ref: "#/components/schemas/UserDomainLatestSeenNotificationRecord"
|
|
17382
|
+
}
|
|
17383
|
+
]
|
|
17050
17384
|
};
|
|
17051
17385
|
}
|
|
17052
17386
|
case ":user.receivedNotifications?": {
|
|
@@ -17069,9 +17403,11 @@ function _schemaDomainRecord(domain) {
|
|
|
17069
17403
|
}
|
|
17070
17404
|
}
|
|
17071
17405
|
},
|
|
17072
|
-
|
|
17073
|
-
|
|
17074
|
-
|
|
17406
|
+
schemas: [
|
|
17407
|
+
{
|
|
17408
|
+
$ref: "#/components/schemas/UserDomainReceivedNotificationsProvidedRecord"
|
|
17409
|
+
}
|
|
17410
|
+
]
|
|
17075
17411
|
};
|
|
17076
17412
|
}
|
|
17077
17413
|
case ":user.unseenNotifications?": {
|
|
@@ -17093,9 +17429,11 @@ function _schemaDomainRecord(domain) {
|
|
|
17093
17429
|
}
|
|
17094
17430
|
}
|
|
17095
17431
|
},
|
|
17096
|
-
|
|
17097
|
-
|
|
17098
|
-
|
|
17432
|
+
schemas: [
|
|
17433
|
+
{
|
|
17434
|
+
$ref: "#/components/schemas/UserDomainUnseenNotificationsRecord"
|
|
17435
|
+
}
|
|
17436
|
+
]
|
|
17099
17437
|
};
|
|
17100
17438
|
}
|
|
17101
17439
|
case ":username?": {
|
|
@@ -17117,9 +17455,11 @@ function _schemaDomainRecord(domain) {
|
|
|
17117
17455
|
}
|
|
17118
17456
|
}
|
|
17119
17457
|
},
|
|
17120
|
-
|
|
17121
|
-
|
|
17122
|
-
|
|
17458
|
+
schemas: [
|
|
17459
|
+
{
|
|
17460
|
+
$ref: "#/components/schemas/UsernameDomainRecord"
|
|
17461
|
+
}
|
|
17462
|
+
]
|
|
17123
17463
|
};
|
|
17124
17464
|
}
|
|
17125
17465
|
default: throw new Error("Unrecognized domain \"" + domain + "\"");
|