@nxtedition/types 23.0.62 → 23.0.63
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/render-profile.d.ts +15 -0
- package/dist/common/settings.d.ts +12 -0
- package/dist/common/subtitle-style.d.ts +1 -0
- package/dist/nxtpression.d.ts +45 -7
- package/dist/records/domains/event.d.ts +2 -0
- package/dist/records/domains/script.d.ts +8 -3
- package/dist/records/domains/shotbox.d.ts +1 -0
- package/dist/records/validate/assert-guard.js +1061 -613
- package/dist/records/validate/assert.js +1061 -613
- package/dist/records/validate/is.js +72 -63
- package/dist/records/validate/schemas.d.ts +9 -6
- package/dist/records/validate/schemas.js +844 -859
- package/dist/records/validate/stringify.js +156 -114
- package/dist/records/validate/validate-equals.js +1473 -743
- package/dist/records/validate/validate.js +963 -601
- package/package.json +4 -4
|
@@ -7,7 +7,7 @@ export function getSchemaByRecordName(name) {
|
|
|
7
7
|
version: "3.1",
|
|
8
8
|
components: {
|
|
9
9
|
schemas: {
|
|
10
|
-
|
|
10
|
+
DomainRows: {
|
|
11
11
|
type: "object",
|
|
12
12
|
properties: {
|
|
13
13
|
rows: {
|
|
@@ -24,27 +24,22 @@ export function getSchemaByRecordName(name) {
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
schema: {
|
|
27
|
-
|
|
28
|
-
prefixItems: [
|
|
29
|
-
{
|
|
30
|
-
$ref: "#/components/schemas/DomainRows.o1"
|
|
31
|
-
}
|
|
32
|
-
],
|
|
33
|
-
additionalItems: false
|
|
27
|
+
$ref: "#/components/schemas/DomainRows"
|
|
34
28
|
}
|
|
35
29
|
};
|
|
36
30
|
}
|
|
37
31
|
else if (parsed.type === "domain") {
|
|
38
|
-
return
|
|
32
|
+
return _schemaDomainRecord(parsed.domain);
|
|
39
33
|
}
|
|
40
34
|
else {
|
|
41
|
-
return
|
|
35
|
+
return _schemaExactRecord(parsed.exact);
|
|
42
36
|
}
|
|
43
37
|
}
|
|
44
38
|
export function getSchemaByDomain(domain) {
|
|
45
|
-
return
|
|
39
|
+
return _schemaDomainRecord(domain);
|
|
46
40
|
}
|
|
47
|
-
|
|
41
|
+
// Implemented by the ts-patch transform
|
|
42
|
+
function _schemaExactRecord(name) {
|
|
48
43
|
{
|
|
49
44
|
switch (name) {
|
|
50
45
|
case "asset.assignees": {
|
|
@@ -114,11 +109,9 @@ function _schemasExactRecord(name) {
|
|
|
114
109
|
}
|
|
115
110
|
}
|
|
116
111
|
},
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
}
|
|
121
|
-
]
|
|
112
|
+
schema: {
|
|
113
|
+
$ref: "#/components/schemas/AssetAssigneesRecord"
|
|
114
|
+
}
|
|
122
115
|
};
|
|
123
116
|
}
|
|
124
117
|
case "asset.clone": {
|
|
@@ -173,11 +166,9 @@ function _schemasExactRecord(name) {
|
|
|
173
166
|
}
|
|
174
167
|
}
|
|
175
168
|
},
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
}
|
|
180
|
-
]
|
|
169
|
+
schema: {
|
|
170
|
+
$ref: "#/components/schemas/AssetCloneRecord"
|
|
171
|
+
}
|
|
181
172
|
};
|
|
182
173
|
}
|
|
183
174
|
case "asset.deadlines": {
|
|
@@ -238,11 +229,9 @@ function _schemasExactRecord(name) {
|
|
|
238
229
|
}
|
|
239
230
|
}
|
|
240
231
|
},
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
}
|
|
245
|
-
]
|
|
232
|
+
schema: {
|
|
233
|
+
$ref: "#/components/schemas/AssetDeadlinesRecord"
|
|
234
|
+
}
|
|
246
235
|
};
|
|
247
236
|
}
|
|
248
237
|
case "asset.duration": {
|
|
@@ -306,11 +295,9 @@ function _schemasExactRecord(name) {
|
|
|
306
295
|
}
|
|
307
296
|
}
|
|
308
297
|
},
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
}
|
|
313
|
-
]
|
|
298
|
+
schema: {
|
|
299
|
+
$ref: "#/components/schemas/AssetDurationRecord"
|
|
300
|
+
}
|
|
314
301
|
};
|
|
315
302
|
}
|
|
316
303
|
case "asset.dynamicProperties?": {
|
|
@@ -516,11 +503,9 @@ function _schemasExactRecord(name) {
|
|
|
516
503
|
}
|
|
517
504
|
}
|
|
518
505
|
},
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
}
|
|
523
|
-
]
|
|
506
|
+
schema: {
|
|
507
|
+
$ref: "#/components/schemas/AssetDynamicPropertiesProvidedRecord"
|
|
508
|
+
}
|
|
524
509
|
};
|
|
525
510
|
}
|
|
526
511
|
case "asset.embedding": {
|
|
@@ -581,11 +566,9 @@ function _schemasExactRecord(name) {
|
|
|
581
566
|
}
|
|
582
567
|
}
|
|
583
568
|
},
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
}
|
|
588
|
-
]
|
|
569
|
+
schema: {
|
|
570
|
+
$ref: "#/components/schemas/AssetEmbeddingRecord"
|
|
571
|
+
}
|
|
589
572
|
};
|
|
590
573
|
}
|
|
591
574
|
case "asset.icon": {
|
|
@@ -646,11 +629,9 @@ function _schemasExactRecord(name) {
|
|
|
646
629
|
}
|
|
647
630
|
}
|
|
648
631
|
},
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
}
|
|
653
|
-
]
|
|
632
|
+
schema: {
|
|
633
|
+
$ref: "#/components/schemas/AssetIconRecord"
|
|
634
|
+
}
|
|
654
635
|
};
|
|
655
636
|
}
|
|
656
637
|
case "asset.locations": {
|
|
@@ -744,11 +725,9 @@ function _schemasExactRecord(name) {
|
|
|
744
725
|
}
|
|
745
726
|
}
|
|
746
727
|
},
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
}
|
|
751
|
-
]
|
|
728
|
+
schema: {
|
|
729
|
+
$ref: "#/components/schemas/AssetLocationsRecord"
|
|
730
|
+
}
|
|
752
731
|
};
|
|
753
732
|
}
|
|
754
733
|
case "asset.media": {
|
|
@@ -819,11 +798,9 @@ function _schemasExactRecord(name) {
|
|
|
819
798
|
}
|
|
820
799
|
}
|
|
821
800
|
},
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
}
|
|
826
|
-
]
|
|
801
|
+
schema: {
|
|
802
|
+
$ref: "#/components/schemas/AssetMediaRecord"
|
|
803
|
+
}
|
|
827
804
|
};
|
|
828
805
|
}
|
|
829
806
|
case "asset.tags": {
|
|
@@ -893,11 +870,9 @@ function _schemasExactRecord(name) {
|
|
|
893
870
|
}
|
|
894
871
|
}
|
|
895
872
|
},
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
}
|
|
900
|
-
]
|
|
873
|
+
schema: {
|
|
874
|
+
$ref: "#/components/schemas/AssetTagsRecord"
|
|
875
|
+
}
|
|
901
876
|
};
|
|
902
877
|
}
|
|
903
878
|
case "asset.title": {
|
|
@@ -958,11 +933,9 @@ function _schemasExactRecord(name) {
|
|
|
958
933
|
}
|
|
959
934
|
}
|
|
960
935
|
},
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
}
|
|
965
|
-
]
|
|
936
|
+
schema: {
|
|
937
|
+
$ref: "#/components/schemas/AssetTitleRecord"
|
|
938
|
+
}
|
|
966
939
|
};
|
|
967
940
|
}
|
|
968
941
|
case "asset.types": {
|
|
@@ -1004,11 +977,9 @@ function _schemasExactRecord(name) {
|
|
|
1004
977
|
}
|
|
1005
978
|
}
|
|
1006
979
|
},
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
}
|
|
1011
|
-
]
|
|
980
|
+
schema: {
|
|
981
|
+
$ref: "#/components/schemas/AssetTypesRecord"
|
|
982
|
+
}
|
|
1012
983
|
};
|
|
1013
984
|
}
|
|
1014
985
|
case "storage.locations?": {
|
|
@@ -1148,11 +1119,9 @@ function _schemasExactRecord(name) {
|
|
|
1148
1119
|
}
|
|
1149
1120
|
}
|
|
1150
1121
|
},
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
}
|
|
1155
|
-
]
|
|
1122
|
+
schema: {
|
|
1123
|
+
$ref: "#/components/schemas/StorageLocationsRecord"
|
|
1124
|
+
}
|
|
1156
1125
|
};
|
|
1157
1126
|
}
|
|
1158
1127
|
case "storage.zones?": {
|
|
@@ -1185,11 +1154,9 @@ function _schemasExactRecord(name) {
|
|
|
1185
1154
|
}
|
|
1186
1155
|
}
|
|
1187
1156
|
},
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
}
|
|
1192
|
-
]
|
|
1157
|
+
schema: {
|
|
1158
|
+
$ref: "#/components/schemas/StorageZonesRecord"
|
|
1159
|
+
}
|
|
1193
1160
|
};
|
|
1194
1161
|
}
|
|
1195
1162
|
case "nxt.status?": {
|
|
@@ -1380,11 +1347,9 @@ function _schemasExactRecord(name) {
|
|
|
1380
1347
|
}
|
|
1381
1348
|
}
|
|
1382
1349
|
},
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
}
|
|
1387
|
-
]
|
|
1350
|
+
schema: {
|
|
1351
|
+
$ref: "#/components/schemas/NxtStatusRecord"
|
|
1352
|
+
}
|
|
1388
1353
|
};
|
|
1389
1354
|
}
|
|
1390
1355
|
case "media.subtitles": {
|
|
@@ -1452,11 +1417,9 @@ function _schemasExactRecord(name) {
|
|
|
1452
1417
|
}
|
|
1453
1418
|
}
|
|
1454
1419
|
},
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
}
|
|
1459
|
-
]
|
|
1420
|
+
schema: {
|
|
1421
|
+
$ref: "#/components/schemas/MediaSubtitlesRecord"
|
|
1422
|
+
}
|
|
1460
1423
|
};
|
|
1461
1424
|
}
|
|
1462
1425
|
case "media.subtitles?": {
|
|
@@ -1524,11 +1487,9 @@ function _schemasExactRecord(name) {
|
|
|
1524
1487
|
}
|
|
1525
1488
|
}
|
|
1526
1489
|
},
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
}
|
|
1531
|
-
]
|
|
1490
|
+
schema: {
|
|
1491
|
+
$ref: "#/components/schemas/MediaSubtitlesProvidedRecord"
|
|
1492
|
+
}
|
|
1532
1493
|
};
|
|
1533
1494
|
}
|
|
1534
1495
|
case "media.transcribe": {
|
|
@@ -1742,11 +1703,9 @@ function _schemasExactRecord(name) {
|
|
|
1742
1703
|
}
|
|
1743
1704
|
}
|
|
1744
1705
|
},
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
}
|
|
1749
|
-
]
|
|
1706
|
+
schema: {
|
|
1707
|
+
$ref: "#/components/schemas/MediaTranscribeRecord"
|
|
1708
|
+
}
|
|
1750
1709
|
};
|
|
1751
1710
|
}
|
|
1752
1711
|
case "media.transcribe?": {
|
|
@@ -1960,11 +1919,9 @@ function _schemasExactRecord(name) {
|
|
|
1960
1919
|
}
|
|
1961
1920
|
}
|
|
1962
1921
|
},
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
}
|
|
1967
|
-
]
|
|
1922
|
+
schema: {
|
|
1923
|
+
$ref: "#/components/schemas/MediaTranscribeProvidedRecord"
|
|
1924
|
+
}
|
|
1968
1925
|
};
|
|
1969
1926
|
}
|
|
1970
1927
|
case "media.fonts?": {
|
|
@@ -2049,11 +2006,9 @@ function _schemasExactRecord(name) {
|
|
|
2049
2006
|
}
|
|
2050
2007
|
}
|
|
2051
2008
|
},
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
}
|
|
2056
|
-
]
|
|
2009
|
+
schema: {
|
|
2010
|
+
$ref: "#/components/schemas/MediaFonts"
|
|
2011
|
+
}
|
|
2057
2012
|
};
|
|
2058
2013
|
}
|
|
2059
2014
|
case "media.consolidate": {
|
|
@@ -2213,17 +2168,41 @@ function _schemasExactRecord(name) {
|
|
|
2213
2168
|
style: {
|
|
2214
2169
|
type: "string",
|
|
2215
2170
|
description: "Will pick styling from the corresponding `${style}:subtitle-style` asset."
|
|
2171
|
+
},
|
|
2172
|
+
ccconverter: {
|
|
2173
|
+
type: "object",
|
|
2174
|
+
properties: {
|
|
2175
|
+
preset: {
|
|
2176
|
+
type: "string",
|
|
2177
|
+
description: "This is an ID, which will be used to find a matching `${preset}:ccconverter-preset` record,\nwith settings to pass to ccconverter. If not set, `lang` will be used as a preset ID."
|
|
2178
|
+
}
|
|
2179
|
+
},
|
|
2180
|
+
required: []
|
|
2181
|
+
},
|
|
2182
|
+
ass: {
|
|
2183
|
+
type: "object",
|
|
2184
|
+
properties: {
|
|
2185
|
+
futureWordWrapping: {
|
|
2186
|
+
type: "boolean"
|
|
2187
|
+
},
|
|
2188
|
+
scaledBorderAndShadow: {
|
|
2189
|
+
type: "boolean"
|
|
2190
|
+
},
|
|
2191
|
+
enableUnsafeLineSpacingHack: {
|
|
2192
|
+
type: "boolean"
|
|
2193
|
+
}
|
|
2194
|
+
},
|
|
2195
|
+
required: [],
|
|
2196
|
+
description: "Options to pass to encodeASS when generating subtitles for burn-in."
|
|
2216
2197
|
}
|
|
2217
2198
|
},
|
|
2218
2199
|
required: []
|
|
2219
2200
|
}
|
|
2220
2201
|
}
|
|
2221
2202
|
},
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
}
|
|
2226
|
-
]
|
|
2203
|
+
schema: {
|
|
2204
|
+
$ref: "#/components/schemas/MediaConsolidateRecord"
|
|
2205
|
+
}
|
|
2227
2206
|
};
|
|
2228
2207
|
}
|
|
2229
2208
|
case "asset-daemon": {
|
|
@@ -2242,11 +2221,9 @@ function _schemasExactRecord(name) {
|
|
|
2242
2221
|
}
|
|
2243
2222
|
}
|
|
2244
2223
|
},
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
}
|
|
2249
|
-
]
|
|
2224
|
+
schema: {
|
|
2225
|
+
$ref: "#/components/schemas/AssetDaemonRecord"
|
|
2226
|
+
}
|
|
2250
2227
|
};
|
|
2251
2228
|
}
|
|
2252
2229
|
case "asset-daemon:user-notify.state": {
|
|
@@ -2278,11 +2255,9 @@ function _schemasExactRecord(name) {
|
|
|
2278
2255
|
}
|
|
2279
2256
|
}
|
|
2280
2257
|
},
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
}
|
|
2285
|
-
]
|
|
2258
|
+
schema: {
|
|
2259
|
+
$ref: "#/components/schemas/AssetDaemonUserNotifyStateRecord"
|
|
2260
|
+
}
|
|
2286
2261
|
};
|
|
2287
2262
|
}
|
|
2288
2263
|
case "deepstream-replicator.stats?": {
|
|
@@ -2360,18 +2335,17 @@ function _schemasExactRecord(name) {
|
|
|
2360
2335
|
}
|
|
2361
2336
|
}
|
|
2362
2337
|
},
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
}
|
|
2367
|
-
]
|
|
2338
|
+
schema: {
|
|
2339
|
+
$ref: "#/components/schemas/DeepstreamReplicatorStatsRecord"
|
|
2340
|
+
}
|
|
2368
2341
|
};
|
|
2369
2342
|
}
|
|
2370
2343
|
default: throw new Error("Unrecognized name \"" + name + "\"");
|
|
2371
2344
|
}
|
|
2372
2345
|
}
|
|
2373
2346
|
}
|
|
2374
|
-
|
|
2347
|
+
// Implemented by the ts-patch transform
|
|
2348
|
+
function _schemaDomainRecord(domain) {
|
|
2375
2349
|
{
|
|
2376
2350
|
switch (domain) {
|
|
2377
2351
|
case ":asset.title?": {
|
|
@@ -2397,11 +2371,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2397
2371
|
}
|
|
2398
2372
|
}
|
|
2399
2373
|
},
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
}
|
|
2404
|
-
]
|
|
2374
|
+
schema: {
|
|
2375
|
+
$ref: "#/components/schemas/AssetTitleProvidedRecord"
|
|
2376
|
+
}
|
|
2405
2377
|
};
|
|
2406
2378
|
}
|
|
2407
2379
|
case ":asset.rawTypes?": {
|
|
@@ -2423,11 +2395,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2423
2395
|
}
|
|
2424
2396
|
}
|
|
2425
2397
|
},
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
}
|
|
2430
|
-
]
|
|
2398
|
+
schema: {
|
|
2399
|
+
$ref: "#/components/schemas/AssetRawTypesProvidedRecord"
|
|
2400
|
+
}
|
|
2431
2401
|
};
|
|
2432
2402
|
}
|
|
2433
2403
|
case ":asset.types?": {
|
|
@@ -2449,11 +2419,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2449
2419
|
}
|
|
2450
2420
|
}
|
|
2451
2421
|
},
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
}
|
|
2456
|
-
]
|
|
2422
|
+
schema: {
|
|
2423
|
+
$ref: "#/components/schemas/AssetTypesProvidedRecord"
|
|
2424
|
+
}
|
|
2457
2425
|
};
|
|
2458
2426
|
}
|
|
2459
2427
|
case ":asset.assignees?": {
|
|
@@ -2475,11 +2443,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2475
2443
|
}
|
|
2476
2444
|
}
|
|
2477
2445
|
},
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
}
|
|
2482
|
-
]
|
|
2446
|
+
schema: {
|
|
2447
|
+
$ref: "#/components/schemas/AssetAssigneesProvidedRecord"
|
|
2448
|
+
}
|
|
2483
2449
|
};
|
|
2484
2450
|
}
|
|
2485
2451
|
case ":asset.refs?": {
|
|
@@ -2520,11 +2486,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2520
2486
|
}
|
|
2521
2487
|
}
|
|
2522
2488
|
},
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
}
|
|
2527
|
-
]
|
|
2489
|
+
schema: {
|
|
2490
|
+
$ref: "#/components/schemas/AssetRefsProvidedRecord"
|
|
2491
|
+
}
|
|
2528
2492
|
};
|
|
2529
2493
|
}
|
|
2530
2494
|
case ":asset.tags?": {
|
|
@@ -2546,11 +2510,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2546
2510
|
}
|
|
2547
2511
|
}
|
|
2548
2512
|
},
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
}
|
|
2553
|
-
]
|
|
2513
|
+
schema: {
|
|
2514
|
+
$ref: "#/components/schemas/AssetTagsProvidedRecord"
|
|
2515
|
+
}
|
|
2554
2516
|
};
|
|
2555
2517
|
}
|
|
2556
2518
|
case ":asset.fileRefs?": {
|
|
@@ -2572,11 +2534,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2572
2534
|
}
|
|
2573
2535
|
}
|
|
2574
2536
|
},
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
}
|
|
2579
|
-
]
|
|
2537
|
+
schema: {
|
|
2538
|
+
$ref: "#/components/schemas/AssetFileRefsProvidedRecord"
|
|
2539
|
+
}
|
|
2580
2540
|
};
|
|
2581
2541
|
}
|
|
2582
2542
|
case ":asset.created?": {
|
|
@@ -2601,11 +2561,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2601
2561
|
}
|
|
2602
2562
|
}
|
|
2603
2563
|
},
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
}
|
|
2608
|
-
]
|
|
2564
|
+
schema: {
|
|
2565
|
+
$ref: "#/components/schemas/AssetCreatedProvidedRecord"
|
|
2566
|
+
}
|
|
2609
2567
|
};
|
|
2610
2568
|
}
|
|
2611
2569
|
case ":asset.modified?": {
|
|
@@ -2633,11 +2591,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2633
2591
|
}
|
|
2634
2592
|
}
|
|
2635
2593
|
},
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
}
|
|
2640
|
-
]
|
|
2594
|
+
schema: {
|
|
2595
|
+
$ref: "#/components/schemas/AssetModifiedProvidedRecord"
|
|
2596
|
+
}
|
|
2641
2597
|
};
|
|
2642
2598
|
}
|
|
2643
2599
|
case ":asset.status?": {
|
|
@@ -2698,11 +2654,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2698
2654
|
}
|
|
2699
2655
|
}
|
|
2700
2656
|
},
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
}
|
|
2705
|
-
]
|
|
2657
|
+
schema: {
|
|
2658
|
+
$ref: "#/components/schemas/AssetDomainStatusProvidedRecord"
|
|
2659
|
+
}
|
|
2706
2660
|
};
|
|
2707
2661
|
}
|
|
2708
2662
|
case ":asset.icon?": {
|
|
@@ -2728,11 +2682,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2728
2682
|
}
|
|
2729
2683
|
}
|
|
2730
2684
|
},
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
}
|
|
2735
|
-
]
|
|
2685
|
+
schema: {
|
|
2686
|
+
$ref: "#/components/schemas/AssetDomainIconProvidedRecord"
|
|
2687
|
+
}
|
|
2736
2688
|
};
|
|
2737
2689
|
}
|
|
2738
2690
|
case ":asset.deadlines?": {
|
|
@@ -2754,11 +2706,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2754
2706
|
}
|
|
2755
2707
|
}
|
|
2756
2708
|
},
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
}
|
|
2761
|
-
]
|
|
2709
|
+
schema: {
|
|
2710
|
+
$ref: "#/components/schemas/AssetDomainDeadlinesProvidedRecord"
|
|
2711
|
+
}
|
|
2762
2712
|
};
|
|
2763
2713
|
}
|
|
2764
2714
|
case ":asset.publish?": {
|
|
@@ -2780,11 +2730,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2780
2730
|
}
|
|
2781
2731
|
}
|
|
2782
2732
|
},
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
}
|
|
2787
|
-
]
|
|
2733
|
+
schema: {
|
|
2734
|
+
$ref: "#/components/schemas/AssetDomainPublishProvidedRecord"
|
|
2735
|
+
}
|
|
2788
2736
|
};
|
|
2789
2737
|
}
|
|
2790
2738
|
case ":asset.published?": {
|
|
@@ -2802,11 +2750,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2802
2750
|
}
|
|
2803
2751
|
}
|
|
2804
2752
|
},
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
}
|
|
2809
|
-
]
|
|
2753
|
+
schema: {
|
|
2754
|
+
$ref: "#/components/schemas/AssetDomainPublishedProvidedRecord"
|
|
2755
|
+
}
|
|
2810
2756
|
};
|
|
2811
2757
|
}
|
|
2812
2758
|
case ":asset.duration?": {
|
|
@@ -2832,11 +2778,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2832
2778
|
}
|
|
2833
2779
|
}
|
|
2834
2780
|
},
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
}
|
|
2839
|
-
]
|
|
2781
|
+
schema: {
|
|
2782
|
+
$ref: "#/components/schemas/AssetDomainDurationProvidedRecord"
|
|
2783
|
+
}
|
|
2840
2784
|
};
|
|
2841
2785
|
}
|
|
2842
2786
|
case ":asset.locations?": {
|
|
@@ -2870,11 +2814,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2870
2814
|
}
|
|
2871
2815
|
}
|
|
2872
2816
|
},
|
|
2873
|
-
|
|
2874
|
-
|
|
2875
|
-
|
|
2876
|
-
}
|
|
2877
|
-
]
|
|
2817
|
+
schema: {
|
|
2818
|
+
$ref: "#/components/schemas/AssetDomainLocationsProvidedRecord"
|
|
2819
|
+
}
|
|
2878
2820
|
};
|
|
2879
2821
|
}
|
|
2880
2822
|
case ":asset.controllers?": {
|
|
@@ -2896,11 +2838,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2896
2838
|
}
|
|
2897
2839
|
}
|
|
2898
2840
|
},
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
}
|
|
2903
|
-
]
|
|
2841
|
+
schema: {
|
|
2842
|
+
$ref: "#/components/schemas/AssetDomainControllersProvidedRecord"
|
|
2843
|
+
}
|
|
2904
2844
|
};
|
|
2905
2845
|
}
|
|
2906
2846
|
case ":asset.embedding?": {
|
|
@@ -2922,11 +2862,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2922
2862
|
}
|
|
2923
2863
|
}
|
|
2924
2864
|
},
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
|
|
2928
|
-
}
|
|
2929
|
-
]
|
|
2865
|
+
schema: {
|
|
2866
|
+
$ref: "#/components/schemas/AssetDomainEmbeddingProvidedRecord"
|
|
2867
|
+
}
|
|
2930
2868
|
};
|
|
2931
2869
|
}
|
|
2932
2870
|
case ":asset.media?": {
|
|
@@ -2942,11 +2880,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2942
2880
|
}
|
|
2943
2881
|
}
|
|
2944
2882
|
},
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
}
|
|
2949
|
-
]
|
|
2883
|
+
schema: {
|
|
2884
|
+
$ref: "#/components/schemas/AssetDomainMediaProvidedRecord"
|
|
2885
|
+
}
|
|
2950
2886
|
};
|
|
2951
2887
|
}
|
|
2952
2888
|
case ":asset.presence?": {
|
|
@@ -2968,11 +2904,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2968
2904
|
}
|
|
2969
2905
|
}
|
|
2970
2906
|
},
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
}
|
|
2975
|
-
]
|
|
2907
|
+
schema: {
|
|
2908
|
+
$ref: "#/components/schemas/AssetDomainPresenceProvidedRecord"
|
|
2909
|
+
}
|
|
2976
2910
|
};
|
|
2977
2911
|
}
|
|
2978
2912
|
case ":asset.comments?": {
|
|
@@ -2995,11 +2929,9 @@ function _schemasDomainRecord(domain) {
|
|
|
2995
2929
|
}
|
|
2996
2930
|
}
|
|
2997
2931
|
},
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
}
|
|
3002
|
-
]
|
|
2932
|
+
schema: {
|
|
2933
|
+
$ref: "#/components/schemas/AssetCommentsRecord"
|
|
2934
|
+
}
|
|
3003
2935
|
};
|
|
3004
2936
|
}
|
|
3005
2937
|
case ":asset.record?": {
|
|
@@ -3375,11 +3307,9 @@ function _schemasDomainRecord(domain) {
|
|
|
3375
3307
|
}
|
|
3376
3308
|
}
|
|
3377
3309
|
},
|
|
3378
|
-
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
}
|
|
3382
|
-
]
|
|
3310
|
+
schema: {
|
|
3311
|
+
$ref: "#/components/schemas/AssetRecordProvidedRecord"
|
|
3312
|
+
}
|
|
3383
3313
|
};
|
|
3384
3314
|
}
|
|
3385
3315
|
case ":auth": {
|
|
@@ -3406,11 +3336,9 @@ function _schemasDomainRecord(domain) {
|
|
|
3406
3336
|
}
|
|
3407
3337
|
}
|
|
3408
3338
|
},
|
|
3409
|
-
|
|
3410
|
-
|
|
3411
|
-
|
|
3412
|
-
}
|
|
3413
|
-
]
|
|
3339
|
+
schema: {
|
|
3340
|
+
$ref: "#/components/schemas/AuthDomainRecord"
|
|
3341
|
+
}
|
|
3414
3342
|
};
|
|
3415
3343
|
}
|
|
3416
3344
|
case ":bundle": {
|
|
@@ -3446,11 +3374,9 @@ function _schemasDomainRecord(domain) {
|
|
|
3446
3374
|
}
|
|
3447
3375
|
}
|
|
3448
3376
|
},
|
|
3449
|
-
|
|
3450
|
-
|
|
3451
|
-
|
|
3452
|
-
}
|
|
3453
|
-
]
|
|
3377
|
+
schema: {
|
|
3378
|
+
$ref: "#/components/schemas/BundleRecord"
|
|
3379
|
+
}
|
|
3454
3380
|
};
|
|
3455
3381
|
}
|
|
3456
3382
|
case ":bundle.revisions": {
|
|
@@ -3494,11 +3420,9 @@ function _schemasDomainRecord(domain) {
|
|
|
3494
3420
|
}
|
|
3495
3421
|
}
|
|
3496
3422
|
},
|
|
3497
|
-
|
|
3498
|
-
|
|
3499
|
-
|
|
3500
|
-
}
|
|
3501
|
-
]
|
|
3423
|
+
schema: {
|
|
3424
|
+
$ref: "#/components/schemas/BundleRevisionsRecord"
|
|
3425
|
+
}
|
|
3502
3426
|
};
|
|
3503
3427
|
}
|
|
3504
3428
|
case ":calendarevent": {
|
|
@@ -3609,11 +3533,9 @@ function _schemasDomainRecord(domain) {
|
|
|
3609
3533
|
}
|
|
3610
3534
|
}
|
|
3611
3535
|
},
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
}
|
|
3616
|
-
]
|
|
3536
|
+
schema: {
|
|
3537
|
+
$ref: "#/components/schemas/CalendarEventDomainRecord"
|
|
3538
|
+
}
|
|
3617
3539
|
};
|
|
3618
3540
|
}
|
|
3619
3541
|
case ":clone": {
|
|
@@ -3668,11 +3590,9 @@ function _schemasDomainRecord(domain) {
|
|
|
3668
3590
|
}
|
|
3669
3591
|
}
|
|
3670
3592
|
},
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3674
|
-
}
|
|
3675
|
-
]
|
|
3593
|
+
schema: {
|
|
3594
|
+
$ref: "#/components/schemas/CloneDomainCloneRecord"
|
|
3595
|
+
}
|
|
3676
3596
|
};
|
|
3677
3597
|
}
|
|
3678
3598
|
case ":comment-reaction": {
|
|
@@ -3701,11 +3621,9 @@ function _schemasDomainRecord(domain) {
|
|
|
3701
3621
|
}
|
|
3702
3622
|
}
|
|
3703
3623
|
},
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
}
|
|
3708
|
-
]
|
|
3624
|
+
schema: {
|
|
3625
|
+
$ref: "#/components/schemas/CommentReactionDomainRecord"
|
|
3626
|
+
}
|
|
3709
3627
|
};
|
|
3710
3628
|
}
|
|
3711
3629
|
case ":comment-read-mark": {
|
|
@@ -3734,11 +3652,9 @@ function _schemasDomainRecord(domain) {
|
|
|
3734
3652
|
}
|
|
3735
3653
|
}
|
|
3736
3654
|
},
|
|
3737
|
-
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
}
|
|
3741
|
-
]
|
|
3655
|
+
schema: {
|
|
3656
|
+
$ref: "#/components/schemas/CommentReadMarkDomainRecord"
|
|
3657
|
+
}
|
|
3742
3658
|
};
|
|
3743
3659
|
}
|
|
3744
3660
|
case ":comment": {
|
|
@@ -4060,11 +3976,9 @@ function _schemasDomainRecord(domain) {
|
|
|
4060
3976
|
}
|
|
4061
3977
|
}
|
|
4062
3978
|
},
|
|
4063
|
-
|
|
4064
|
-
|
|
4065
|
-
|
|
4066
|
-
}
|
|
4067
|
-
]
|
|
3979
|
+
schema: {
|
|
3980
|
+
$ref: "#/components/schemas/CommentDomainCommentRecord"
|
|
3981
|
+
}
|
|
4068
3982
|
};
|
|
4069
3983
|
}
|
|
4070
3984
|
case ":comment.reactions?": {
|
|
@@ -4097,11 +4011,9 @@ function _schemasDomainRecord(domain) {
|
|
|
4097
4011
|
}
|
|
4098
4012
|
}
|
|
4099
4013
|
},
|
|
4100
|
-
|
|
4101
|
-
|
|
4102
|
-
|
|
4103
|
-
}
|
|
4104
|
-
]
|
|
4014
|
+
schema: {
|
|
4015
|
+
$ref: "#/components/schemas/CommentReactionsProvidedRecord"
|
|
4016
|
+
}
|
|
4105
4017
|
};
|
|
4106
4018
|
}
|
|
4107
4019
|
case ":comment.replies?": {
|
|
@@ -4123,11 +4035,9 @@ function _schemasDomainRecord(domain) {
|
|
|
4123
4035
|
}
|
|
4124
4036
|
}
|
|
4125
4037
|
},
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
}
|
|
4130
|
-
]
|
|
4038
|
+
schema: {
|
|
4039
|
+
$ref: "#/components/schemas/CommentDomainRepliesProvidedRecord"
|
|
4040
|
+
}
|
|
4131
4041
|
};
|
|
4132
4042
|
}
|
|
4133
4043
|
case ":comment.readMarks?": {
|
|
@@ -4149,11 +4059,9 @@ function _schemasDomainRecord(domain) {
|
|
|
4149
4059
|
}
|
|
4150
4060
|
}
|
|
4151
4061
|
},
|
|
4152
|
-
|
|
4153
|
-
|
|
4154
|
-
|
|
4155
|
-
}
|
|
4156
|
-
]
|
|
4062
|
+
schema: {
|
|
4063
|
+
$ref: "#/components/schemas/CommentDomainReadMarksProvidedRecord"
|
|
4064
|
+
}
|
|
4157
4065
|
};
|
|
4158
4066
|
}
|
|
4159
4067
|
case ":condition": {
|
|
@@ -4179,11 +4087,9 @@ function _schemasDomainRecord(domain) {
|
|
|
4179
4087
|
}
|
|
4180
4088
|
}
|
|
4181
4089
|
},
|
|
4182
|
-
|
|
4183
|
-
|
|
4184
|
-
|
|
4185
|
-
}
|
|
4186
|
-
]
|
|
4090
|
+
schema: {
|
|
4091
|
+
$ref: "#/components/schemas/SearchCondition"
|
|
4092
|
+
}
|
|
4187
4093
|
};
|
|
4188
4094
|
}
|
|
4189
4095
|
case ":connection": {
|
|
@@ -6472,36 +6378,34 @@ function _schemasDomainRecord(domain) {
|
|
|
6472
6378
|
}
|
|
6473
6379
|
}
|
|
6474
6380
|
},
|
|
6475
|
-
|
|
6476
|
-
|
|
6477
|
-
|
|
6478
|
-
|
|
6479
|
-
|
|
6480
|
-
|
|
6481
|
-
|
|
6482
|
-
|
|
6483
|
-
|
|
6484
|
-
|
|
6485
|
-
|
|
6486
|
-
|
|
6487
|
-
|
|
6488
|
-
|
|
6489
|
-
|
|
6490
|
-
|
|
6491
|
-
|
|
6492
|
-
|
|
6493
|
-
|
|
6494
|
-
|
|
6495
|
-
|
|
6496
|
-
|
|
6497
|
-
|
|
6498
|
-
|
|
6499
|
-
|
|
6500
|
-
|
|
6501
|
-
|
|
6502
|
-
|
|
6503
|
-
}
|
|
6504
|
-
]
|
|
6381
|
+
schema: {
|
|
6382
|
+
oneOf: [
|
|
6383
|
+
{
|
|
6384
|
+
$ref: "#/components/schemas/FileConnectionFtpRecord"
|
|
6385
|
+
},
|
|
6386
|
+
{
|
|
6387
|
+
$ref: "#/components/schemas/FileConnectionHttpRecord"
|
|
6388
|
+
},
|
|
6389
|
+
{
|
|
6390
|
+
$ref: "#/components/schemas/FileConnectionS3Record"
|
|
6391
|
+
},
|
|
6392
|
+
{
|
|
6393
|
+
$ref: "#/components/schemas/FileConnectionSmbRecord"
|
|
6394
|
+
},
|
|
6395
|
+
{
|
|
6396
|
+
$ref: "#/components/schemas/FileConnectionSftpRecord"
|
|
6397
|
+
},
|
|
6398
|
+
{
|
|
6399
|
+
$ref: "#/components/schemas/FacebookConnectionRecord"
|
|
6400
|
+
},
|
|
6401
|
+
{
|
|
6402
|
+
$ref: "#/components/schemas/ReutersConnectionRecord"
|
|
6403
|
+
},
|
|
6404
|
+
{
|
|
6405
|
+
$ref: "#/components/schemas/EmptyConnectionRecord"
|
|
6406
|
+
}
|
|
6407
|
+
]
|
|
6408
|
+
}
|
|
6505
6409
|
};
|
|
6506
6410
|
}
|
|
6507
6411
|
case ":connection.methods?": {
|
|
@@ -6524,11 +6428,9 @@ function _schemasDomainRecord(domain) {
|
|
|
6524
6428
|
}
|
|
6525
6429
|
}
|
|
6526
6430
|
},
|
|
6527
|
-
|
|
6528
|
-
|
|
6529
|
-
|
|
6530
|
-
}
|
|
6531
|
-
]
|
|
6431
|
+
schema: {
|
|
6432
|
+
$ref: "#/components/schemas/ConnectionMethodsBase"
|
|
6433
|
+
}
|
|
6532
6434
|
};
|
|
6533
6435
|
}
|
|
6534
6436
|
case ":connection.stats?": {
|
|
@@ -6562,11 +6464,9 @@ function _schemasDomainRecord(domain) {
|
|
|
6562
6464
|
}
|
|
6563
6465
|
}
|
|
6564
6466
|
},
|
|
6565
|
-
|
|
6566
|
-
|
|
6567
|
-
|
|
6568
|
-
}
|
|
6569
|
-
]
|
|
6467
|
+
schema: {
|
|
6468
|
+
$ref: "#/components/schemas/ConnectionStatsBase"
|
|
6469
|
+
}
|
|
6570
6470
|
};
|
|
6571
6471
|
}
|
|
6572
6472
|
case ":contact": {
|
|
@@ -6606,11 +6506,9 @@ function _schemasDomainRecord(domain) {
|
|
|
6606
6506
|
}
|
|
6607
6507
|
}
|
|
6608
6508
|
},
|
|
6609
|
-
|
|
6610
|
-
|
|
6611
|
-
|
|
6612
|
-
}
|
|
6613
|
-
]
|
|
6509
|
+
schema: {
|
|
6510
|
+
$ref: "#/components/schemas/ContactRecord"
|
|
6511
|
+
}
|
|
6614
6512
|
};
|
|
6615
6513
|
}
|
|
6616
6514
|
case ":deepstream.replicate": {
|
|
@@ -6645,11 +6543,9 @@ function _schemasDomainRecord(domain) {
|
|
|
6645
6543
|
}
|
|
6646
6544
|
}
|
|
6647
6545
|
},
|
|
6648
|
-
|
|
6649
|
-
|
|
6650
|
-
|
|
6651
|
-
}
|
|
6652
|
-
]
|
|
6546
|
+
schema: {
|
|
6547
|
+
$ref: "#/components/schemas/DeepstreamDomainReplicateRecord"
|
|
6548
|
+
}
|
|
6653
6549
|
};
|
|
6654
6550
|
}
|
|
6655
6551
|
case ":design?": {
|
|
@@ -6690,11 +6586,9 @@ function _schemasDomainRecord(domain) {
|
|
|
6690
6586
|
}
|
|
6691
6587
|
}
|
|
6692
6588
|
},
|
|
6693
|
-
|
|
6694
|
-
|
|
6695
|
-
|
|
6696
|
-
}
|
|
6697
|
-
]
|
|
6589
|
+
schema: {
|
|
6590
|
+
$ref: "#/components/schemas/DesignDomainRecordstringstringunknown"
|
|
6591
|
+
}
|
|
6698
6592
|
};
|
|
6699
6593
|
}
|
|
6700
6594
|
case ":device": {
|
|
@@ -6725,11 +6619,9 @@ function _schemasDomainRecord(domain) {
|
|
|
6725
6619
|
}
|
|
6726
6620
|
}
|
|
6727
6621
|
},
|
|
6728
|
-
|
|
6729
|
-
|
|
6730
|
-
|
|
6731
|
-
}
|
|
6732
|
-
]
|
|
6622
|
+
schema: {
|
|
6623
|
+
$ref: "#/components/schemas/DeviceDomainRecord"
|
|
6624
|
+
}
|
|
6733
6625
|
};
|
|
6734
6626
|
}
|
|
6735
6627
|
case ":device.status?": {
|
|
@@ -6754,11 +6646,9 @@ function _schemasDomainRecord(domain) {
|
|
|
6754
6646
|
}
|
|
6755
6647
|
}
|
|
6756
6648
|
},
|
|
6757
|
-
|
|
6758
|
-
|
|
6759
|
-
|
|
6760
|
-
}
|
|
6761
|
-
]
|
|
6649
|
+
schema: {
|
|
6650
|
+
$ref: "#/components/schemas/DeviceDomainStatusRecord"
|
|
6651
|
+
}
|
|
6762
6652
|
};
|
|
6763
6653
|
}
|
|
6764
6654
|
case ":edit": {
|
|
@@ -6801,11 +6691,9 @@ function _schemasDomainRecord(domain) {
|
|
|
6801
6691
|
}
|
|
6802
6692
|
}
|
|
6803
6693
|
},
|
|
6804
|
-
|
|
6805
|
-
|
|
6806
|
-
|
|
6807
|
-
}
|
|
6808
|
-
]
|
|
6694
|
+
schema: {
|
|
6695
|
+
$ref: "#/components/schemas/EditRecord"
|
|
6696
|
+
}
|
|
6809
6697
|
};
|
|
6810
6698
|
}
|
|
6811
6699
|
case ":event": {
|
|
@@ -6890,11 +6778,9 @@ function _schemasDomainRecord(domain) {
|
|
|
6890
6778
|
}
|
|
6891
6779
|
}
|
|
6892
6780
|
},
|
|
6893
|
-
|
|
6894
|
-
|
|
6895
|
-
|
|
6896
|
-
}
|
|
6897
|
-
]
|
|
6781
|
+
schema: {
|
|
6782
|
+
$ref: "#/components/schemas/EventRecord"
|
|
6783
|
+
}
|
|
6898
6784
|
};
|
|
6899
6785
|
}
|
|
6900
6786
|
case ":event._template?": {
|
|
@@ -6933,11 +6819,9 @@ function _schemasDomainRecord(domain) {
|
|
|
6933
6819
|
}
|
|
6934
6820
|
}
|
|
6935
6821
|
},
|
|
6936
|
-
|
|
6937
|
-
|
|
6938
|
-
|
|
6939
|
-
}
|
|
6940
|
-
]
|
|
6822
|
+
schema: {
|
|
6823
|
+
$ref: "#/components/schemas/EventTemplateRecord"
|
|
6824
|
+
}
|
|
6941
6825
|
};
|
|
6942
6826
|
}
|
|
6943
6827
|
case ":event.overlay?": {
|
|
@@ -6979,6 +6863,22 @@ function _schemasDomainRecord(domain) {
|
|
|
6979
6863
|
},
|
|
6980
6864
|
startTime: {
|
|
6981
6865
|
type: "number"
|
|
6866
|
+
},
|
|
6867
|
+
shotboxGroup: {
|
|
6868
|
+
oneOf: [
|
|
6869
|
+
{
|
|
6870
|
+
type: "string"
|
|
6871
|
+
},
|
|
6872
|
+
{
|
|
6873
|
+
type: "array",
|
|
6874
|
+
items: {
|
|
6875
|
+
type: "string"
|
|
6876
|
+
}
|
|
6877
|
+
}
|
|
6878
|
+
]
|
|
6879
|
+
},
|
|
6880
|
+
shotboxVisible: {
|
|
6881
|
+
type: "boolean"
|
|
6982
6882
|
}
|
|
6983
6883
|
},
|
|
6984
6884
|
required: [],
|
|
@@ -7024,11 +6924,9 @@ function _schemasDomainRecord(domain) {
|
|
|
7024
6924
|
}
|
|
7025
6925
|
}
|
|
7026
6926
|
},
|
|
7027
|
-
|
|
7028
|
-
|
|
7029
|
-
|
|
7030
|
-
}
|
|
7031
|
-
]
|
|
6927
|
+
schema: {
|
|
6928
|
+
$ref: "#/components/schemas/EventOverlayRecord"
|
|
6929
|
+
}
|
|
7032
6930
|
};
|
|
7033
6931
|
}
|
|
7034
6932
|
case ":event.template?": {
|
|
@@ -7067,11 +6965,9 @@ function _schemasDomainRecord(domain) {
|
|
|
7067
6965
|
}
|
|
7068
6966
|
}
|
|
7069
6967
|
},
|
|
7070
|
-
|
|
7071
|
-
|
|
7072
|
-
|
|
7073
|
-
}
|
|
7074
|
-
]
|
|
6968
|
+
schema: {
|
|
6969
|
+
$ref: "#/components/schemas/EventTemplateRecord"
|
|
6970
|
+
}
|
|
7075
6971
|
};
|
|
7076
6972
|
}
|
|
7077
6973
|
case ":event.duration?": {
|
|
@@ -7106,11 +7002,9 @@ function _schemasDomainRecord(domain) {
|
|
|
7106
7002
|
}
|
|
7107
7003
|
}
|
|
7108
7004
|
},
|
|
7109
|
-
|
|
7110
|
-
|
|
7111
|
-
|
|
7112
|
-
}
|
|
7113
|
-
]
|
|
7005
|
+
schema: {
|
|
7006
|
+
$ref: "#/components/schemas/EventDurationRecord"
|
|
7007
|
+
}
|
|
7114
7008
|
};
|
|
7115
7009
|
}
|
|
7116
7010
|
case ":event.children?": {
|
|
@@ -7134,11 +7028,9 @@ function _schemasDomainRecord(domain) {
|
|
|
7134
7028
|
}
|
|
7135
7029
|
}
|
|
7136
7030
|
},
|
|
7137
|
-
|
|
7138
|
-
|
|
7139
|
-
|
|
7140
|
-
}
|
|
7141
|
-
]
|
|
7031
|
+
schema: {
|
|
7032
|
+
$ref: "#/components/schemas/EventChildrenRecord"
|
|
7033
|
+
}
|
|
7142
7034
|
};
|
|
7143
7035
|
}
|
|
7144
7036
|
case ":event.props?": {
|
|
@@ -7164,6 +7056,22 @@ function _schemasDomainRecord(domain) {
|
|
|
7164
7056
|
},
|
|
7165
7057
|
startTime: {
|
|
7166
7058
|
type: "number"
|
|
7059
|
+
},
|
|
7060
|
+
shotboxGroup: {
|
|
7061
|
+
oneOf: [
|
|
7062
|
+
{
|
|
7063
|
+
type: "string"
|
|
7064
|
+
},
|
|
7065
|
+
{
|
|
7066
|
+
type: "array",
|
|
7067
|
+
items: {
|
|
7068
|
+
type: "string"
|
|
7069
|
+
}
|
|
7070
|
+
}
|
|
7071
|
+
]
|
|
7072
|
+
},
|
|
7073
|
+
shotboxVisible: {
|
|
7074
|
+
type: "boolean"
|
|
7167
7075
|
}
|
|
7168
7076
|
},
|
|
7169
7077
|
required: [],
|
|
@@ -7209,11 +7117,9 @@ function _schemasDomainRecord(domain) {
|
|
|
7209
7117
|
}
|
|
7210
7118
|
}
|
|
7211
7119
|
},
|
|
7212
|
-
|
|
7213
|
-
|
|
7214
|
-
|
|
7215
|
-
}
|
|
7216
|
-
]
|
|
7120
|
+
schema: {
|
|
7121
|
+
$ref: "#/components/schemas/EventPropsRecord"
|
|
7122
|
+
}
|
|
7217
7123
|
};
|
|
7218
7124
|
}
|
|
7219
7125
|
case ":file.replicate": {
|
|
@@ -7317,11 +7223,9 @@ function _schemasDomainRecord(domain) {
|
|
|
7317
7223
|
}
|
|
7318
7224
|
}
|
|
7319
7225
|
},
|
|
7320
|
-
|
|
7321
|
-
|
|
7322
|
-
|
|
7323
|
-
}
|
|
7324
|
-
]
|
|
7226
|
+
schema: {
|
|
7227
|
+
$ref: "#/components/schemas/FileReplicateRecord"
|
|
7228
|
+
}
|
|
7325
7229
|
};
|
|
7326
7230
|
}
|
|
7327
7231
|
case ":file.restrictions": {
|
|
@@ -7367,11 +7271,9 @@ function _schemasDomainRecord(domain) {
|
|
|
7367
7271
|
}
|
|
7368
7272
|
}
|
|
7369
7273
|
},
|
|
7370
|
-
|
|
7371
|
-
|
|
7372
|
-
|
|
7373
|
-
}
|
|
7374
|
-
]
|
|
7274
|
+
schema: {
|
|
7275
|
+
$ref: "#/components/schemas/FileRestrictionsRecord"
|
|
7276
|
+
}
|
|
7375
7277
|
};
|
|
7376
7278
|
}
|
|
7377
7279
|
case ":file.stats?": {
|
|
@@ -7635,11 +7537,9 @@ function _schemasDomainRecord(domain) {
|
|
|
7635
7537
|
}
|
|
7636
7538
|
}
|
|
7637
7539
|
},
|
|
7638
|
-
|
|
7639
|
-
|
|
7640
|
-
|
|
7641
|
-
}
|
|
7642
|
-
]
|
|
7540
|
+
schema: {
|
|
7541
|
+
$ref: "#/components/schemas/FileStats"
|
|
7542
|
+
}
|
|
7643
7543
|
};
|
|
7644
7544
|
}
|
|
7645
7545
|
case ":folder.items": {
|
|
@@ -7663,11 +7563,9 @@ function _schemasDomainRecord(domain) {
|
|
|
7663
7563
|
}
|
|
7664
7564
|
}
|
|
7665
7565
|
},
|
|
7666
|
-
|
|
7667
|
-
|
|
7668
|
-
|
|
7669
|
-
}
|
|
7670
|
-
]
|
|
7566
|
+
schema: {
|
|
7567
|
+
$ref: "#/components/schemas/FolderItemsDomainRecord"
|
|
7568
|
+
}
|
|
7671
7569
|
};
|
|
7672
7570
|
}
|
|
7673
7571
|
case ":general.title": {
|
|
@@ -7686,11 +7584,9 @@ function _schemasDomainRecord(domain) {
|
|
|
7686
7584
|
}
|
|
7687
7585
|
}
|
|
7688
7586
|
},
|
|
7689
|
-
|
|
7690
|
-
|
|
7691
|
-
|
|
7692
|
-
}
|
|
7693
|
-
]
|
|
7587
|
+
schema: {
|
|
7588
|
+
$ref: "#/components/schemas/GeneralTitleRecord"
|
|
7589
|
+
}
|
|
7694
7590
|
};
|
|
7695
7591
|
}
|
|
7696
7592
|
case ":general.tags": {
|
|
@@ -7714,11 +7610,9 @@ function _schemasDomainRecord(domain) {
|
|
|
7714
7610
|
}
|
|
7715
7611
|
}
|
|
7716
7612
|
},
|
|
7717
|
-
|
|
7718
|
-
|
|
7719
|
-
|
|
7720
|
-
}
|
|
7721
|
-
]
|
|
7613
|
+
schema: {
|
|
7614
|
+
$ref: "#/components/schemas/GeneralTagsRecord"
|
|
7615
|
+
}
|
|
7722
7616
|
};
|
|
7723
7617
|
}
|
|
7724
7618
|
case ":general.created": {
|
|
@@ -7743,11 +7637,9 @@ function _schemasDomainRecord(domain) {
|
|
|
7743
7637
|
}
|
|
7744
7638
|
}
|
|
7745
7639
|
},
|
|
7746
|
-
|
|
7747
|
-
|
|
7748
|
-
|
|
7749
|
-
}
|
|
7750
|
-
]
|
|
7640
|
+
schema: {
|
|
7641
|
+
$ref: "#/components/schemas/GeneralCreatedRecord"
|
|
7642
|
+
}
|
|
7751
7643
|
};
|
|
7752
7644
|
}
|
|
7753
7645
|
case ":general.poster": {
|
|
@@ -7778,11 +7670,9 @@ function _schemasDomainRecord(domain) {
|
|
|
7778
7670
|
}
|
|
7779
7671
|
}
|
|
7780
7672
|
},
|
|
7781
|
-
|
|
7782
|
-
|
|
7783
|
-
|
|
7784
|
-
}
|
|
7785
|
-
]
|
|
7673
|
+
schema: {
|
|
7674
|
+
$ref: "#/components/schemas/GeneralPosterRecord"
|
|
7675
|
+
}
|
|
7786
7676
|
};
|
|
7787
7677
|
}
|
|
7788
7678
|
case ":general.status": {
|
|
@@ -7809,11 +7699,9 @@ function _schemasDomainRecord(domain) {
|
|
|
7809
7699
|
}
|
|
7810
7700
|
}
|
|
7811
7701
|
},
|
|
7812
|
-
|
|
7813
|
-
|
|
7814
|
-
|
|
7815
|
-
}
|
|
7816
|
-
]
|
|
7702
|
+
schema: {
|
|
7703
|
+
$ref: "#/components/schemas/GeneralStatusRecord"
|
|
7704
|
+
}
|
|
7817
7705
|
};
|
|
7818
7706
|
}
|
|
7819
7707
|
case ":general.description": {
|
|
@@ -7832,11 +7720,9 @@ function _schemasDomainRecord(domain) {
|
|
|
7832
7720
|
}
|
|
7833
7721
|
}
|
|
7834
7722
|
},
|
|
7835
|
-
|
|
7836
|
-
|
|
7837
|
-
|
|
7838
|
-
}
|
|
7839
|
-
]
|
|
7723
|
+
schema: {
|
|
7724
|
+
$ref: "#/components/schemas/GeneralDescriptionRecord"
|
|
7725
|
+
}
|
|
7840
7726
|
};
|
|
7841
7727
|
}
|
|
7842
7728
|
case ":general._asset": {
|
|
@@ -7879,11 +7765,9 @@ function _schemasDomainRecord(domain) {
|
|
|
7879
7765
|
}
|
|
7880
7766
|
}
|
|
7881
7767
|
},
|
|
7882
|
-
|
|
7883
|
-
|
|
7884
|
-
|
|
7885
|
-
}
|
|
7886
|
-
]
|
|
7768
|
+
schema: {
|
|
7769
|
+
$ref: "#/components/schemas/GeneralAssetRecord"
|
|
7770
|
+
}
|
|
7887
7771
|
};
|
|
7888
7772
|
}
|
|
7889
7773
|
case ":general._embedding": {
|
|
@@ -7908,11 +7792,9 @@ function _schemasDomainRecord(domain) {
|
|
|
7908
7792
|
}
|
|
7909
7793
|
}
|
|
7910
7794
|
},
|
|
7911
|
-
|
|
7912
|
-
|
|
7913
|
-
|
|
7914
|
-
}
|
|
7915
|
-
]
|
|
7795
|
+
schema: {
|
|
7796
|
+
$ref: "#/components/schemas/GeneralEmbeddingRecord"
|
|
7797
|
+
}
|
|
7916
7798
|
};
|
|
7917
7799
|
}
|
|
7918
7800
|
case ":harvest": {
|
|
@@ -7946,11 +7828,9 @@ function _schemasDomainRecord(domain) {
|
|
|
7946
7828
|
}
|
|
7947
7829
|
}
|
|
7948
7830
|
},
|
|
7949
|
-
|
|
7950
|
-
|
|
7951
|
-
|
|
7952
|
-
}
|
|
7953
|
-
]
|
|
7831
|
+
schema: {
|
|
7832
|
+
$ref: "#/components/schemas/HarvestDomainRecord"
|
|
7833
|
+
}
|
|
7954
7834
|
};
|
|
7955
7835
|
}
|
|
7956
7836
|
case ":ingestclip": {
|
|
@@ -8014,11 +7894,9 @@ function _schemasDomainRecord(domain) {
|
|
|
8014
7894
|
}
|
|
8015
7895
|
}
|
|
8016
7896
|
},
|
|
8017
|
-
|
|
8018
|
-
|
|
8019
|
-
|
|
8020
|
-
}
|
|
8021
|
-
]
|
|
7897
|
+
schema: {
|
|
7898
|
+
$ref: "#/components/schemas/IngestclipDomainRecord"
|
|
7899
|
+
}
|
|
8022
7900
|
};
|
|
8023
7901
|
}
|
|
8024
7902
|
case ":ingestschedule": {
|
|
@@ -8191,11 +8069,9 @@ function _schemasDomainRecord(domain) {
|
|
|
8191
8069
|
}
|
|
8192
8070
|
}
|
|
8193
8071
|
},
|
|
8194
|
-
|
|
8195
|
-
|
|
8196
|
-
|
|
8197
|
-
}
|
|
8198
|
-
]
|
|
8072
|
+
schema: {
|
|
8073
|
+
$ref: "#/components/schemas/IngestScheduleDomainRecord"
|
|
8074
|
+
}
|
|
8199
8075
|
};
|
|
8200
8076
|
}
|
|
8201
8077
|
case ":ingestschedule.stats?": {
|
|
@@ -8212,11 +8088,9 @@ function _schemasDomainRecord(domain) {
|
|
|
8212
8088
|
}
|
|
8213
8089
|
}
|
|
8214
8090
|
},
|
|
8215
|
-
|
|
8216
|
-
|
|
8217
|
-
|
|
8218
|
-
}
|
|
8219
|
-
]
|
|
8091
|
+
schema: {
|
|
8092
|
+
$ref: "#/components/schemas/IngestScheduleDomainStatsRecord"
|
|
8093
|
+
}
|
|
8220
8094
|
};
|
|
8221
8095
|
}
|
|
8222
8096
|
case ":media.source": {
|
|
@@ -8382,6 +8256,9 @@ function _schemasDomainRecord(domain) {
|
|
|
8382
8256
|
spacing: {
|
|
8383
8257
|
type: "string"
|
|
8384
8258
|
},
|
|
8259
|
+
lineSpacing: {
|
|
8260
|
+
type: "string"
|
|
8261
|
+
},
|
|
8385
8262
|
angle: {
|
|
8386
8263
|
type: "string"
|
|
8387
8264
|
},
|
|
@@ -8414,11 +8291,9 @@ function _schemasDomainRecord(domain) {
|
|
|
8414
8291
|
}
|
|
8415
8292
|
}
|
|
8416
8293
|
},
|
|
8417
|
-
|
|
8418
|
-
|
|
8419
|
-
|
|
8420
|
-
}
|
|
8421
|
-
]
|
|
8294
|
+
schema: {
|
|
8295
|
+
$ref: "#/components/schemas/RenderSceneObject"
|
|
8296
|
+
}
|
|
8422
8297
|
};
|
|
8423
8298
|
}
|
|
8424
8299
|
case ":media.consolidate": {
|
|
@@ -8562,18 +8437,42 @@ function _schemasDomainRecord(domain) {
|
|
|
8562
8437
|
style: {
|
|
8563
8438
|
type: "string",
|
|
8564
8439
|
description: "Will pick styling from the corresponding `${style}:subtitle-style` asset."
|
|
8565
|
-
}
|
|
8566
|
-
|
|
8567
|
-
|
|
8568
|
-
|
|
8569
|
-
|
|
8570
|
-
|
|
8571
|
-
|
|
8572
|
-
|
|
8573
|
-
|
|
8574
|
-
|
|
8575
|
-
|
|
8576
|
-
|
|
8440
|
+
},
|
|
8441
|
+
ccconverter: {
|
|
8442
|
+
type: "object",
|
|
8443
|
+
properties: {
|
|
8444
|
+
preset: {
|
|
8445
|
+
type: "string",
|
|
8446
|
+
description: "This is an ID, which will be used to find a matching `${preset}:ccconverter-preset` record,\nwith settings to pass to ccconverter. If not set, `lang` will be used as a preset ID."
|
|
8447
|
+
}
|
|
8448
|
+
},
|
|
8449
|
+
required: []
|
|
8450
|
+
},
|
|
8451
|
+
ass: {
|
|
8452
|
+
type: "object",
|
|
8453
|
+
properties: {
|
|
8454
|
+
futureWordWrapping: {
|
|
8455
|
+
type: "boolean"
|
|
8456
|
+
},
|
|
8457
|
+
scaledBorderAndShadow: {
|
|
8458
|
+
type: "boolean"
|
|
8459
|
+
},
|
|
8460
|
+
enableUnsafeLineSpacingHack: {
|
|
8461
|
+
type: "boolean"
|
|
8462
|
+
}
|
|
8463
|
+
},
|
|
8464
|
+
required: [],
|
|
8465
|
+
description: "Options to pass to encodeASS when generating subtitles for burn-in."
|
|
8466
|
+
}
|
|
8467
|
+
},
|
|
8468
|
+
required: []
|
|
8469
|
+
}
|
|
8470
|
+
}
|
|
8471
|
+
},
|
|
8472
|
+
schema: {
|
|
8473
|
+
$ref: "#/components/schemas/MediaDomainConsolidateRecord"
|
|
8474
|
+
}
|
|
8475
|
+
};
|
|
8577
8476
|
}
|
|
8578
8477
|
case ":media.renders?": {
|
|
8579
8478
|
return {
|
|
@@ -8614,11 +8513,9 @@ function _schemasDomainRecord(domain) {
|
|
|
8614
8513
|
}
|
|
8615
8514
|
}
|
|
8616
8515
|
},
|
|
8617
|
-
|
|
8618
|
-
|
|
8619
|
-
|
|
8620
|
-
}
|
|
8621
|
-
]
|
|
8516
|
+
schema: {
|
|
8517
|
+
$ref: "#/components/schemas/MediaRendersRecord"
|
|
8518
|
+
}
|
|
8622
8519
|
};
|
|
8623
8520
|
}
|
|
8624
8521
|
case ":media.transcriptChanges": {
|
|
@@ -8786,11 +8683,9 @@ function _schemasDomainRecord(domain) {
|
|
|
8786
8683
|
}
|
|
8787
8684
|
}
|
|
8788
8685
|
},
|
|
8789
|
-
|
|
8790
|
-
|
|
8791
|
-
|
|
8792
|
-
}
|
|
8793
|
-
]
|
|
8686
|
+
schema: {
|
|
8687
|
+
$ref: "#/components/schemas/MediaTranscriptChangesRecord"
|
|
8688
|
+
}
|
|
8794
8689
|
};
|
|
8795
8690
|
}
|
|
8796
8691
|
case ":media.font": {
|
|
@@ -8809,11 +8704,9 @@ function _schemasDomainRecord(domain) {
|
|
|
8809
8704
|
}
|
|
8810
8705
|
}
|
|
8811
8706
|
},
|
|
8812
|
-
|
|
8813
|
-
|
|
8814
|
-
|
|
8815
|
-
}
|
|
8816
|
-
]
|
|
8707
|
+
schema: {
|
|
8708
|
+
$ref: "#/components/schemas/MediaFontRecord"
|
|
8709
|
+
}
|
|
8817
8710
|
};
|
|
8818
8711
|
}
|
|
8819
8712
|
case ":media.restrictions?": {
|
|
@@ -8863,11 +8756,9 @@ function _schemasDomainRecord(domain) {
|
|
|
8863
8756
|
}
|
|
8864
8757
|
}
|
|
8865
8758
|
},
|
|
8866
|
-
|
|
8867
|
-
|
|
8868
|
-
|
|
8869
|
-
}
|
|
8870
|
-
]
|
|
8759
|
+
schema: {
|
|
8760
|
+
$ref: "#/components/schemas/MediaRestrictionsRecord"
|
|
8761
|
+
}
|
|
8871
8762
|
};
|
|
8872
8763
|
}
|
|
8873
8764
|
case ":media.probe?": {
|
|
@@ -9027,11 +8918,9 @@ function _schemasDomainRecord(domain) {
|
|
|
9027
8918
|
}
|
|
9028
8919
|
}
|
|
9029
8920
|
},
|
|
9030
|
-
|
|
9031
|
-
|
|
9032
|
-
|
|
9033
|
-
}
|
|
9034
|
-
]
|
|
8921
|
+
schema: {
|
|
8922
|
+
$ref: "#/components/schemas/MediaProbeRecord"
|
|
8923
|
+
}
|
|
9035
8924
|
};
|
|
9036
8925
|
}
|
|
9037
8926
|
case ":media.updateSubtitles?": {
|
|
@@ -9047,11 +8936,9 @@ function _schemasDomainRecord(domain) {
|
|
|
9047
8936
|
}
|
|
9048
8937
|
}
|
|
9049
8938
|
},
|
|
9050
|
-
|
|
9051
|
-
|
|
9052
|
-
|
|
9053
|
-
}
|
|
9054
|
-
]
|
|
8939
|
+
schema: {
|
|
8940
|
+
$ref: "#/components/schemas/MediaDomainUpdateSubtitlesRecord"
|
|
8941
|
+
}
|
|
9055
8942
|
};
|
|
9056
8943
|
}
|
|
9057
8944
|
case ":media.updateGraphics?": {
|
|
@@ -9067,11 +8954,9 @@ function _schemasDomainRecord(domain) {
|
|
|
9067
8954
|
}
|
|
9068
8955
|
}
|
|
9069
8956
|
},
|
|
9070
|
-
|
|
9071
|
-
|
|
9072
|
-
|
|
9073
|
-
}
|
|
9074
|
-
]
|
|
8957
|
+
schema: {
|
|
8958
|
+
$ref: "#/components/schemas/MediaDomainUpdateGraphicsRecord"
|
|
8959
|
+
}
|
|
9075
8960
|
};
|
|
9076
8961
|
}
|
|
9077
8962
|
case ":monitor.stats?": {
|
|
@@ -9685,11 +9570,9 @@ function _schemasDomainRecord(domain) {
|
|
|
9685
9570
|
}
|
|
9686
9571
|
}
|
|
9687
9572
|
},
|
|
9688
|
-
|
|
9689
|
-
|
|
9690
|
-
|
|
9691
|
-
}
|
|
9692
|
-
]
|
|
9573
|
+
schema: {
|
|
9574
|
+
$ref: "#/components/schemas/MonitorStatsRecord"
|
|
9575
|
+
}
|
|
9693
9576
|
};
|
|
9694
9577
|
}
|
|
9695
9578
|
case ":note": {
|
|
@@ -9710,11 +9593,9 @@ function _schemasDomainRecord(domain) {
|
|
|
9710
9593
|
}
|
|
9711
9594
|
}
|
|
9712
9595
|
},
|
|
9713
|
-
|
|
9714
|
-
|
|
9715
|
-
|
|
9716
|
-
}
|
|
9717
|
-
]
|
|
9596
|
+
schema: {
|
|
9597
|
+
$ref: "#/components/schemas/NoteDomainRecord"
|
|
9598
|
+
}
|
|
9718
9599
|
};
|
|
9719
9600
|
}
|
|
9720
9601
|
case ":panel": {
|
|
@@ -10027,11 +9908,9 @@ function _schemasDomainRecord(domain) {
|
|
|
10027
9908
|
}
|
|
10028
9909
|
}
|
|
10029
9910
|
},
|
|
10030
|
-
|
|
10031
|
-
|
|
10032
|
-
|
|
10033
|
-
}
|
|
10034
|
-
]
|
|
9911
|
+
schema: {
|
|
9912
|
+
$ref: "#/components/schemas/PanelDomainPanelRecord"
|
|
9913
|
+
}
|
|
10035
9914
|
};
|
|
10036
9915
|
}
|
|
10037
9916
|
case ":permission?": {
|
|
@@ -10124,11 +10003,9 @@ function _schemasDomainRecord(domain) {
|
|
|
10124
10003
|
}
|
|
10125
10004
|
}
|
|
10126
10005
|
},
|
|
10127
|
-
|
|
10128
|
-
|
|
10129
|
-
|
|
10130
|
-
}
|
|
10131
|
-
]
|
|
10006
|
+
schema: {
|
|
10007
|
+
$ref: "#/components/schemas/ProvidedPermissionRecord"
|
|
10008
|
+
}
|
|
10132
10009
|
};
|
|
10133
10010
|
}
|
|
10134
10011
|
case ":permission": {
|
|
@@ -10207,11 +10084,9 @@ function _schemasDomainRecord(domain) {
|
|
|
10207
10084
|
}
|
|
10208
10085
|
}
|
|
10209
10086
|
},
|
|
10210
|
-
|
|
10211
|
-
|
|
10212
|
-
|
|
10213
|
-
}
|
|
10214
|
-
]
|
|
10087
|
+
schema: {
|
|
10088
|
+
$ref: "#/components/schemas/PermissionRecordPermisson"
|
|
10089
|
+
}
|
|
10215
10090
|
};
|
|
10216
10091
|
}
|
|
10217
10092
|
case ":pipeline-preset": {
|
|
@@ -10283,11 +10158,9 @@ function _schemasDomainRecord(domain) {
|
|
|
10283
10158
|
}
|
|
10284
10159
|
}
|
|
10285
10160
|
},
|
|
10286
|
-
|
|
10287
|
-
|
|
10288
|
-
|
|
10289
|
-
}
|
|
10290
|
-
]
|
|
10161
|
+
schema: {
|
|
10162
|
+
$ref: "#/components/schemas/PipelinePresetDomainRecord"
|
|
10163
|
+
}
|
|
10291
10164
|
};
|
|
10292
10165
|
}
|
|
10293
10166
|
case ":pipeline": {
|
|
@@ -10344,11 +10217,9 @@ function _schemasDomainRecord(domain) {
|
|
|
10344
10217
|
}
|
|
10345
10218
|
}
|
|
10346
10219
|
},
|
|
10347
|
-
|
|
10348
|
-
|
|
10349
|
-
|
|
10350
|
-
}
|
|
10351
|
-
]
|
|
10220
|
+
schema: {
|
|
10221
|
+
$ref: "#/components/schemas/PipelineDomainRecord"
|
|
10222
|
+
}
|
|
10352
10223
|
};
|
|
10353
10224
|
}
|
|
10354
10225
|
case ":pipeline.items": {
|
|
@@ -10370,11 +10241,9 @@ function _schemasDomainRecord(domain) {
|
|
|
10370
10241
|
}
|
|
10371
10242
|
}
|
|
10372
10243
|
},
|
|
10373
|
-
|
|
10374
|
-
|
|
10375
|
-
|
|
10376
|
-
}
|
|
10377
|
-
]
|
|
10244
|
+
schema: {
|
|
10245
|
+
$ref: "#/components/schemas/PipelineDomainItemsRecord"
|
|
10246
|
+
}
|
|
10378
10247
|
};
|
|
10379
10248
|
}
|
|
10380
10249
|
case ":planning": {
|
|
@@ -10400,11 +10269,9 @@ function _schemasDomainRecord(domain) {
|
|
|
10400
10269
|
}
|
|
10401
10270
|
}
|
|
10402
10271
|
},
|
|
10403
|
-
|
|
10404
|
-
|
|
10405
|
-
|
|
10406
|
-
}
|
|
10407
|
-
]
|
|
10272
|
+
schema: {
|
|
10273
|
+
$ref: "#/components/schemas/PlanningRecord"
|
|
10274
|
+
}
|
|
10408
10275
|
};
|
|
10409
10276
|
}
|
|
10410
10277
|
case ":planning.assignees": {
|
|
@@ -10426,11 +10293,9 @@ function _schemasDomainRecord(domain) {
|
|
|
10426
10293
|
}
|
|
10427
10294
|
}
|
|
10428
10295
|
},
|
|
10429
|
-
|
|
10430
|
-
|
|
10431
|
-
|
|
10432
|
-
}
|
|
10433
|
-
]
|
|
10296
|
+
schema: {
|
|
10297
|
+
$ref: "#/components/schemas/PlanningAssigneesRecord"
|
|
10298
|
+
}
|
|
10434
10299
|
};
|
|
10435
10300
|
}
|
|
10436
10301
|
case ":planning.deadline": {
|
|
@@ -10458,11 +10323,9 @@ function _schemasDomainRecord(domain) {
|
|
|
10458
10323
|
}
|
|
10459
10324
|
}
|
|
10460
10325
|
},
|
|
10461
|
-
|
|
10462
|
-
|
|
10463
|
-
|
|
10464
|
-
}
|
|
10465
|
-
]
|
|
10326
|
+
schema: {
|
|
10327
|
+
$ref: "#/components/schemas/PlanningDeadlineRecord"
|
|
10328
|
+
}
|
|
10466
10329
|
};
|
|
10467
10330
|
}
|
|
10468
10331
|
case ":prompter": {
|
|
@@ -10529,11 +10392,9 @@ function _schemasDomainRecord(domain) {
|
|
|
10529
10392
|
}
|
|
10530
10393
|
}
|
|
10531
10394
|
},
|
|
10532
|
-
|
|
10533
|
-
|
|
10534
|
-
|
|
10535
|
-
}
|
|
10536
|
-
]
|
|
10395
|
+
schema: {
|
|
10396
|
+
$ref: "#/components/schemas/PrompterDomainRecord"
|
|
10397
|
+
}
|
|
10537
10398
|
};
|
|
10538
10399
|
}
|
|
10539
10400
|
case ":publish": {
|
|
@@ -10772,6 +10633,9 @@ function _schemasDomainRecord(domain) {
|
|
|
10772
10633
|
spacing: {
|
|
10773
10634
|
type: "string"
|
|
10774
10635
|
},
|
|
10636
|
+
lineSpacing: {
|
|
10637
|
+
type: "string"
|
|
10638
|
+
},
|
|
10775
10639
|
angle: {
|
|
10776
10640
|
type: "string"
|
|
10777
10641
|
},
|
|
@@ -10880,6 +10744,32 @@ function _schemasDomainRecord(domain) {
|
|
|
10880
10744
|
style: {
|
|
10881
10745
|
type: "string",
|
|
10882
10746
|
description: "Will pick styling from the corresponding `${style}:subtitle-style` asset."
|
|
10747
|
+
},
|
|
10748
|
+
ccconverter: {
|
|
10749
|
+
type: "object",
|
|
10750
|
+
properties: {
|
|
10751
|
+
preset: {
|
|
10752
|
+
type: "string",
|
|
10753
|
+
description: "This is an ID, which will be used to find a matching `${preset}:ccconverter-preset` record,\nwith settings to pass to ccconverter. If not set, `lang` will be used as a preset ID."
|
|
10754
|
+
}
|
|
10755
|
+
},
|
|
10756
|
+
required: []
|
|
10757
|
+
},
|
|
10758
|
+
ass: {
|
|
10759
|
+
type: "object",
|
|
10760
|
+
properties: {
|
|
10761
|
+
futureWordWrapping: {
|
|
10762
|
+
type: "boolean"
|
|
10763
|
+
},
|
|
10764
|
+
scaledBorderAndShadow: {
|
|
10765
|
+
type: "boolean"
|
|
10766
|
+
},
|
|
10767
|
+
enableUnsafeLineSpacingHack: {
|
|
10768
|
+
type: "boolean"
|
|
10769
|
+
}
|
|
10770
|
+
},
|
|
10771
|
+
required: [],
|
|
10772
|
+
description: "Options to pass to encodeASS when generating subtitles for burn-in."
|
|
10883
10773
|
}
|
|
10884
10774
|
},
|
|
10885
10775
|
required: []
|
|
@@ -11177,7 +11067,7 @@ function _schemasDomainRecord(domain) {
|
|
|
11177
11067
|
$ref: "#/components/schemas/ResolvedFilePublishRender"
|
|
11178
11068
|
},
|
|
11179
11069
|
{
|
|
11180
|
-
$ref: "#/components/schemas/__type.
|
|
11070
|
+
$ref: "#/components/schemas/__type.o12"
|
|
11181
11071
|
}
|
|
11182
11072
|
]
|
|
11183
11073
|
},
|
|
@@ -11221,11 +11111,11 @@ function _schemasDomainRecord(domain) {
|
|
|
11221
11111
|
"type"
|
|
11222
11112
|
]
|
|
11223
11113
|
},
|
|
11224
|
-
"__type.
|
|
11114
|
+
"__type.o12": {
|
|
11225
11115
|
type: "object",
|
|
11226
11116
|
properties: {
|
|
11227
11117
|
__context: {
|
|
11228
|
-
$ref: "#/components/schemas/__type.
|
|
11118
|
+
$ref: "#/components/schemas/__type.o13",
|
|
11229
11119
|
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
11230
11120
|
},
|
|
11231
11121
|
__returnValue: {
|
|
@@ -11238,7 +11128,7 @@ function _schemasDomainRecord(domain) {
|
|
|
11238
11128
|
"__returnValue"
|
|
11239
11129
|
]
|
|
11240
11130
|
},
|
|
11241
|
-
"__type.
|
|
11131
|
+
"__type.o13": {
|
|
11242
11132
|
type: "object",
|
|
11243
11133
|
properties: {
|
|
11244
11134
|
publish: {
|
|
@@ -11383,27 +11273,25 @@ function _schemasDomainRecord(domain) {
|
|
|
11383
11273
|
}
|
|
11384
11274
|
}
|
|
11385
11275
|
},
|
|
11386
|
-
|
|
11387
|
-
|
|
11388
|
-
|
|
11389
|
-
|
|
11390
|
-
|
|
11391
|
-
|
|
11392
|
-
|
|
11393
|
-
|
|
11394
|
-
|
|
11395
|
-
|
|
11396
|
-
|
|
11397
|
-
|
|
11398
|
-
|
|
11399
|
-
|
|
11400
|
-
|
|
11401
|
-
|
|
11402
|
-
|
|
11403
|
-
|
|
11404
|
-
|
|
11405
|
-
}
|
|
11406
|
-
]
|
|
11276
|
+
schema: {
|
|
11277
|
+
oneOf: [
|
|
11278
|
+
{
|
|
11279
|
+
$ref: "#/components/schemas/EmptyPublishRecord"
|
|
11280
|
+
},
|
|
11281
|
+
{
|
|
11282
|
+
$ref: "#/components/schemas/FacebookPublishRecord"
|
|
11283
|
+
},
|
|
11284
|
+
{
|
|
11285
|
+
$ref: "#/components/schemas/FilePublishRecordLegacy"
|
|
11286
|
+
},
|
|
11287
|
+
{
|
|
11288
|
+
$ref: "#/components/schemas/FilePublishRecord"
|
|
11289
|
+
},
|
|
11290
|
+
{
|
|
11291
|
+
$ref: "#/components/schemas/YoutubePublishRecord"
|
|
11292
|
+
}
|
|
11293
|
+
]
|
|
11294
|
+
}
|
|
11407
11295
|
};
|
|
11408
11296
|
}
|
|
11409
11297
|
case ":publish.stats?": {
|
|
@@ -11513,7 +11401,7 @@ function _schemasDomainRecord(domain) {
|
|
|
11513
11401
|
$ref: "#/components/schemas/ResolvedFilePublishRender"
|
|
11514
11402
|
},
|
|
11515
11403
|
{
|
|
11516
|
-
$ref: "#/components/schemas/__type.
|
|
11404
|
+
$ref: "#/components/schemas/__type.o11"
|
|
11517
11405
|
}
|
|
11518
11406
|
]
|
|
11519
11407
|
},
|
|
@@ -11715,6 +11603,9 @@ function _schemasDomainRecord(domain) {
|
|
|
11715
11603
|
spacing: {
|
|
11716
11604
|
type: "string"
|
|
11717
11605
|
},
|
|
11606
|
+
lineSpacing: {
|
|
11607
|
+
type: "string"
|
|
11608
|
+
},
|
|
11718
11609
|
angle: {
|
|
11719
11610
|
type: "string"
|
|
11720
11611
|
},
|
|
@@ -11823,15 +11714,41 @@ function _schemasDomainRecord(domain) {
|
|
|
11823
11714
|
style: {
|
|
11824
11715
|
type: "string",
|
|
11825
11716
|
description: "Will pick styling from the corresponding `${style}:subtitle-style` asset."
|
|
11717
|
+
},
|
|
11718
|
+
ccconverter: {
|
|
11719
|
+
type: "object",
|
|
11720
|
+
properties: {
|
|
11721
|
+
preset: {
|
|
11722
|
+
type: "string",
|
|
11723
|
+
description: "This is an ID, which will be used to find a matching `${preset}:ccconverter-preset` record,\nwith settings to pass to ccconverter. If not set, `lang` will be used as a preset ID."
|
|
11724
|
+
}
|
|
11725
|
+
},
|
|
11726
|
+
required: []
|
|
11727
|
+
},
|
|
11728
|
+
ass: {
|
|
11729
|
+
type: "object",
|
|
11730
|
+
properties: {
|
|
11731
|
+
futureWordWrapping: {
|
|
11732
|
+
type: "boolean"
|
|
11733
|
+
},
|
|
11734
|
+
scaledBorderAndShadow: {
|
|
11735
|
+
type: "boolean"
|
|
11736
|
+
},
|
|
11737
|
+
enableUnsafeLineSpacingHack: {
|
|
11738
|
+
type: "boolean"
|
|
11739
|
+
}
|
|
11740
|
+
},
|
|
11741
|
+
required: [],
|
|
11742
|
+
description: "Options to pass to encodeASS when generating subtitles for burn-in."
|
|
11826
11743
|
}
|
|
11827
11744
|
},
|
|
11828
11745
|
required: []
|
|
11829
11746
|
},
|
|
11830
|
-
"__type.
|
|
11747
|
+
"__type.o11": {
|
|
11831
11748
|
type: "object",
|
|
11832
11749
|
properties: {
|
|
11833
11750
|
__context: {
|
|
11834
|
-
$ref: "#/components/schemas/__type.
|
|
11751
|
+
$ref: "#/components/schemas/__type.o12",
|
|
11835
11752
|
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
11836
11753
|
},
|
|
11837
11754
|
__returnValue: {
|
|
@@ -11844,7 +11761,7 @@ function _schemasDomainRecord(domain) {
|
|
|
11844
11761
|
"__returnValue"
|
|
11845
11762
|
]
|
|
11846
11763
|
},
|
|
11847
|
-
"__type.
|
|
11764
|
+
"__type.o12": {
|
|
11848
11765
|
type: "object",
|
|
11849
11766
|
properties: {
|
|
11850
11767
|
publish: {
|
|
@@ -12087,21 +12004,19 @@ function _schemasDomainRecord(domain) {
|
|
|
12087
12004
|
}
|
|
12088
12005
|
}
|
|
12089
12006
|
},
|
|
12090
|
-
|
|
12091
|
-
|
|
12092
|
-
|
|
12093
|
-
|
|
12094
|
-
|
|
12095
|
-
|
|
12096
|
-
|
|
12097
|
-
|
|
12098
|
-
|
|
12099
|
-
|
|
12100
|
-
|
|
12101
|
-
|
|
12102
|
-
|
|
12103
|
-
}
|
|
12104
|
-
]
|
|
12007
|
+
schema: {
|
|
12008
|
+
oneOf: [
|
|
12009
|
+
{
|
|
12010
|
+
$ref: "#/components/schemas/FilePublishStatsRecord"
|
|
12011
|
+
},
|
|
12012
|
+
{
|
|
12013
|
+
$ref: "#/components/schemas/FacebookPublishStatsRecord"
|
|
12014
|
+
},
|
|
12015
|
+
{
|
|
12016
|
+
$ref: "#/components/schemas/PublishStatsRecordBase"
|
|
12017
|
+
}
|
|
12018
|
+
]
|
|
12019
|
+
}
|
|
12105
12020
|
};
|
|
12106
12021
|
}
|
|
12107
12022
|
case ":publish.methods?": {
|
|
@@ -12129,11 +12044,9 @@ function _schemasDomainRecord(domain) {
|
|
|
12129
12044
|
}
|
|
12130
12045
|
}
|
|
12131
12046
|
},
|
|
12132
|
-
|
|
12133
|
-
|
|
12134
|
-
|
|
12135
|
-
}
|
|
12136
|
-
]
|
|
12047
|
+
schema: {
|
|
12048
|
+
$ref: "#/components/schemas/PublishDomainMethodsRecordBase"
|
|
12049
|
+
}
|
|
12137
12050
|
};
|
|
12138
12051
|
}
|
|
12139
12052
|
case ":publish.accepts": {
|
|
@@ -12150,11 +12063,9 @@ function _schemasDomainRecord(domain) {
|
|
|
12150
12063
|
}
|
|
12151
12064
|
}
|
|
12152
12065
|
},
|
|
12153
|
-
|
|
12154
|
-
|
|
12155
|
-
|
|
12156
|
-
}
|
|
12157
|
-
]
|
|
12066
|
+
schema: {
|
|
12067
|
+
$ref: "#/components/schemas/PublishDomainAcceptsProvidedRecordBase"
|
|
12068
|
+
}
|
|
12158
12069
|
};
|
|
12159
12070
|
}
|
|
12160
12071
|
case ":published": {
|
|
@@ -12215,11 +12126,9 @@ function _schemasDomainRecord(domain) {
|
|
|
12215
12126
|
}
|
|
12216
12127
|
}
|
|
12217
12128
|
},
|
|
12218
|
-
|
|
12219
|
-
|
|
12220
|
-
|
|
12221
|
-
}
|
|
12222
|
-
]
|
|
12129
|
+
schema: {
|
|
12130
|
+
$ref: "#/components/schemas/PublishedRecord"
|
|
12131
|
+
}
|
|
12223
12132
|
};
|
|
12224
12133
|
}
|
|
12225
12134
|
case ":render-preset": {
|
|
@@ -12344,17 +12253,41 @@ function _schemasDomainRecord(domain) {
|
|
|
12344
12253
|
style: {
|
|
12345
12254
|
type: "string",
|
|
12346
12255
|
description: "Will pick styling from the corresponding `${style}:subtitle-style` asset."
|
|
12256
|
+
},
|
|
12257
|
+
ccconverter: {
|
|
12258
|
+
type: "object",
|
|
12259
|
+
properties: {
|
|
12260
|
+
preset: {
|
|
12261
|
+
type: "string",
|
|
12262
|
+
description: "This is an ID, which will be used to find a matching `${preset}:ccconverter-preset` record,\nwith settings to pass to ccconverter. If not set, `lang` will be used as a preset ID."
|
|
12263
|
+
}
|
|
12264
|
+
},
|
|
12265
|
+
required: []
|
|
12266
|
+
},
|
|
12267
|
+
ass: {
|
|
12268
|
+
type: "object",
|
|
12269
|
+
properties: {
|
|
12270
|
+
futureWordWrapping: {
|
|
12271
|
+
type: "boolean"
|
|
12272
|
+
},
|
|
12273
|
+
scaledBorderAndShadow: {
|
|
12274
|
+
type: "boolean"
|
|
12275
|
+
},
|
|
12276
|
+
enableUnsafeLineSpacingHack: {
|
|
12277
|
+
type: "boolean"
|
|
12278
|
+
}
|
|
12279
|
+
},
|
|
12280
|
+
required: [],
|
|
12281
|
+
description: "Options to pass to encodeASS when generating subtitles for burn-in."
|
|
12347
12282
|
}
|
|
12348
12283
|
},
|
|
12349
12284
|
required: []
|
|
12350
12285
|
}
|
|
12351
12286
|
}
|
|
12352
12287
|
},
|
|
12353
|
-
|
|
12354
|
-
|
|
12355
|
-
|
|
12356
|
-
}
|
|
12357
|
-
]
|
|
12288
|
+
schema: {
|
|
12289
|
+
$ref: "#/components/schemas/RenderPresetObject"
|
|
12290
|
+
}
|
|
12358
12291
|
};
|
|
12359
12292
|
}
|
|
12360
12293
|
case ":render.stats?": {
|
|
@@ -13089,11 +13022,9 @@ function _schemasDomainRecord(domain) {
|
|
|
13089
13022
|
}
|
|
13090
13023
|
}
|
|
13091
13024
|
},
|
|
13092
|
-
|
|
13093
|
-
|
|
13094
|
-
|
|
13095
|
-
}
|
|
13096
|
-
]
|
|
13025
|
+
schema: {
|
|
13026
|
+
$ref: "#/components/schemas/RenderDomainStatsRecord"
|
|
13027
|
+
}
|
|
13097
13028
|
};
|
|
13098
13029
|
}
|
|
13099
13030
|
case ":render.query?": {
|
|
@@ -13293,6 +13224,9 @@ function _schemasDomainRecord(domain) {
|
|
|
13293
13224
|
spacing: {
|
|
13294
13225
|
type: "string"
|
|
13295
13226
|
},
|
|
13227
|
+
lineSpacing: {
|
|
13228
|
+
type: "string"
|
|
13229
|
+
},
|
|
13296
13230
|
angle: {
|
|
13297
13231
|
type: "string"
|
|
13298
13232
|
},
|
|
@@ -13401,17 +13335,41 @@ function _schemasDomainRecord(domain) {
|
|
|
13401
13335
|
style: {
|
|
13402
13336
|
type: "string",
|
|
13403
13337
|
description: "Will pick styling from the corresponding `${style}:subtitle-style` asset."
|
|
13338
|
+
},
|
|
13339
|
+
ccconverter: {
|
|
13340
|
+
type: "object",
|
|
13341
|
+
properties: {
|
|
13342
|
+
preset: {
|
|
13343
|
+
type: "string",
|
|
13344
|
+
description: "This is an ID, which will be used to find a matching `${preset}:ccconverter-preset` record,\nwith settings to pass to ccconverter. If not set, `lang` will be used as a preset ID."
|
|
13345
|
+
}
|
|
13346
|
+
},
|
|
13347
|
+
required: []
|
|
13348
|
+
},
|
|
13349
|
+
ass: {
|
|
13350
|
+
type: "object",
|
|
13351
|
+
properties: {
|
|
13352
|
+
futureWordWrapping: {
|
|
13353
|
+
type: "boolean"
|
|
13354
|
+
},
|
|
13355
|
+
scaledBorderAndShadow: {
|
|
13356
|
+
type: "boolean"
|
|
13357
|
+
},
|
|
13358
|
+
enableUnsafeLineSpacingHack: {
|
|
13359
|
+
type: "boolean"
|
|
13360
|
+
}
|
|
13361
|
+
},
|
|
13362
|
+
required: [],
|
|
13363
|
+
description: "Options to pass to encodeASS when generating subtitles for burn-in."
|
|
13404
13364
|
}
|
|
13405
13365
|
},
|
|
13406
13366
|
required: []
|
|
13407
13367
|
}
|
|
13408
13368
|
}
|
|
13409
13369
|
},
|
|
13410
|
-
|
|
13411
|
-
|
|
13412
|
-
|
|
13413
|
-
}
|
|
13414
|
-
]
|
|
13370
|
+
schema: {
|
|
13371
|
+
$ref: "#/components/schemas/RenderDomainQueryRecord"
|
|
13372
|
+
}
|
|
13415
13373
|
};
|
|
13416
13374
|
}
|
|
13417
13375
|
case ":render.result?": {
|
|
@@ -13455,11 +13413,9 @@ function _schemasDomainRecord(domain) {
|
|
|
13455
13413
|
}
|
|
13456
13414
|
}
|
|
13457
13415
|
},
|
|
13458
|
-
|
|
13459
|
-
|
|
13460
|
-
|
|
13461
|
-
}
|
|
13462
|
-
]
|
|
13416
|
+
schema: {
|
|
13417
|
+
$ref: "#/components/schemas/RenderDomainResultRecord"
|
|
13418
|
+
}
|
|
13463
13419
|
};
|
|
13464
13420
|
}
|
|
13465
13421
|
case ":render.schedulers?": {
|
|
@@ -13480,11 +13436,9 @@ function _schemasDomainRecord(domain) {
|
|
|
13480
13436
|
}
|
|
13481
13437
|
}
|
|
13482
13438
|
},
|
|
13483
|
-
|
|
13484
|
-
|
|
13485
|
-
|
|
13486
|
-
}
|
|
13487
|
-
]
|
|
13439
|
+
schema: {
|
|
13440
|
+
$ref: "#/components/schemas/RenderDomainSchedulersRecord"
|
|
13441
|
+
}
|
|
13488
13442
|
};
|
|
13489
13443
|
}
|
|
13490
13444
|
case ":revs?": {
|
|
@@ -13506,11 +13460,9 @@ function _schemasDomainRecord(domain) {
|
|
|
13506
13460
|
}
|
|
13507
13461
|
}
|
|
13508
13462
|
},
|
|
13509
|
-
|
|
13510
|
-
|
|
13511
|
-
|
|
13512
|
-
}
|
|
13513
|
-
]
|
|
13463
|
+
schema: {
|
|
13464
|
+
$ref: "#/components/schemas/RevsRecord"
|
|
13465
|
+
}
|
|
13514
13466
|
};
|
|
13515
13467
|
}
|
|
13516
13468
|
case ":role.tags": {
|
|
@@ -13534,11 +13486,9 @@ function _schemasDomainRecord(domain) {
|
|
|
13534
13486
|
}
|
|
13535
13487
|
}
|
|
13536
13488
|
},
|
|
13537
|
-
|
|
13538
|
-
|
|
13539
|
-
|
|
13540
|
-
}
|
|
13541
|
-
]
|
|
13489
|
+
schema: {
|
|
13490
|
+
$ref: "#/components/schemas/RoleTagsRecord"
|
|
13491
|
+
}
|
|
13542
13492
|
};
|
|
13543
13493
|
}
|
|
13544
13494
|
case ":script": {
|
|
@@ -13576,11 +13526,9 @@ function _schemasDomainRecord(domain) {
|
|
|
13576
13526
|
}
|
|
13577
13527
|
}
|
|
13578
13528
|
},
|
|
13579
|
-
|
|
13580
|
-
|
|
13581
|
-
|
|
13582
|
-
}
|
|
13583
|
-
]
|
|
13529
|
+
schema: {
|
|
13530
|
+
$ref: "#/components/schemas/ScriptRecord"
|
|
13531
|
+
}
|
|
13584
13532
|
};
|
|
13585
13533
|
}
|
|
13586
13534
|
case ":script?": {
|
|
@@ -13720,11 +13668,9 @@ function _schemasDomainRecord(domain) {
|
|
|
13720
13668
|
}
|
|
13721
13669
|
}
|
|
13722
13670
|
},
|
|
13723
|
-
|
|
13724
|
-
|
|
13725
|
-
|
|
13726
|
-
}
|
|
13727
|
-
]
|
|
13671
|
+
schema: {
|
|
13672
|
+
$ref: "#/components/schemas/ScriptEditorStateRecord"
|
|
13673
|
+
}
|
|
13728
13674
|
};
|
|
13729
13675
|
}
|
|
13730
13676
|
case ":script.revisions?": {
|
|
@@ -13763,11 +13709,9 @@ function _schemasDomainRecord(domain) {
|
|
|
13763
13709
|
}
|
|
13764
13710
|
}
|
|
13765
13711
|
},
|
|
13766
|
-
|
|
13767
|
-
|
|
13768
|
-
|
|
13769
|
-
}
|
|
13770
|
-
]
|
|
13712
|
+
schema: {
|
|
13713
|
+
$ref: "#/components/schemas/ScriptRevisionsRecord"
|
|
13714
|
+
}
|
|
13771
13715
|
};
|
|
13772
13716
|
}
|
|
13773
13717
|
case ":script.revision": {
|
|
@@ -13800,11 +13744,9 @@ function _schemasDomainRecord(domain) {
|
|
|
13800
13744
|
}
|
|
13801
13745
|
}
|
|
13802
13746
|
},
|
|
13803
|
-
|
|
13804
|
-
|
|
13805
|
-
|
|
13806
|
-
}
|
|
13807
|
-
]
|
|
13747
|
+
schema: {
|
|
13748
|
+
$ref: "#/components/schemas/ScriptRevisionRecord"
|
|
13749
|
+
}
|
|
13808
13750
|
};
|
|
13809
13751
|
}
|
|
13810
13752
|
case ":script.revision?": {
|
|
@@ -13956,11 +13898,9 @@ function _schemasDomainRecord(domain) {
|
|
|
13956
13898
|
}
|
|
13957
13899
|
}
|
|
13958
13900
|
},
|
|
13959
|
-
|
|
13960
|
-
|
|
13961
|
-
|
|
13962
|
-
}
|
|
13963
|
-
]
|
|
13901
|
+
schema: {
|
|
13902
|
+
$ref: "#/components/schemas/ScriptEditorStateRevisionRecord"
|
|
13903
|
+
}
|
|
13964
13904
|
};
|
|
13965
13905
|
}
|
|
13966
13906
|
case ":script.content?": {
|
|
@@ -13988,7 +13928,10 @@ function _schemasDomainRecord(domain) {
|
|
|
13988
13928
|
$ref: "#/components/schemas/EventNodeContent"
|
|
13989
13929
|
},
|
|
13990
13930
|
{
|
|
13991
|
-
$ref: "#/components/schemas/
|
|
13931
|
+
$ref: "#/components/schemas/FormattedTextNodeContent"
|
|
13932
|
+
},
|
|
13933
|
+
{
|
|
13934
|
+
$ref: "#/components/schemas/LinkNodeContent"
|
|
13992
13935
|
},
|
|
13993
13936
|
{
|
|
13994
13937
|
$ref: "#/components/schemas/ListItemNodeContent"
|
|
@@ -14035,25 +13978,14 @@ function _schemasDomainRecord(domain) {
|
|
|
14035
13978
|
required: [
|
|
14036
13979
|
"type",
|
|
14037
13980
|
"id",
|
|
14038
|
-
"mixin"
|
|
14039
|
-
"children"
|
|
13981
|
+
"mixin"
|
|
14040
13982
|
]
|
|
14041
13983
|
},
|
|
14042
|
-
|
|
13984
|
+
FormattedTextNodeContent: {
|
|
14043
13985
|
type: "object",
|
|
14044
13986
|
properties: {
|
|
14045
13987
|
type: {
|
|
14046
|
-
|
|
14047
|
-
{
|
|
14048
|
-
"const": "link"
|
|
14049
|
-
},
|
|
14050
|
-
{
|
|
14051
|
-
"const": "text"
|
|
14052
|
-
},
|
|
14053
|
-
{
|
|
14054
|
-
"const": "autolink"
|
|
14055
|
-
}
|
|
14056
|
-
]
|
|
13988
|
+
"const": "text"
|
|
14057
13989
|
},
|
|
14058
13990
|
text: {
|
|
14059
13991
|
type: "string"
|
|
@@ -14070,6 +14002,31 @@ function _schemasDomainRecord(domain) {
|
|
|
14070
14002
|
"text"
|
|
14071
14003
|
]
|
|
14072
14004
|
},
|
|
14005
|
+
LinkNodeContent: {
|
|
14006
|
+
type: "object",
|
|
14007
|
+
properties: {
|
|
14008
|
+
type: {
|
|
14009
|
+
oneOf: [
|
|
14010
|
+
{
|
|
14011
|
+
"const": "link"
|
|
14012
|
+
},
|
|
14013
|
+
{
|
|
14014
|
+
"const": "autolink"
|
|
14015
|
+
}
|
|
14016
|
+
]
|
|
14017
|
+
},
|
|
14018
|
+
children: {
|
|
14019
|
+
type: "array",
|
|
14020
|
+
items: {
|
|
14021
|
+
$ref: "#/components/schemas/FormattedTextNodeContent"
|
|
14022
|
+
}
|
|
14023
|
+
}
|
|
14024
|
+
},
|
|
14025
|
+
required: [
|
|
14026
|
+
"type",
|
|
14027
|
+
"children"
|
|
14028
|
+
]
|
|
14029
|
+
},
|
|
14073
14030
|
ListItemNodeContent: {
|
|
14074
14031
|
type: "object",
|
|
14075
14032
|
properties: {
|
|
@@ -14095,6 +14052,16 @@ function _schemasDomainRecord(domain) {
|
|
|
14095
14052
|
"children"
|
|
14096
14053
|
]
|
|
14097
14054
|
},
|
|
14055
|
+
TextNodeContent: {
|
|
14056
|
+
oneOf: [
|
|
14057
|
+
{
|
|
14058
|
+
$ref: "#/components/schemas/FormattedTextNodeContent"
|
|
14059
|
+
},
|
|
14060
|
+
{
|
|
14061
|
+
$ref: "#/components/schemas/LinkNodeContent"
|
|
14062
|
+
}
|
|
14063
|
+
]
|
|
14064
|
+
},
|
|
14098
14065
|
ListNodeContent: {
|
|
14099
14066
|
type: "object",
|
|
14100
14067
|
properties: {
|
|
@@ -14237,11 +14204,9 @@ function _schemasDomainRecord(domain) {
|
|
|
14237
14204
|
}
|
|
14238
14205
|
}
|
|
14239
14206
|
},
|
|
14240
|
-
|
|
14241
|
-
|
|
14242
|
-
|
|
14243
|
-
}
|
|
14244
|
-
]
|
|
14207
|
+
schema: {
|
|
14208
|
+
$ref: "#/components/schemas/ScriptContentRecord"
|
|
14209
|
+
}
|
|
14245
14210
|
};
|
|
14246
14211
|
}
|
|
14247
14212
|
case ":script.text?": {
|
|
@@ -14266,11 +14231,9 @@ function _schemasDomainRecord(domain) {
|
|
|
14266
14231
|
}
|
|
14267
14232
|
}
|
|
14268
14233
|
},
|
|
14269
|
-
|
|
14270
|
-
|
|
14271
|
-
|
|
14272
|
-
}
|
|
14273
|
-
]
|
|
14234
|
+
schema: {
|
|
14235
|
+
$ref: "#/components/schemas/ScriptTextRecord"
|
|
14236
|
+
}
|
|
14274
14237
|
};
|
|
14275
14238
|
}
|
|
14276
14239
|
case ":script.children": {
|
|
@@ -14293,11 +14256,9 @@ function _schemasDomainRecord(domain) {
|
|
|
14293
14256
|
}
|
|
14294
14257
|
}
|
|
14295
14258
|
},
|
|
14296
|
-
|
|
14297
|
-
|
|
14298
|
-
|
|
14299
|
-
}
|
|
14300
|
-
]
|
|
14259
|
+
schema: {
|
|
14260
|
+
$ref: "#/components/schemas/ScriptChildrenRecord"
|
|
14261
|
+
}
|
|
14301
14262
|
};
|
|
14302
14263
|
}
|
|
14303
14264
|
case ":search": {
|
|
@@ -14467,11 +14428,9 @@ function _schemasDomainRecord(domain) {
|
|
|
14467
14428
|
}
|
|
14468
14429
|
}
|
|
14469
14430
|
},
|
|
14470
|
-
|
|
14471
|
-
|
|
14472
|
-
|
|
14473
|
-
}
|
|
14474
|
-
]
|
|
14431
|
+
schema: {
|
|
14432
|
+
$ref: "#/components/schemas/SearchRecord"
|
|
14433
|
+
}
|
|
14475
14434
|
};
|
|
14476
14435
|
}
|
|
14477
14436
|
case ":search?": {
|
|
@@ -14502,11 +14461,9 @@ function _schemasDomainRecord(domain) {
|
|
|
14502
14461
|
}
|
|
14503
14462
|
}
|
|
14504
14463
|
},
|
|
14505
|
-
|
|
14506
|
-
|
|
14507
|
-
|
|
14508
|
-
}
|
|
14509
|
-
]
|
|
14464
|
+
schema: {
|
|
14465
|
+
$ref: "#/components/schemas/SearchRecordProvided"
|
|
14466
|
+
}
|
|
14510
14467
|
};
|
|
14511
14468
|
}
|
|
14512
14469
|
case ":search.conditions": {
|
|
@@ -14529,11 +14486,9 @@ function _schemasDomainRecord(domain) {
|
|
|
14529
14486
|
}
|
|
14530
14487
|
}
|
|
14531
14488
|
},
|
|
14532
|
-
|
|
14533
|
-
|
|
14534
|
-
|
|
14535
|
-
}
|
|
14536
|
-
]
|
|
14489
|
+
schema: {
|
|
14490
|
+
$ref: "#/components/schemas/SearchDomainConditionsRecord"
|
|
14491
|
+
}
|
|
14537
14492
|
};
|
|
14538
14493
|
}
|
|
14539
14494
|
case ":search.visibleColumnKeys": {
|
|
@@ -14556,11 +14511,9 @@ function _schemasDomainRecord(domain) {
|
|
|
14556
14511
|
}
|
|
14557
14512
|
}
|
|
14558
14513
|
},
|
|
14559
|
-
|
|
14560
|
-
|
|
14561
|
-
|
|
14562
|
-
}
|
|
14563
|
-
]
|
|
14514
|
+
schema: {
|
|
14515
|
+
$ref: "#/components/schemas/SearchDomainVisibleColumnKeysRecord"
|
|
14516
|
+
}
|
|
14564
14517
|
};
|
|
14565
14518
|
}
|
|
14566
14519
|
case ":settings": {
|
|
@@ -14900,6 +14853,38 @@ function _schemasDomainRecord(domain) {
|
|
|
14900
14853
|
},
|
|
14901
14854
|
required: []
|
|
14902
14855
|
}
|
|
14856
|
+
},
|
|
14857
|
+
colorHistory: {
|
|
14858
|
+
type: "array",
|
|
14859
|
+
items: {
|
|
14860
|
+
type: "object",
|
|
14861
|
+
properties: {
|
|
14862
|
+
color: {
|
|
14863
|
+
oneOf: [
|
|
14864
|
+
{
|
|
14865
|
+
type: "null"
|
|
14866
|
+
},
|
|
14867
|
+
{
|
|
14868
|
+
type: "string"
|
|
14869
|
+
}
|
|
14870
|
+
]
|
|
14871
|
+
},
|
|
14872
|
+
backgroundColor: {
|
|
14873
|
+
oneOf: [
|
|
14874
|
+
{
|
|
14875
|
+
type: "null"
|
|
14876
|
+
},
|
|
14877
|
+
{
|
|
14878
|
+
type: "string"
|
|
14879
|
+
}
|
|
14880
|
+
]
|
|
14881
|
+
}
|
|
14882
|
+
},
|
|
14883
|
+
required: [
|
|
14884
|
+
"color",
|
|
14885
|
+
"backgroundColor"
|
|
14886
|
+
]
|
|
14887
|
+
}
|
|
14903
14888
|
}
|
|
14904
14889
|
},
|
|
14905
14890
|
required: []
|
|
@@ -15284,6 +15269,9 @@ function _schemasDomainRecord(domain) {
|
|
|
15284
15269
|
{
|
|
15285
15270
|
"const": "spacing"
|
|
15286
15271
|
},
|
|
15272
|
+
{
|
|
15273
|
+
"const": "lineSpacing"
|
|
15274
|
+
},
|
|
15287
15275
|
{
|
|
15288
15276
|
"const": "angle"
|
|
15289
15277
|
},
|
|
@@ -15313,6 +15301,9 @@ function _schemasDomainRecord(domain) {
|
|
|
15313
15301
|
}
|
|
15314
15302
|
]
|
|
15315
15303
|
}
|
|
15304
|
+
},
|
|
15305
|
+
previewResolutionScale: {
|
|
15306
|
+
type: "number"
|
|
15316
15307
|
}
|
|
15317
15308
|
},
|
|
15318
15309
|
required: []
|
|
@@ -15855,6 +15846,18 @@ function _schemasDomainRecord(domain) {
|
|
|
15855
15846
|
clone: {
|
|
15856
15847
|
type: "object",
|
|
15857
15848
|
properties: {
|
|
15849
|
+
create: {
|
|
15850
|
+
type: "object",
|
|
15851
|
+
properties: {
|
|
15852
|
+
titlePrefix: {
|
|
15853
|
+
type: "string"
|
|
15854
|
+
},
|
|
15855
|
+
titleSuffix: {
|
|
15856
|
+
type: "string"
|
|
15857
|
+
}
|
|
15858
|
+
},
|
|
15859
|
+
required: []
|
|
15860
|
+
},
|
|
15858
15861
|
duplicate: {
|
|
15859
15862
|
type: "object",
|
|
15860
15863
|
properties: {
|
|
@@ -15914,6 +15917,15 @@ function _schemasDomainRecord(domain) {
|
|
|
15914
15917
|
}
|
|
15915
15918
|
},
|
|
15916
15919
|
required: []
|
|
15920
|
+
},
|
|
15921
|
+
shotbox: {
|
|
15922
|
+
type: "object",
|
|
15923
|
+
properties: {
|
|
15924
|
+
layout: {
|
|
15925
|
+
type: "string"
|
|
15926
|
+
}
|
|
15927
|
+
},
|
|
15928
|
+
required: []
|
|
15917
15929
|
}
|
|
15918
15930
|
},
|
|
15919
15931
|
required: []
|
|
@@ -16093,11 +16105,9 @@ function _schemasDomainRecord(domain) {
|
|
|
16093
16105
|
}
|
|
16094
16106
|
}
|
|
16095
16107
|
},
|
|
16096
|
-
|
|
16097
|
-
|
|
16098
|
-
|
|
16099
|
-
}
|
|
16100
|
-
]
|
|
16108
|
+
schema: {
|
|
16109
|
+
$ref: "#/components/schemas/Settings"
|
|
16110
|
+
}
|
|
16101
16111
|
};
|
|
16102
16112
|
}
|
|
16103
16113
|
case ":settings.node": {
|
|
@@ -16127,11 +16137,9 @@ function _schemasDomainRecord(domain) {
|
|
|
16127
16137
|
}
|
|
16128
16138
|
}
|
|
16129
16139
|
},
|
|
16130
|
-
|
|
16131
|
-
|
|
16132
|
-
|
|
16133
|
-
}
|
|
16134
|
-
]
|
|
16140
|
+
schema: {
|
|
16141
|
+
$ref: "#/components/schemas/SettingsNodeRecord"
|
|
16142
|
+
}
|
|
16135
16143
|
};
|
|
16136
16144
|
}
|
|
16137
16145
|
case ":shotbox": {
|
|
@@ -16160,6 +16168,12 @@ function _schemasDomainRecord(domain) {
|
|
|
16160
16168
|
inferGroups: {
|
|
16161
16169
|
type: "boolean"
|
|
16162
16170
|
},
|
|
16171
|
+
excludeFromInferredGroups: {
|
|
16172
|
+
type: "array",
|
|
16173
|
+
items: {
|
|
16174
|
+
type: "string"
|
|
16175
|
+
}
|
|
16176
|
+
},
|
|
16163
16177
|
layout: {
|
|
16164
16178
|
type: "array",
|
|
16165
16179
|
items: {
|
|
@@ -16281,11 +16295,9 @@ function _schemasDomainRecord(domain) {
|
|
|
16281
16295
|
}
|
|
16282
16296
|
}
|
|
16283
16297
|
},
|
|
16284
|
-
|
|
16285
|
-
|
|
16286
|
-
|
|
16287
|
-
}
|
|
16288
|
-
]
|
|
16298
|
+
schema: {
|
|
16299
|
+
$ref: "#/components/schemas/ShotboxDomainRecord"
|
|
16300
|
+
}
|
|
16289
16301
|
};
|
|
16290
16302
|
}
|
|
16291
16303
|
case ":storyboard": {
|
|
@@ -16301,11 +16313,9 @@ function _schemasDomainRecord(domain) {
|
|
|
16301
16313
|
}
|
|
16302
16314
|
}
|
|
16303
16315
|
},
|
|
16304
|
-
|
|
16305
|
-
|
|
16306
|
-
|
|
16307
|
-
}
|
|
16308
|
-
]
|
|
16316
|
+
schema: {
|
|
16317
|
+
$ref: "#/components/schemas/StoryboardDomainRecord"
|
|
16318
|
+
}
|
|
16309
16319
|
};
|
|
16310
16320
|
}
|
|
16311
16321
|
case ":storyboard.pipelines": {
|
|
@@ -16327,11 +16337,9 @@ function _schemasDomainRecord(domain) {
|
|
|
16327
16337
|
}
|
|
16328
16338
|
}
|
|
16329
16339
|
},
|
|
16330
|
-
|
|
16331
|
-
|
|
16332
|
-
|
|
16333
|
-
}
|
|
16334
|
-
]
|
|
16340
|
+
schema: {
|
|
16341
|
+
$ref: "#/components/schemas/StoryboardDomainPipelinesRecord"
|
|
16342
|
+
}
|
|
16335
16343
|
};
|
|
16336
16344
|
}
|
|
16337
16345
|
case ":storyboard.descendants?": {
|
|
@@ -16353,11 +16361,9 @@ function _schemasDomainRecord(domain) {
|
|
|
16353
16361
|
}
|
|
16354
16362
|
}
|
|
16355
16363
|
},
|
|
16356
|
-
|
|
16357
|
-
|
|
16358
|
-
|
|
16359
|
-
}
|
|
16360
|
-
]
|
|
16364
|
+
schema: {
|
|
16365
|
+
$ref: "#/components/schemas/StoryboardDescendantsRecord"
|
|
16366
|
+
}
|
|
16361
16367
|
};
|
|
16362
16368
|
}
|
|
16363
16369
|
case ":storyboard.ancestors?": {
|
|
@@ -16379,11 +16385,9 @@ function _schemasDomainRecord(domain) {
|
|
|
16379
16385
|
}
|
|
16380
16386
|
}
|
|
16381
16387
|
},
|
|
16382
|
-
|
|
16383
|
-
|
|
16384
|
-
|
|
16385
|
-
}
|
|
16386
|
-
]
|
|
16388
|
+
schema: {
|
|
16389
|
+
$ref: "#/components/schemas/StoryboardAncestorsRecord"
|
|
16390
|
+
}
|
|
16387
16391
|
};
|
|
16388
16392
|
}
|
|
16389
16393
|
case ":subtitle-style": {
|
|
@@ -16457,6 +16461,9 @@ function _schemasDomainRecord(domain) {
|
|
|
16457
16461
|
spacing: {
|
|
16458
16462
|
type: "string"
|
|
16459
16463
|
},
|
|
16464
|
+
lineSpacing: {
|
|
16465
|
+
type: "string"
|
|
16466
|
+
},
|
|
16460
16467
|
angle: {
|
|
16461
16468
|
type: "string"
|
|
16462
16469
|
},
|
|
@@ -16489,11 +16496,9 @@ function _schemasDomainRecord(domain) {
|
|
|
16489
16496
|
}
|
|
16490
16497
|
}
|
|
16491
16498
|
},
|
|
16492
|
-
|
|
16493
|
-
|
|
16494
|
-
|
|
16495
|
-
}
|
|
16496
|
-
]
|
|
16499
|
+
schema: {
|
|
16500
|
+
$ref: "#/components/schemas/SubtitleStyleDomainRecord"
|
|
16501
|
+
}
|
|
16497
16502
|
};
|
|
16498
16503
|
}
|
|
16499
16504
|
case ":subtitle": {
|
|
@@ -16534,11 +16539,9 @@ function _schemasDomainRecord(domain) {
|
|
|
16534
16539
|
}
|
|
16535
16540
|
}
|
|
16536
16541
|
},
|
|
16537
|
-
|
|
16538
|
-
|
|
16539
|
-
|
|
16540
|
-
}
|
|
16541
|
-
]
|
|
16542
|
+
schema: {
|
|
16543
|
+
$ref: "#/components/schemas/SubtitleDomainRecord"
|
|
16544
|
+
}
|
|
16542
16545
|
};
|
|
16543
16546
|
}
|
|
16544
16547
|
case ":template": {
|
|
@@ -16584,11 +16587,9 @@ function _schemasDomainRecord(domain) {
|
|
|
16584
16587
|
}
|
|
16585
16588
|
}
|
|
16586
16589
|
},
|
|
16587
|
-
|
|
16588
|
-
|
|
16589
|
-
|
|
16590
|
-
}
|
|
16591
|
-
]
|
|
16590
|
+
schema: {
|
|
16591
|
+
$ref: "#/components/schemas/TemplateRecord"
|
|
16592
|
+
}
|
|
16592
16593
|
};
|
|
16593
16594
|
}
|
|
16594
16595
|
case ":_user-notification-status": {
|
|
@@ -16656,11 +16657,9 @@ function _schemasDomainRecord(domain) {
|
|
|
16656
16657
|
}
|
|
16657
16658
|
}
|
|
16658
16659
|
},
|
|
16659
|
-
|
|
16660
|
-
|
|
16661
|
-
|
|
16662
|
-
}
|
|
16663
|
-
]
|
|
16660
|
+
schema: {
|
|
16661
|
+
$ref: "#/components/schemas/UserNotificationStatusDomainRecord"
|
|
16662
|
+
}
|
|
16664
16663
|
};
|
|
16665
16664
|
}
|
|
16666
16665
|
case ":user-notification": {
|
|
@@ -16968,11 +16967,9 @@ function _schemasDomainRecord(domain) {
|
|
|
16968
16967
|
}
|
|
16969
16968
|
}
|
|
16970
16969
|
},
|
|
16971
|
-
|
|
16972
|
-
|
|
16973
|
-
|
|
16974
|
-
}
|
|
16975
|
-
]
|
|
16970
|
+
schema: {
|
|
16971
|
+
$ref: "#/components/schemas/UserNotificationRecord"
|
|
16972
|
+
}
|
|
16976
16973
|
};
|
|
16977
16974
|
}
|
|
16978
16975
|
case ":user-notification.readAt": {
|
|
@@ -16992,11 +16989,9 @@ function _schemasDomainRecord(domain) {
|
|
|
16992
16989
|
}
|
|
16993
16990
|
}
|
|
16994
16991
|
},
|
|
16995
|
-
|
|
16996
|
-
|
|
16997
|
-
|
|
16998
|
-
}
|
|
16999
|
-
]
|
|
16992
|
+
schema: {
|
|
16993
|
+
$ref: "#/components/schemas/UserNotificationDomainReadAtRecord"
|
|
16994
|
+
}
|
|
17000
16995
|
};
|
|
17001
16996
|
}
|
|
17002
16997
|
case ":user": {
|
|
@@ -17028,11 +17023,9 @@ function _schemasDomainRecord(domain) {
|
|
|
17028
17023
|
}
|
|
17029
17024
|
}
|
|
17030
17025
|
},
|
|
17031
|
-
|
|
17032
|
-
|
|
17033
|
-
|
|
17034
|
-
}
|
|
17035
|
-
]
|
|
17026
|
+
schema: {
|
|
17027
|
+
$ref: "#/components/schemas/UserDomainRecord"
|
|
17028
|
+
}
|
|
17036
17029
|
};
|
|
17037
17030
|
}
|
|
17038
17031
|
case ":user.latestSeenNotification": {
|
|
@@ -17051,11 +17044,9 @@ function _schemasDomainRecord(domain) {
|
|
|
17051
17044
|
}
|
|
17052
17045
|
}
|
|
17053
17046
|
},
|
|
17054
|
-
|
|
17055
|
-
|
|
17056
|
-
|
|
17057
|
-
}
|
|
17058
|
-
]
|
|
17047
|
+
schema: {
|
|
17048
|
+
$ref: "#/components/schemas/UserDomainLatestSeenNotificationRecord"
|
|
17049
|
+
}
|
|
17059
17050
|
};
|
|
17060
17051
|
}
|
|
17061
17052
|
case ":user.receivedNotifications?": {
|
|
@@ -17078,11 +17069,9 @@ function _schemasDomainRecord(domain) {
|
|
|
17078
17069
|
}
|
|
17079
17070
|
}
|
|
17080
17071
|
},
|
|
17081
|
-
|
|
17082
|
-
|
|
17083
|
-
|
|
17084
|
-
}
|
|
17085
|
-
]
|
|
17072
|
+
schema: {
|
|
17073
|
+
$ref: "#/components/schemas/UserDomainReceivedNotificationsProvidedRecord"
|
|
17074
|
+
}
|
|
17086
17075
|
};
|
|
17087
17076
|
}
|
|
17088
17077
|
case ":user.unseenNotifications?": {
|
|
@@ -17104,11 +17093,9 @@ function _schemasDomainRecord(domain) {
|
|
|
17104
17093
|
}
|
|
17105
17094
|
}
|
|
17106
17095
|
},
|
|
17107
|
-
|
|
17108
|
-
|
|
17109
|
-
|
|
17110
|
-
}
|
|
17111
|
-
]
|
|
17096
|
+
schema: {
|
|
17097
|
+
$ref: "#/components/schemas/UserDomainUnseenNotificationsRecord"
|
|
17098
|
+
}
|
|
17112
17099
|
};
|
|
17113
17100
|
}
|
|
17114
17101
|
case ":username?": {
|
|
@@ -17130,11 +17117,9 @@ function _schemasDomainRecord(domain) {
|
|
|
17130
17117
|
}
|
|
17131
17118
|
}
|
|
17132
17119
|
},
|
|
17133
|
-
|
|
17134
|
-
|
|
17135
|
-
|
|
17136
|
-
}
|
|
17137
|
-
]
|
|
17120
|
+
schema: {
|
|
17121
|
+
$ref: "#/components/schemas/UsernameDomainRecord"
|
|
17122
|
+
}
|
|
17138
17123
|
};
|
|
17139
17124
|
}
|
|
17140
17125
|
default: throw new Error("Unrecognized domain \"" + domain + "\"");
|