@nxtedition/types 23.0.62 → 23.0.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common/render-profile.d.ts +15 -0
- package/dist/common/settings.d.ts +16 -0
- package/dist/common/subtitle-style.d.ts +1 -0
- package/dist/nxtpression.d.ts +67 -17
- package/dist/records/domains/event.d.ts +2 -0
- package/dist/records/domains/media.d.ts +6 -0
- package/dist/records/domains/publish/facebook.d.ts +1 -2
- package/dist/records/domains/script.d.ts +8 -3
- package/dist/records/domains/shotbox.d.ts +1 -0
- package/dist/records/exact/monitor.d.ts +9 -8
- package/dist/records/validate/assert-guard.js +1214 -740
- package/dist/records/validate/assert.js +1215 -740
- package/dist/records/validate/is.js +83 -73
- package/dist/records/validate/schemas.js +404 -85
- package/dist/records/validate/stringify.js +175 -132
- package/dist/records/validate/utils.js +1 -1
- package/dist/records/validate/validate-equals.js +1707 -943
- package/dist/records/validate/validate.js +1135 -737
- package/package.json +3 -3
|
@@ -1263,19 +1263,7 @@ function _schemasExactRecord(name) {
|
|
|
1263
1263
|
messages: {
|
|
1264
1264
|
type: "array",
|
|
1265
1265
|
items: {
|
|
1266
|
-
|
|
1267
|
-
properties: {
|
|
1268
|
-
msg: {
|
|
1269
|
-
type: "string"
|
|
1270
|
-
},
|
|
1271
|
-
level: {
|
|
1272
|
-
type: "number"
|
|
1273
|
-
}
|
|
1274
|
-
},
|
|
1275
|
-
required: [
|
|
1276
|
-
"msg",
|
|
1277
|
-
"level"
|
|
1278
|
-
]
|
|
1266
|
+
$ref: "#/components/schemas/NxtStatusMessage"
|
|
1279
1267
|
}
|
|
1280
1268
|
}
|
|
1281
1269
|
},
|
|
@@ -1285,6 +1273,28 @@ function _schemasExactRecord(name) {
|
|
|
1285
1273
|
"messages"
|
|
1286
1274
|
]
|
|
1287
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
|
+
},
|
|
1288
1298
|
NxtStatusService: {
|
|
1289
1299
|
type: "object",
|
|
1290
1300
|
properties: {
|
|
@@ -1300,6 +1310,9 @@ function _schemasExactRecord(name) {
|
|
|
1300
1310
|
total: {
|
|
1301
1311
|
type: "number"
|
|
1302
1312
|
},
|
|
1313
|
+
ignored: {
|
|
1314
|
+
type: "boolean"
|
|
1315
|
+
},
|
|
1303
1316
|
tasks: {
|
|
1304
1317
|
type: "array",
|
|
1305
1318
|
items: {
|
|
@@ -1323,19 +1336,7 @@ function _schemasExactRecord(name) {
|
|
|
1323
1336
|
messages: {
|
|
1324
1337
|
type: "array",
|
|
1325
1338
|
items: {
|
|
1326
|
-
|
|
1327
|
-
properties: {
|
|
1328
|
-
msg: {
|
|
1329
|
-
type: "string"
|
|
1330
|
-
},
|
|
1331
|
-
level: {
|
|
1332
|
-
type: "number"
|
|
1333
|
-
}
|
|
1334
|
-
},
|
|
1335
|
-
required: [
|
|
1336
|
-
"msg",
|
|
1337
|
-
"level"
|
|
1338
|
-
]
|
|
1339
|
+
$ref: "#/components/schemas/NxtStatusMessage"
|
|
1339
1340
|
}
|
|
1340
1341
|
}
|
|
1341
1342
|
},
|
|
@@ -1356,19 +1357,7 @@ function _schemasExactRecord(name) {
|
|
|
1356
1357
|
messages: {
|
|
1357
1358
|
type: "array",
|
|
1358
1359
|
items: {
|
|
1359
|
-
|
|
1360
|
-
properties: {
|
|
1361
|
-
msg: {
|
|
1362
|
-
type: "string"
|
|
1363
|
-
},
|
|
1364
|
-
level: {
|
|
1365
|
-
type: "number"
|
|
1366
|
-
}
|
|
1367
|
-
},
|
|
1368
|
-
required: [
|
|
1369
|
-
"msg",
|
|
1370
|
-
"level"
|
|
1371
|
-
]
|
|
1360
|
+
$ref: "#/components/schemas/NxtStatusMessage"
|
|
1372
1361
|
}
|
|
1373
1362
|
}
|
|
1374
1363
|
},
|
|
@@ -2213,6 +2202,32 @@ function _schemasExactRecord(name) {
|
|
|
2213
2202
|
style: {
|
|
2214
2203
|
type: "string",
|
|
2215
2204
|
description: "Will pick styling from the corresponding `${style}:subtitle-style` asset."
|
|
2205
|
+
},
|
|
2206
|
+
ccconverter: {
|
|
2207
|
+
type: "object",
|
|
2208
|
+
properties: {
|
|
2209
|
+
preset: {
|
|
2210
|
+
type: "string",
|
|
2211
|
+
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."
|
|
2212
|
+
}
|
|
2213
|
+
},
|
|
2214
|
+
required: []
|
|
2215
|
+
},
|
|
2216
|
+
ass: {
|
|
2217
|
+
type: "object",
|
|
2218
|
+
properties: {
|
|
2219
|
+
futureWordWrapping: {
|
|
2220
|
+
type: "boolean"
|
|
2221
|
+
},
|
|
2222
|
+
scaledBorderAndShadow: {
|
|
2223
|
+
type: "boolean"
|
|
2224
|
+
},
|
|
2225
|
+
enableUnsafeLineSpacingHack: {
|
|
2226
|
+
type: "boolean"
|
|
2227
|
+
}
|
|
2228
|
+
},
|
|
2229
|
+
required: [],
|
|
2230
|
+
description: "Options to pass to encodeASS when generating subtitles for burn-in."
|
|
2216
2231
|
}
|
|
2217
2232
|
},
|
|
2218
2233
|
required: []
|
|
@@ -6979,6 +6994,22 @@ function _schemasDomainRecord(domain) {
|
|
|
6979
6994
|
},
|
|
6980
6995
|
startTime: {
|
|
6981
6996
|
type: "number"
|
|
6997
|
+
},
|
|
6998
|
+
shotboxGroup: {
|
|
6999
|
+
oneOf: [
|
|
7000
|
+
{
|
|
7001
|
+
type: "string"
|
|
7002
|
+
},
|
|
7003
|
+
{
|
|
7004
|
+
type: "array",
|
|
7005
|
+
items: {
|
|
7006
|
+
type: "string"
|
|
7007
|
+
}
|
|
7008
|
+
}
|
|
7009
|
+
]
|
|
7010
|
+
},
|
|
7011
|
+
shotboxVisible: {
|
|
7012
|
+
type: "boolean"
|
|
6982
7013
|
}
|
|
6983
7014
|
},
|
|
6984
7015
|
required: [],
|
|
@@ -7164,6 +7195,22 @@ function _schemasDomainRecord(domain) {
|
|
|
7164
7195
|
},
|
|
7165
7196
|
startTime: {
|
|
7166
7197
|
type: "number"
|
|
7198
|
+
},
|
|
7199
|
+
shotboxGroup: {
|
|
7200
|
+
oneOf: [
|
|
7201
|
+
{
|
|
7202
|
+
type: "string"
|
|
7203
|
+
},
|
|
7204
|
+
{
|
|
7205
|
+
type: "array",
|
|
7206
|
+
items: {
|
|
7207
|
+
type: "string"
|
|
7208
|
+
}
|
|
7209
|
+
}
|
|
7210
|
+
]
|
|
7211
|
+
},
|
|
7212
|
+
shotboxVisible: {
|
|
7213
|
+
type: "boolean"
|
|
7167
7214
|
}
|
|
7168
7215
|
},
|
|
7169
7216
|
required: [],
|
|
@@ -8382,6 +8429,9 @@ function _schemasDomainRecord(domain) {
|
|
|
8382
8429
|
spacing: {
|
|
8383
8430
|
type: "string"
|
|
8384
8431
|
},
|
|
8432
|
+
lineSpacing: {
|
|
8433
|
+
type: "string"
|
|
8434
|
+
},
|
|
8385
8435
|
angle: {
|
|
8386
8436
|
type: "string"
|
|
8387
8437
|
},
|
|
@@ -8562,6 +8612,32 @@ function _schemasDomainRecord(domain) {
|
|
|
8562
8612
|
style: {
|
|
8563
8613
|
type: "string",
|
|
8564
8614
|
description: "Will pick styling from the corresponding `${style}:subtitle-style` asset."
|
|
8615
|
+
},
|
|
8616
|
+
ccconverter: {
|
|
8617
|
+
type: "object",
|
|
8618
|
+
properties: {
|
|
8619
|
+
preset: {
|
|
8620
|
+
type: "string",
|
|
8621
|
+
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."
|
|
8622
|
+
}
|
|
8623
|
+
},
|
|
8624
|
+
required: []
|
|
8625
|
+
},
|
|
8626
|
+
ass: {
|
|
8627
|
+
type: "object",
|
|
8628
|
+
properties: {
|
|
8629
|
+
futureWordWrapping: {
|
|
8630
|
+
type: "boolean"
|
|
8631
|
+
},
|
|
8632
|
+
scaledBorderAndShadow: {
|
|
8633
|
+
type: "boolean"
|
|
8634
|
+
},
|
|
8635
|
+
enableUnsafeLineSpacingHack: {
|
|
8636
|
+
type: "boolean"
|
|
8637
|
+
}
|
|
8638
|
+
},
|
|
8639
|
+
required: [],
|
|
8640
|
+
description: "Options to pass to encodeASS when generating subtitles for burn-in."
|
|
8565
8641
|
}
|
|
8566
8642
|
},
|
|
8567
8643
|
required: []
|
|
@@ -8575,6 +8651,51 @@ function _schemasDomainRecord(domain) {
|
|
|
8575
8651
|
]
|
|
8576
8652
|
};
|
|
8577
8653
|
}
|
|
8654
|
+
case ":media.consolidate?": {
|
|
8655
|
+
return {
|
|
8656
|
+
version: "3.1",
|
|
8657
|
+
components: {
|
|
8658
|
+
schemas: {
|
|
8659
|
+
MediaDomainConsolidateRecordProvided: {
|
|
8660
|
+
type: "object",
|
|
8661
|
+
properties: {
|
|
8662
|
+
status: {
|
|
8663
|
+
oneOf: [
|
|
8664
|
+
{
|
|
8665
|
+
"const": "completed"
|
|
8666
|
+
},
|
|
8667
|
+
{
|
|
8668
|
+
"const": "error"
|
|
8669
|
+
},
|
|
8670
|
+
{
|
|
8671
|
+
"const": "idle"
|
|
8672
|
+
},
|
|
8673
|
+
{
|
|
8674
|
+
"const": "pending"
|
|
8675
|
+
},
|
|
8676
|
+
{
|
|
8677
|
+
"const": "source_mismatch"
|
|
8678
|
+
}
|
|
8679
|
+
]
|
|
8680
|
+
},
|
|
8681
|
+
progress: {
|
|
8682
|
+
type: "number"
|
|
8683
|
+
},
|
|
8684
|
+
error: {}
|
|
8685
|
+
},
|
|
8686
|
+
required: [
|
|
8687
|
+
"status"
|
|
8688
|
+
]
|
|
8689
|
+
}
|
|
8690
|
+
}
|
|
8691
|
+
},
|
|
8692
|
+
schemas: [
|
|
8693
|
+
{
|
|
8694
|
+
$ref: "#/components/schemas/MediaDomainConsolidateRecordProvided"
|
|
8695
|
+
}
|
|
8696
|
+
]
|
|
8697
|
+
};
|
|
8698
|
+
}
|
|
8578
8699
|
case ":media.renders?": {
|
|
8579
8700
|
return {
|
|
8580
8701
|
version: "3.1",
|
|
@@ -10772,6 +10893,9 @@ function _schemasDomainRecord(domain) {
|
|
|
10772
10893
|
spacing: {
|
|
10773
10894
|
type: "string"
|
|
10774
10895
|
},
|
|
10896
|
+
lineSpacing: {
|
|
10897
|
+
type: "string"
|
|
10898
|
+
},
|
|
10775
10899
|
angle: {
|
|
10776
10900
|
type: "string"
|
|
10777
10901
|
},
|
|
@@ -10880,6 +11004,32 @@ function _schemasDomainRecord(domain) {
|
|
|
10880
11004
|
style: {
|
|
10881
11005
|
type: "string",
|
|
10882
11006
|
description: "Will pick styling from the corresponding `${style}:subtitle-style` asset."
|
|
11007
|
+
},
|
|
11008
|
+
ccconverter: {
|
|
11009
|
+
type: "object",
|
|
11010
|
+
properties: {
|
|
11011
|
+
preset: {
|
|
11012
|
+
type: "string",
|
|
11013
|
+
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."
|
|
11014
|
+
}
|
|
11015
|
+
},
|
|
11016
|
+
required: []
|
|
11017
|
+
},
|
|
11018
|
+
ass: {
|
|
11019
|
+
type: "object",
|
|
11020
|
+
properties: {
|
|
11021
|
+
futureWordWrapping: {
|
|
11022
|
+
type: "boolean"
|
|
11023
|
+
},
|
|
11024
|
+
scaledBorderAndShadow: {
|
|
11025
|
+
type: "boolean"
|
|
11026
|
+
},
|
|
11027
|
+
enableUnsafeLineSpacingHack: {
|
|
11028
|
+
type: "boolean"
|
|
11029
|
+
}
|
|
11030
|
+
},
|
|
11031
|
+
required: [],
|
|
11032
|
+
description: "Options to pass to encodeASS when generating subtitles for burn-in."
|
|
10883
11033
|
}
|
|
10884
11034
|
},
|
|
10885
11035
|
required: []
|
|
@@ -11177,7 +11327,7 @@ function _schemasDomainRecord(domain) {
|
|
|
11177
11327
|
$ref: "#/components/schemas/ResolvedFilePublishRender"
|
|
11178
11328
|
},
|
|
11179
11329
|
{
|
|
11180
|
-
$ref: "#/components/schemas/__type.
|
|
11330
|
+
$ref: "#/components/schemas/__type.o12"
|
|
11181
11331
|
}
|
|
11182
11332
|
]
|
|
11183
11333
|
},
|
|
@@ -11221,11 +11371,11 @@ function _schemasDomainRecord(domain) {
|
|
|
11221
11371
|
"type"
|
|
11222
11372
|
]
|
|
11223
11373
|
},
|
|
11224
|
-
"__type.
|
|
11374
|
+
"__type.o12": {
|
|
11225
11375
|
type: "object",
|
|
11226
11376
|
properties: {
|
|
11227
11377
|
__context: {
|
|
11228
|
-
$ref: "#/components/schemas/__type.
|
|
11378
|
+
$ref: "#/components/schemas/__type.o13",
|
|
11229
11379
|
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
11380
|
},
|
|
11231
11381
|
__returnValue: {
|
|
@@ -11238,7 +11388,7 @@ function _schemasDomainRecord(domain) {
|
|
|
11238
11388
|
"__returnValue"
|
|
11239
11389
|
]
|
|
11240
11390
|
},
|
|
11241
|
-
"__type.
|
|
11391
|
+
"__type.o13": {
|
|
11242
11392
|
type: "object",
|
|
11243
11393
|
properties: {
|
|
11244
11394
|
publish: {
|
|
@@ -11513,7 +11663,7 @@ function _schemasDomainRecord(domain) {
|
|
|
11513
11663
|
$ref: "#/components/schemas/ResolvedFilePublishRender"
|
|
11514
11664
|
},
|
|
11515
11665
|
{
|
|
11516
|
-
$ref: "#/components/schemas/__type.
|
|
11666
|
+
$ref: "#/components/schemas/__type.o11"
|
|
11517
11667
|
}
|
|
11518
11668
|
]
|
|
11519
11669
|
},
|
|
@@ -11715,6 +11865,9 @@ function _schemasDomainRecord(domain) {
|
|
|
11715
11865
|
spacing: {
|
|
11716
11866
|
type: "string"
|
|
11717
11867
|
},
|
|
11868
|
+
lineSpacing: {
|
|
11869
|
+
type: "string"
|
|
11870
|
+
},
|
|
11718
11871
|
angle: {
|
|
11719
11872
|
type: "string"
|
|
11720
11873
|
},
|
|
@@ -11823,15 +11976,41 @@ function _schemasDomainRecord(domain) {
|
|
|
11823
11976
|
style: {
|
|
11824
11977
|
type: "string",
|
|
11825
11978
|
description: "Will pick styling from the corresponding `${style}:subtitle-style` asset."
|
|
11979
|
+
},
|
|
11980
|
+
ccconverter: {
|
|
11981
|
+
type: "object",
|
|
11982
|
+
properties: {
|
|
11983
|
+
preset: {
|
|
11984
|
+
type: "string",
|
|
11985
|
+
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."
|
|
11986
|
+
}
|
|
11987
|
+
},
|
|
11988
|
+
required: []
|
|
11989
|
+
},
|
|
11990
|
+
ass: {
|
|
11991
|
+
type: "object",
|
|
11992
|
+
properties: {
|
|
11993
|
+
futureWordWrapping: {
|
|
11994
|
+
type: "boolean"
|
|
11995
|
+
},
|
|
11996
|
+
scaledBorderAndShadow: {
|
|
11997
|
+
type: "boolean"
|
|
11998
|
+
},
|
|
11999
|
+
enableUnsafeLineSpacingHack: {
|
|
12000
|
+
type: "boolean"
|
|
12001
|
+
}
|
|
12002
|
+
},
|
|
12003
|
+
required: [],
|
|
12004
|
+
description: "Options to pass to encodeASS when generating subtitles for burn-in."
|
|
11826
12005
|
}
|
|
11827
12006
|
},
|
|
11828
12007
|
required: []
|
|
11829
12008
|
},
|
|
11830
|
-
"__type.
|
|
12009
|
+
"__type.o11": {
|
|
11831
12010
|
type: "object",
|
|
11832
12011
|
properties: {
|
|
11833
12012
|
__context: {
|
|
11834
|
-
$ref: "#/components/schemas/__type.
|
|
12013
|
+
$ref: "#/components/schemas/__type.o12",
|
|
11835
12014
|
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
12015
|
},
|
|
11837
12016
|
__returnValue: {
|
|
@@ -11844,7 +12023,7 @@ function _schemasDomainRecord(domain) {
|
|
|
11844
12023
|
"__returnValue"
|
|
11845
12024
|
]
|
|
11846
12025
|
},
|
|
11847
|
-
"__type.
|
|
12026
|
+
"__type.o12": {
|
|
11848
12027
|
type: "object",
|
|
11849
12028
|
properties: {
|
|
11850
12029
|
publish: {
|
|
@@ -12045,26 +12224,6 @@ function _schemasDomainRecord(domain) {
|
|
|
12045
12224
|
],
|
|
12046
12225
|
description: "render preset + overrides"
|
|
12047
12226
|
},
|
|
12048
|
-
FacebookPublishStatsRecord: {
|
|
12049
|
-
type: "object",
|
|
12050
|
-
properties: {
|
|
12051
|
-
status: {
|
|
12052
|
-
type: "string"
|
|
12053
|
-
},
|
|
12054
|
-
substatus: {
|
|
12055
|
-
type: "string"
|
|
12056
|
-
},
|
|
12057
|
-
messages: {
|
|
12058
|
-
type: "array",
|
|
12059
|
-
items: {
|
|
12060
|
-
$ref: "#/components/schemas/Message"
|
|
12061
|
-
}
|
|
12062
|
-
},
|
|
12063
|
-
retrieved: {},
|
|
12064
|
-
defaults: {}
|
|
12065
|
-
},
|
|
12066
|
-
required: []
|
|
12067
|
-
},
|
|
12068
12227
|
PublishStatsRecordBase: {
|
|
12069
12228
|
type: "object",
|
|
12070
12229
|
properties: {
|
|
@@ -12093,9 +12252,6 @@ function _schemasDomainRecord(domain) {
|
|
|
12093
12252
|
{
|
|
12094
12253
|
$ref: "#/components/schemas/FilePublishStatsRecord"
|
|
12095
12254
|
},
|
|
12096
|
-
{
|
|
12097
|
-
$ref: "#/components/schemas/FacebookPublishStatsRecord"
|
|
12098
|
-
},
|
|
12099
12255
|
{
|
|
12100
12256
|
$ref: "#/components/schemas/PublishStatsRecordBase"
|
|
12101
12257
|
}
|
|
@@ -12344,6 +12500,32 @@ function _schemasDomainRecord(domain) {
|
|
|
12344
12500
|
style: {
|
|
12345
12501
|
type: "string",
|
|
12346
12502
|
description: "Will pick styling from the corresponding `${style}:subtitle-style` asset."
|
|
12503
|
+
},
|
|
12504
|
+
ccconverter: {
|
|
12505
|
+
type: "object",
|
|
12506
|
+
properties: {
|
|
12507
|
+
preset: {
|
|
12508
|
+
type: "string",
|
|
12509
|
+
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."
|
|
12510
|
+
}
|
|
12511
|
+
},
|
|
12512
|
+
required: []
|
|
12513
|
+
},
|
|
12514
|
+
ass: {
|
|
12515
|
+
type: "object",
|
|
12516
|
+
properties: {
|
|
12517
|
+
futureWordWrapping: {
|
|
12518
|
+
type: "boolean"
|
|
12519
|
+
},
|
|
12520
|
+
scaledBorderAndShadow: {
|
|
12521
|
+
type: "boolean"
|
|
12522
|
+
},
|
|
12523
|
+
enableUnsafeLineSpacingHack: {
|
|
12524
|
+
type: "boolean"
|
|
12525
|
+
}
|
|
12526
|
+
},
|
|
12527
|
+
required: [],
|
|
12528
|
+
description: "Options to pass to encodeASS when generating subtitles for burn-in."
|
|
12347
12529
|
}
|
|
12348
12530
|
},
|
|
12349
12531
|
required: []
|
|
@@ -13293,6 +13475,9 @@ function _schemasDomainRecord(domain) {
|
|
|
13293
13475
|
spacing: {
|
|
13294
13476
|
type: "string"
|
|
13295
13477
|
},
|
|
13478
|
+
lineSpacing: {
|
|
13479
|
+
type: "string"
|
|
13480
|
+
},
|
|
13296
13481
|
angle: {
|
|
13297
13482
|
type: "string"
|
|
13298
13483
|
},
|
|
@@ -13401,6 +13586,32 @@ function _schemasDomainRecord(domain) {
|
|
|
13401
13586
|
style: {
|
|
13402
13587
|
type: "string",
|
|
13403
13588
|
description: "Will pick styling from the corresponding `${style}:subtitle-style` asset."
|
|
13589
|
+
},
|
|
13590
|
+
ccconverter: {
|
|
13591
|
+
type: "object",
|
|
13592
|
+
properties: {
|
|
13593
|
+
preset: {
|
|
13594
|
+
type: "string",
|
|
13595
|
+
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."
|
|
13596
|
+
}
|
|
13597
|
+
},
|
|
13598
|
+
required: []
|
|
13599
|
+
},
|
|
13600
|
+
ass: {
|
|
13601
|
+
type: "object",
|
|
13602
|
+
properties: {
|
|
13603
|
+
futureWordWrapping: {
|
|
13604
|
+
type: "boolean"
|
|
13605
|
+
},
|
|
13606
|
+
scaledBorderAndShadow: {
|
|
13607
|
+
type: "boolean"
|
|
13608
|
+
},
|
|
13609
|
+
enableUnsafeLineSpacingHack: {
|
|
13610
|
+
type: "boolean"
|
|
13611
|
+
}
|
|
13612
|
+
},
|
|
13613
|
+
required: [],
|
|
13614
|
+
description: "Options to pass to encodeASS when generating subtitles for burn-in."
|
|
13404
13615
|
}
|
|
13405
13616
|
},
|
|
13406
13617
|
required: []
|
|
@@ -13988,7 +14199,10 @@ function _schemasDomainRecord(domain) {
|
|
|
13988
14199
|
$ref: "#/components/schemas/EventNodeContent"
|
|
13989
14200
|
},
|
|
13990
14201
|
{
|
|
13991
|
-
$ref: "#/components/schemas/
|
|
14202
|
+
$ref: "#/components/schemas/FormattedTextNodeContent"
|
|
14203
|
+
},
|
|
14204
|
+
{
|
|
14205
|
+
$ref: "#/components/schemas/LinkNodeContent"
|
|
13992
14206
|
},
|
|
13993
14207
|
{
|
|
13994
14208
|
$ref: "#/components/schemas/ListItemNodeContent"
|
|
@@ -14035,25 +14249,14 @@ function _schemasDomainRecord(domain) {
|
|
|
14035
14249
|
required: [
|
|
14036
14250
|
"type",
|
|
14037
14251
|
"id",
|
|
14038
|
-
"mixin"
|
|
14039
|
-
"children"
|
|
14252
|
+
"mixin"
|
|
14040
14253
|
]
|
|
14041
14254
|
},
|
|
14042
|
-
|
|
14255
|
+
FormattedTextNodeContent: {
|
|
14043
14256
|
type: "object",
|
|
14044
14257
|
properties: {
|
|
14045
14258
|
type: {
|
|
14046
|
-
|
|
14047
|
-
{
|
|
14048
|
-
"const": "link"
|
|
14049
|
-
},
|
|
14050
|
-
{
|
|
14051
|
-
"const": "text"
|
|
14052
|
-
},
|
|
14053
|
-
{
|
|
14054
|
-
"const": "autolink"
|
|
14055
|
-
}
|
|
14056
|
-
]
|
|
14259
|
+
"const": "text"
|
|
14057
14260
|
},
|
|
14058
14261
|
text: {
|
|
14059
14262
|
type: "string"
|
|
@@ -14070,6 +14273,31 @@ function _schemasDomainRecord(domain) {
|
|
|
14070
14273
|
"text"
|
|
14071
14274
|
]
|
|
14072
14275
|
},
|
|
14276
|
+
LinkNodeContent: {
|
|
14277
|
+
type: "object",
|
|
14278
|
+
properties: {
|
|
14279
|
+
type: {
|
|
14280
|
+
oneOf: [
|
|
14281
|
+
{
|
|
14282
|
+
"const": "link"
|
|
14283
|
+
},
|
|
14284
|
+
{
|
|
14285
|
+
"const": "autolink"
|
|
14286
|
+
}
|
|
14287
|
+
]
|
|
14288
|
+
},
|
|
14289
|
+
children: {
|
|
14290
|
+
type: "array",
|
|
14291
|
+
items: {
|
|
14292
|
+
$ref: "#/components/schemas/FormattedTextNodeContent"
|
|
14293
|
+
}
|
|
14294
|
+
}
|
|
14295
|
+
},
|
|
14296
|
+
required: [
|
|
14297
|
+
"type",
|
|
14298
|
+
"children"
|
|
14299
|
+
]
|
|
14300
|
+
},
|
|
14073
14301
|
ListItemNodeContent: {
|
|
14074
14302
|
type: "object",
|
|
14075
14303
|
properties: {
|
|
@@ -14095,6 +14323,16 @@ function _schemasDomainRecord(domain) {
|
|
|
14095
14323
|
"children"
|
|
14096
14324
|
]
|
|
14097
14325
|
},
|
|
14326
|
+
TextNodeContent: {
|
|
14327
|
+
oneOf: [
|
|
14328
|
+
{
|
|
14329
|
+
$ref: "#/components/schemas/FormattedTextNodeContent"
|
|
14330
|
+
},
|
|
14331
|
+
{
|
|
14332
|
+
$ref: "#/components/schemas/LinkNodeContent"
|
|
14333
|
+
}
|
|
14334
|
+
]
|
|
14335
|
+
},
|
|
14098
14336
|
ListNodeContent: {
|
|
14099
14337
|
type: "object",
|
|
14100
14338
|
properties: {
|
|
@@ -14900,6 +15138,38 @@ function _schemasDomainRecord(domain) {
|
|
|
14900
15138
|
},
|
|
14901
15139
|
required: []
|
|
14902
15140
|
}
|
|
15141
|
+
},
|
|
15142
|
+
colorHistory: {
|
|
15143
|
+
type: "array",
|
|
15144
|
+
items: {
|
|
15145
|
+
type: "object",
|
|
15146
|
+
properties: {
|
|
15147
|
+
color: {
|
|
15148
|
+
oneOf: [
|
|
15149
|
+
{
|
|
15150
|
+
type: "null"
|
|
15151
|
+
},
|
|
15152
|
+
{
|
|
15153
|
+
type: "string"
|
|
15154
|
+
}
|
|
15155
|
+
]
|
|
15156
|
+
},
|
|
15157
|
+
backgroundColor: {
|
|
15158
|
+
oneOf: [
|
|
15159
|
+
{
|
|
15160
|
+
type: "null"
|
|
15161
|
+
},
|
|
15162
|
+
{
|
|
15163
|
+
type: "string"
|
|
15164
|
+
}
|
|
15165
|
+
]
|
|
15166
|
+
}
|
|
15167
|
+
},
|
|
15168
|
+
required: [
|
|
15169
|
+
"color",
|
|
15170
|
+
"backgroundColor"
|
|
15171
|
+
]
|
|
15172
|
+
}
|
|
14903
15173
|
}
|
|
14904
15174
|
},
|
|
14905
15175
|
required: []
|
|
@@ -15284,6 +15554,9 @@ function _schemasDomainRecord(domain) {
|
|
|
15284
15554
|
{
|
|
15285
15555
|
"const": "spacing"
|
|
15286
15556
|
},
|
|
15557
|
+
{
|
|
15558
|
+
"const": "lineSpacing"
|
|
15559
|
+
},
|
|
15287
15560
|
{
|
|
15288
15561
|
"const": "angle"
|
|
15289
15562
|
},
|
|
@@ -15313,6 +15586,9 @@ function _schemasDomainRecord(domain) {
|
|
|
15313
15586
|
}
|
|
15314
15587
|
]
|
|
15315
15588
|
}
|
|
15589
|
+
},
|
|
15590
|
+
previewResolutionScale: {
|
|
15591
|
+
type: "number"
|
|
15316
15592
|
}
|
|
15317
15593
|
},
|
|
15318
15594
|
required: []
|
|
@@ -15855,6 +16131,18 @@ function _schemasDomainRecord(domain) {
|
|
|
15855
16131
|
clone: {
|
|
15856
16132
|
type: "object",
|
|
15857
16133
|
properties: {
|
|
16134
|
+
create: {
|
|
16135
|
+
type: "object",
|
|
16136
|
+
properties: {
|
|
16137
|
+
titlePrefix: {
|
|
16138
|
+
type: "string"
|
|
16139
|
+
},
|
|
16140
|
+
titleSuffix: {
|
|
16141
|
+
type: "string"
|
|
16142
|
+
}
|
|
16143
|
+
},
|
|
16144
|
+
required: []
|
|
16145
|
+
},
|
|
15858
16146
|
duplicate: {
|
|
15859
16147
|
type: "object",
|
|
15860
16148
|
properties: {
|
|
@@ -15914,6 +16202,28 @@ function _schemasDomainRecord(domain) {
|
|
|
15914
16202
|
}
|
|
15915
16203
|
},
|
|
15916
16204
|
required: []
|
|
16205
|
+
},
|
|
16206
|
+
shotbox: {
|
|
16207
|
+
type: "object",
|
|
16208
|
+
properties: {
|
|
16209
|
+
layout: {
|
|
16210
|
+
type: "string"
|
|
16211
|
+
}
|
|
16212
|
+
},
|
|
16213
|
+
required: []
|
|
16214
|
+
},
|
|
16215
|
+
performance: {
|
|
16216
|
+
type: "object",
|
|
16217
|
+
properties: {
|
|
16218
|
+
ignoredMessages: {
|
|
16219
|
+
type: "array",
|
|
16220
|
+
items: {
|
|
16221
|
+
type: "string"
|
|
16222
|
+
},
|
|
16223
|
+
description: "List of message identifiers to ignore in overall health aggregation (format: \"serviceName:messageText\")"
|
|
16224
|
+
}
|
|
16225
|
+
},
|
|
16226
|
+
required: []
|
|
15917
16227
|
}
|
|
15918
16228
|
},
|
|
15919
16229
|
required: []
|
|
@@ -16160,6 +16470,12 @@ function _schemasDomainRecord(domain) {
|
|
|
16160
16470
|
inferGroups: {
|
|
16161
16471
|
type: "boolean"
|
|
16162
16472
|
},
|
|
16473
|
+
excludeFromInferredGroups: {
|
|
16474
|
+
type: "array",
|
|
16475
|
+
items: {
|
|
16476
|
+
type: "string"
|
|
16477
|
+
}
|
|
16478
|
+
},
|
|
16163
16479
|
layout: {
|
|
16164
16480
|
type: "array",
|
|
16165
16481
|
items: {
|
|
@@ -16457,6 +16773,9 @@ function _schemasDomainRecord(domain) {
|
|
|
16457
16773
|
spacing: {
|
|
16458
16774
|
type: "string"
|
|
16459
16775
|
},
|
|
16776
|
+
lineSpacing: {
|
|
16777
|
+
type: "string"
|
|
16778
|
+
},
|
|
16460
16779
|
angle: {
|
|
16461
16780
|
type: "string"
|
|
16462
16781
|
},
|