@nxtedition/types 23.0.22 → 23.0.23
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/index.d.ts +3 -0
- package/dist/common/index.js +3 -0
- package/dist/common/nxtpression.d.ts +3 -3
- package/dist/common/nxtpression.js +39 -49
- package/dist/common/render-preset.d.ts +12 -24
- package/dist/common/render-preset.js +735 -257
- package/dist/common/render-profile.d.ts +28 -0
- package/dist/common/render-profile.js +726 -0
- package/dist/common/render-query.d.ts +18 -0
- package/dist/common/render-query.js +1093 -0
- package/dist/common/render-scene.d.ts +38 -0
- package/dist/common/render-scene.js +1116 -0
- package/dist/domains/file.d.ts +9 -1
- package/dist/domains/file.js +1258 -0
- package/dist/domains/index.d.ts +3 -1
- package/dist/domains/index.js +1 -0
- package/dist/domains/media.d.ts +6 -27
- package/dist/domains/media.js +401 -128
- package/dist/domains/panel.js +218 -675
- package/dist/domains/render-preset.d.ts +2 -2
- package/dist/domains/render.d.ts +44 -0
- package/dist/domains/render.js +1273 -0
- package/dist/index.js +16 -12
- package/dist/schema.json +952 -120
- package/package.json +1 -1
package/dist/schema.json
CHANGED
|
@@ -1218,6 +1218,9 @@
|
|
|
1218
1218
|
":file.restrictions": {
|
|
1219
1219
|
"$ref": "#/definitions/FileRestrictionsRecord"
|
|
1220
1220
|
},
|
|
1221
|
+
":file.stats?": {
|
|
1222
|
+
"$ref": "#/definitions/FileStats"
|
|
1223
|
+
},
|
|
1221
1224
|
":general.created": {
|
|
1222
1225
|
"$ref": "#/definitions/GeneralCreatedRecord"
|
|
1223
1226
|
},
|
|
@@ -1255,7 +1258,7 @@
|
|
|
1255
1258
|
"$ref": "#/definitions/MediaRestrictionsRecord"
|
|
1256
1259
|
},
|
|
1257
1260
|
":media.source": {
|
|
1258
|
-
"$ref": "#/definitions/
|
|
1261
|
+
"$ref": "#/definitions/RenderSceneObject"
|
|
1259
1262
|
},
|
|
1260
1263
|
":media.transcriptChanges": {
|
|
1261
1264
|
"additionalProperties": {
|
|
@@ -1312,7 +1315,16 @@
|
|
|
1312
1315
|
"$ref": "#/definitions/PublishedRecord"
|
|
1313
1316
|
},
|
|
1314
1317
|
":render-preset": {
|
|
1315
|
-
"$ref": "#/definitions/
|
|
1318
|
+
"$ref": "#/definitions/RenderPresetObject"
|
|
1319
|
+
},
|
|
1320
|
+
":render.query?": {
|
|
1321
|
+
"$ref": "#/definitions/RenderDomainQueryRecord"
|
|
1322
|
+
},
|
|
1323
|
+
":render.result?": {
|
|
1324
|
+
"$ref": "#/definitions/RenderDomainResultRecord"
|
|
1325
|
+
},
|
|
1326
|
+
":render.stats?": {
|
|
1327
|
+
"$ref": "#/definitions/RenderDomainStatsRecord"
|
|
1316
1328
|
},
|
|
1317
1329
|
":revs?": {
|
|
1318
1330
|
"$ref": "#/definitions/RevsRecord"
|
|
@@ -1406,6 +1418,7 @@
|
|
|
1406
1418
|
":event._template?",
|
|
1407
1419
|
":file.replicate",
|
|
1408
1420
|
":file.restrictions",
|
|
1421
|
+
":file.stats?",
|
|
1409
1422
|
":general.created",
|
|
1410
1423
|
":general.description",
|
|
1411
1424
|
":general.poster",
|
|
@@ -1436,6 +1449,9 @@
|
|
|
1436
1449
|
":publish.stats?",
|
|
1437
1450
|
":published",
|
|
1438
1451
|
":render-preset",
|
|
1452
|
+
":render.query?",
|
|
1453
|
+
":render.result?",
|
|
1454
|
+
":render.stats?",
|
|
1439
1455
|
":revs?",
|
|
1440
1456
|
":role.tags",
|
|
1441
1457
|
":script.children",
|
|
@@ -1511,6 +1527,7 @@
|
|
|
1511
1527
|
":event._template?",
|
|
1512
1528
|
":file.replicate",
|
|
1513
1529
|
":file.restrictions",
|
|
1530
|
+
":file.stats?",
|
|
1514
1531
|
":general.created",
|
|
1515
1532
|
":general.description",
|
|
1516
1533
|
":general.poster",
|
|
@@ -1541,6 +1558,9 @@
|
|
|
1541
1558
|
":publish.stats?",
|
|
1542
1559
|
":published",
|
|
1543
1560
|
":render-preset",
|
|
1561
|
+
":render.query?",
|
|
1562
|
+
":render.result?",
|
|
1563
|
+
":render.stats?",
|
|
1544
1564
|
":revs?",
|
|
1545
1565
|
":role.tags",
|
|
1546
1566
|
":script.children",
|
|
@@ -1906,14 +1926,21 @@
|
|
|
1906
1926
|
},
|
|
1907
1927
|
":file.restrictions": {
|
|
1908
1928
|
"$ref": "#/definitions/FileRestrictionsRecord"
|
|
1929
|
+
},
|
|
1930
|
+
":file.stats?": {
|
|
1931
|
+
"$ref": "#/definitions/FileStats"
|
|
1909
1932
|
}
|
|
1910
1933
|
},
|
|
1911
1934
|
"required": [
|
|
1912
1935
|
":file.replicate",
|
|
1913
|
-
":file.restrictions"
|
|
1936
|
+
":file.restrictions",
|
|
1937
|
+
":file.stats?"
|
|
1914
1938
|
],
|
|
1915
1939
|
"type": "object"
|
|
1916
1940
|
},
|
|
1941
|
+
"FileDomainStatsRecord": {
|
|
1942
|
+
"$ref": "#/definitions/FileStats"
|
|
1943
|
+
},
|
|
1917
1944
|
"FilePublishConnectionRecord": {
|
|
1918
1945
|
"additionalProperties": false,
|
|
1919
1946
|
"properties": {
|
|
@@ -2206,6 +2233,661 @@
|
|
|
2206
2233
|
},
|
|
2207
2234
|
"type": "object"
|
|
2208
2235
|
},
|
|
2236
|
+
"FileStats": {
|
|
2237
|
+
"additionalProperties": false,
|
|
2238
|
+
"properties": {
|
|
2239
|
+
"btime": {
|
|
2240
|
+
"additionalProperties": false,
|
|
2241
|
+
"properties": {
|
|
2242
|
+
"typia.tag": {
|
|
2243
|
+
"additionalProperties": false,
|
|
2244
|
+
"description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
|
|
2245
|
+
"properties": {
|
|
2246
|
+
"exclusive": {
|
|
2247
|
+
"const": true,
|
|
2248
|
+
"type": "boolean"
|
|
2249
|
+
},
|
|
2250
|
+
"kind": {
|
|
2251
|
+
"const": "type",
|
|
2252
|
+
"type": "string"
|
|
2253
|
+
},
|
|
2254
|
+
"schema": {
|
|
2255
|
+
"additionalProperties": false,
|
|
2256
|
+
"properties": {
|
|
2257
|
+
"type": {
|
|
2258
|
+
"const": "integer",
|
|
2259
|
+
"type": "string"
|
|
2260
|
+
}
|
|
2261
|
+
},
|
|
2262
|
+
"required": [
|
|
2263
|
+
"type"
|
|
2264
|
+
],
|
|
2265
|
+
"type": "object"
|
|
2266
|
+
},
|
|
2267
|
+
"target": {
|
|
2268
|
+
"enum": [
|
|
2269
|
+
"bigint",
|
|
2270
|
+
"number"
|
|
2271
|
+
],
|
|
2272
|
+
"type": "string"
|
|
2273
|
+
},
|
|
2274
|
+
"validate": {
|
|
2275
|
+
"additionalProperties": false,
|
|
2276
|
+
"properties": {
|
|
2277
|
+
"bigint": {
|
|
2278
|
+
"const": "BigInt(0) <= $input",
|
|
2279
|
+
"type": "string"
|
|
2280
|
+
},
|
|
2281
|
+
"number": {
|
|
2282
|
+
"const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
|
|
2283
|
+
"type": "string"
|
|
2284
|
+
}
|
|
2285
|
+
},
|
|
2286
|
+
"required": [
|
|
2287
|
+
"bigint",
|
|
2288
|
+
"number"
|
|
2289
|
+
],
|
|
2290
|
+
"type": "object"
|
|
2291
|
+
},
|
|
2292
|
+
"value": {
|
|
2293
|
+
"const": "uint64",
|
|
2294
|
+
"type": "string"
|
|
2295
|
+
}
|
|
2296
|
+
},
|
|
2297
|
+
"required": [
|
|
2298
|
+
"exclusive",
|
|
2299
|
+
"kind",
|
|
2300
|
+
"schema",
|
|
2301
|
+
"target",
|
|
2302
|
+
"validate",
|
|
2303
|
+
"value"
|
|
2304
|
+
],
|
|
2305
|
+
"type": "object"
|
|
2306
|
+
}
|
|
2307
|
+
},
|
|
2308
|
+
"type": "object"
|
|
2309
|
+
},
|
|
2310
|
+
"completed": {
|
|
2311
|
+
"type": "boolean"
|
|
2312
|
+
},
|
|
2313
|
+
"deleted": {
|
|
2314
|
+
"type": "boolean"
|
|
2315
|
+
},
|
|
2316
|
+
"encoding": {
|
|
2317
|
+
"type": "string"
|
|
2318
|
+
},
|
|
2319
|
+
"error": {
|
|
2320
|
+
"anyOf": [
|
|
2321
|
+
{
|
|
2322
|
+
"$ref": "#/definitions/NxtError"
|
|
2323
|
+
},
|
|
2324
|
+
{
|
|
2325
|
+
"items": {
|
|
2326
|
+
"$ref": "#/definitions/NxtError"
|
|
2327
|
+
},
|
|
2328
|
+
"type": "array"
|
|
2329
|
+
}
|
|
2330
|
+
]
|
|
2331
|
+
},
|
|
2332
|
+
"hash": {
|
|
2333
|
+
"additionalProperties": false,
|
|
2334
|
+
"properties": {
|
|
2335
|
+
"typia.tag": {
|
|
2336
|
+
"additionalProperties": false,
|
|
2337
|
+
"description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
|
|
2338
|
+
"properties": {
|
|
2339
|
+
"exclusive": {
|
|
2340
|
+
"items": [
|
|
2341
|
+
{
|
|
2342
|
+
"const": "format",
|
|
2343
|
+
"type": "string"
|
|
2344
|
+
},
|
|
2345
|
+
{
|
|
2346
|
+
"const": "pattern",
|
|
2347
|
+
"type": "string"
|
|
2348
|
+
}
|
|
2349
|
+
],
|
|
2350
|
+
"maxItems": 2,
|
|
2351
|
+
"minItems": 2,
|
|
2352
|
+
"type": "array"
|
|
2353
|
+
},
|
|
2354
|
+
"kind": {
|
|
2355
|
+
"const": "pattern",
|
|
2356
|
+
"type": "string"
|
|
2357
|
+
},
|
|
2358
|
+
"schema": {
|
|
2359
|
+
"additionalProperties": false,
|
|
2360
|
+
"properties": {
|
|
2361
|
+
"pattern": {
|
|
2362
|
+
"const": "^([A-Fa-f0-9]{32})?$",
|
|
2363
|
+
"type": "string"
|
|
2364
|
+
}
|
|
2365
|
+
},
|
|
2366
|
+
"required": [
|
|
2367
|
+
"pattern"
|
|
2368
|
+
],
|
|
2369
|
+
"type": "object"
|
|
2370
|
+
},
|
|
2371
|
+
"target": {
|
|
2372
|
+
"const": "string",
|
|
2373
|
+
"type": "string"
|
|
2374
|
+
},
|
|
2375
|
+
"validate": {
|
|
2376
|
+
"const": "/^([A-Fa-f0-9]{32})?$/.test($input)",
|
|
2377
|
+
"type": "string"
|
|
2378
|
+
},
|
|
2379
|
+
"value": {
|
|
2380
|
+
"const": "^([A-Fa-f0-9]{32})?$",
|
|
2381
|
+
"type": "string"
|
|
2382
|
+
}
|
|
2383
|
+
},
|
|
2384
|
+
"required": [
|
|
2385
|
+
"exclusive",
|
|
2386
|
+
"kind",
|
|
2387
|
+
"schema",
|
|
2388
|
+
"target",
|
|
2389
|
+
"validate",
|
|
2390
|
+
"value"
|
|
2391
|
+
],
|
|
2392
|
+
"type": "object"
|
|
2393
|
+
}
|
|
2394
|
+
},
|
|
2395
|
+
"type": "object"
|
|
2396
|
+
},
|
|
2397
|
+
"id": {
|
|
2398
|
+
"additionalProperties": false,
|
|
2399
|
+
"properties": {
|
|
2400
|
+
"typia.tag": {
|
|
2401
|
+
"additionalProperties": false,
|
|
2402
|
+
"description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
|
|
2403
|
+
"properties": {
|
|
2404
|
+
"exclusive": {
|
|
2405
|
+
"items": [
|
|
2406
|
+
{
|
|
2407
|
+
"const": "format",
|
|
2408
|
+
"type": "string"
|
|
2409
|
+
},
|
|
2410
|
+
{
|
|
2411
|
+
"const": "pattern",
|
|
2412
|
+
"type": "string"
|
|
2413
|
+
}
|
|
2414
|
+
],
|
|
2415
|
+
"maxItems": 2,
|
|
2416
|
+
"minItems": 2,
|
|
2417
|
+
"type": "array"
|
|
2418
|
+
},
|
|
2419
|
+
"kind": {
|
|
2420
|
+
"const": "pattern",
|
|
2421
|
+
"type": "string"
|
|
2422
|
+
},
|
|
2423
|
+
"schema": {
|
|
2424
|
+
"additionalProperties": false,
|
|
2425
|
+
"properties": {
|
|
2426
|
+
"pattern": {
|
|
2427
|
+
"const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
|
|
2428
|
+
"type": "string"
|
|
2429
|
+
}
|
|
2430
|
+
},
|
|
2431
|
+
"required": [
|
|
2432
|
+
"pattern"
|
|
2433
|
+
],
|
|
2434
|
+
"type": "object"
|
|
2435
|
+
},
|
|
2436
|
+
"target": {
|
|
2437
|
+
"const": "string",
|
|
2438
|
+
"type": "string"
|
|
2439
|
+
},
|
|
2440
|
+
"validate": {
|
|
2441
|
+
"const": "/^[0-9A-Za-z~][0-9A-Za-z~._: -]*$/.test($input)",
|
|
2442
|
+
"type": "string"
|
|
2443
|
+
},
|
|
2444
|
+
"value": {
|
|
2445
|
+
"const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
|
|
2446
|
+
"type": "string"
|
|
2447
|
+
}
|
|
2448
|
+
},
|
|
2449
|
+
"required": [
|
|
2450
|
+
"exclusive",
|
|
2451
|
+
"kind",
|
|
2452
|
+
"schema",
|
|
2453
|
+
"target",
|
|
2454
|
+
"validate",
|
|
2455
|
+
"value"
|
|
2456
|
+
],
|
|
2457
|
+
"type": "object"
|
|
2458
|
+
}
|
|
2459
|
+
},
|
|
2460
|
+
"type": "object"
|
|
2461
|
+
},
|
|
2462
|
+
"locations": {
|
|
2463
|
+
"items": {
|
|
2464
|
+
"type": "string"
|
|
2465
|
+
},
|
|
2466
|
+
"type": "array"
|
|
2467
|
+
},
|
|
2468
|
+
"mimeType": {
|
|
2469
|
+
"type": "string"
|
|
2470
|
+
},
|
|
2471
|
+
"position": {
|
|
2472
|
+
"additionalProperties": false,
|
|
2473
|
+
"properties": {
|
|
2474
|
+
"typia.tag": {
|
|
2475
|
+
"additionalProperties": false,
|
|
2476
|
+
"description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
|
|
2477
|
+
"properties": {
|
|
2478
|
+
"exclusive": {
|
|
2479
|
+
"const": true,
|
|
2480
|
+
"type": "boolean"
|
|
2481
|
+
},
|
|
2482
|
+
"kind": {
|
|
2483
|
+
"const": "type",
|
|
2484
|
+
"type": "string"
|
|
2485
|
+
},
|
|
2486
|
+
"schema": {
|
|
2487
|
+
"additionalProperties": false,
|
|
2488
|
+
"properties": {
|
|
2489
|
+
"type": {
|
|
2490
|
+
"const": "integer",
|
|
2491
|
+
"type": "string"
|
|
2492
|
+
}
|
|
2493
|
+
},
|
|
2494
|
+
"required": [
|
|
2495
|
+
"type"
|
|
2496
|
+
],
|
|
2497
|
+
"type": "object"
|
|
2498
|
+
},
|
|
2499
|
+
"target": {
|
|
2500
|
+
"enum": [
|
|
2501
|
+
"bigint",
|
|
2502
|
+
"number"
|
|
2503
|
+
],
|
|
2504
|
+
"type": "string"
|
|
2505
|
+
},
|
|
2506
|
+
"validate": {
|
|
2507
|
+
"additionalProperties": false,
|
|
2508
|
+
"properties": {
|
|
2509
|
+
"bigint": {
|
|
2510
|
+
"const": "BigInt(0) <= $input",
|
|
2511
|
+
"type": "string"
|
|
2512
|
+
},
|
|
2513
|
+
"number": {
|
|
2514
|
+
"const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
|
|
2515
|
+
"type": "string"
|
|
2516
|
+
}
|
|
2517
|
+
},
|
|
2518
|
+
"required": [
|
|
2519
|
+
"bigint",
|
|
2520
|
+
"number"
|
|
2521
|
+
],
|
|
2522
|
+
"type": "object"
|
|
2523
|
+
},
|
|
2524
|
+
"value": {
|
|
2525
|
+
"const": "uint64",
|
|
2526
|
+
"type": "string"
|
|
2527
|
+
}
|
|
2528
|
+
},
|
|
2529
|
+
"required": [
|
|
2530
|
+
"exclusive",
|
|
2531
|
+
"kind",
|
|
2532
|
+
"schema",
|
|
2533
|
+
"target",
|
|
2534
|
+
"validate",
|
|
2535
|
+
"value"
|
|
2536
|
+
],
|
|
2537
|
+
"type": "object"
|
|
2538
|
+
}
|
|
2539
|
+
},
|
|
2540
|
+
"type": "object"
|
|
2541
|
+
},
|
|
2542
|
+
"progress": {
|
|
2543
|
+
"additionalProperties": false,
|
|
2544
|
+
"properties": {
|
|
2545
|
+
"typia.tag": {
|
|
2546
|
+
"additionalProperties": false,
|
|
2547
|
+
"description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
|
|
2548
|
+
"properties": {
|
|
2549
|
+
"exclusive": {
|
|
2550
|
+
"items": [
|
|
2551
|
+
{
|
|
2552
|
+
"const": "maximum",
|
|
2553
|
+
"type": "string"
|
|
2554
|
+
},
|
|
2555
|
+
{
|
|
2556
|
+
"const": "exclusiveMaximum",
|
|
2557
|
+
"type": "string"
|
|
2558
|
+
}
|
|
2559
|
+
],
|
|
2560
|
+
"maxItems": 2,
|
|
2561
|
+
"minItems": 2,
|
|
2562
|
+
"type": "array"
|
|
2563
|
+
},
|
|
2564
|
+
"kind": {
|
|
2565
|
+
"const": "maximum",
|
|
2566
|
+
"type": "string"
|
|
2567
|
+
},
|
|
2568
|
+
"schema": {
|
|
2569
|
+
"additionalProperties": false,
|
|
2570
|
+
"properties": {
|
|
2571
|
+
"maximum": {
|
|
2572
|
+
"const": 1,
|
|
2573
|
+
"type": "number"
|
|
2574
|
+
}
|
|
2575
|
+
},
|
|
2576
|
+
"required": [
|
|
2577
|
+
"maximum"
|
|
2578
|
+
],
|
|
2579
|
+
"type": "object"
|
|
2580
|
+
},
|
|
2581
|
+
"target": {
|
|
2582
|
+
"const": "number",
|
|
2583
|
+
"type": "string"
|
|
2584
|
+
},
|
|
2585
|
+
"validate": {
|
|
2586
|
+
"const": "$input <= 1",
|
|
2587
|
+
"type": "string"
|
|
2588
|
+
},
|
|
2589
|
+
"value": {
|
|
2590
|
+
"const": 1,
|
|
2591
|
+
"type": "number"
|
|
2592
|
+
}
|
|
2593
|
+
},
|
|
2594
|
+
"required": [
|
|
2595
|
+
"exclusive",
|
|
2596
|
+
"kind",
|
|
2597
|
+
"schema",
|
|
2598
|
+
"target",
|
|
2599
|
+
"validate",
|
|
2600
|
+
"value"
|
|
2601
|
+
],
|
|
2602
|
+
"type": "object"
|
|
2603
|
+
}
|
|
2604
|
+
},
|
|
2605
|
+
"type": "object"
|
|
2606
|
+
},
|
|
2607
|
+
"ranges": {
|
|
2608
|
+
"items": {
|
|
2609
|
+
"items": [
|
|
2610
|
+
{
|
|
2611
|
+
"additionalProperties": false,
|
|
2612
|
+
"properties": {
|
|
2613
|
+
"typia.tag": {
|
|
2614
|
+
"additionalProperties": false,
|
|
2615
|
+
"description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
|
|
2616
|
+
"properties": {
|
|
2617
|
+
"exclusive": {
|
|
2618
|
+
"items": [
|
|
2619
|
+
{
|
|
2620
|
+
"const": "minimum",
|
|
2621
|
+
"type": "string"
|
|
2622
|
+
},
|
|
2623
|
+
{
|
|
2624
|
+
"const": "exclusiveMinimum",
|
|
2625
|
+
"type": "string"
|
|
2626
|
+
}
|
|
2627
|
+
],
|
|
2628
|
+
"maxItems": 2,
|
|
2629
|
+
"minItems": 2,
|
|
2630
|
+
"type": "array"
|
|
2631
|
+
},
|
|
2632
|
+
"kind": {
|
|
2633
|
+
"const": "minimum",
|
|
2634
|
+
"type": "string"
|
|
2635
|
+
},
|
|
2636
|
+
"schema": {
|
|
2637
|
+
"additionalProperties": false,
|
|
2638
|
+
"properties": {
|
|
2639
|
+
"minimum": {
|
|
2640
|
+
"const": 0,
|
|
2641
|
+
"type": "number"
|
|
2642
|
+
}
|
|
2643
|
+
},
|
|
2644
|
+
"required": [
|
|
2645
|
+
"minimum"
|
|
2646
|
+
],
|
|
2647
|
+
"type": "object"
|
|
2648
|
+
},
|
|
2649
|
+
"target": {
|
|
2650
|
+
"const": "number",
|
|
2651
|
+
"type": "string"
|
|
2652
|
+
},
|
|
2653
|
+
"validate": {
|
|
2654
|
+
"const": "0 <= $input",
|
|
2655
|
+
"type": "string"
|
|
2656
|
+
},
|
|
2657
|
+
"value": {
|
|
2658
|
+
"const": 0,
|
|
2659
|
+
"type": "number"
|
|
2660
|
+
}
|
|
2661
|
+
},
|
|
2662
|
+
"required": [
|
|
2663
|
+
"exclusive",
|
|
2664
|
+
"kind",
|
|
2665
|
+
"schema",
|
|
2666
|
+
"target",
|
|
2667
|
+
"validate",
|
|
2668
|
+
"value"
|
|
2669
|
+
],
|
|
2670
|
+
"type": "object"
|
|
2671
|
+
}
|
|
2672
|
+
},
|
|
2673
|
+
"type": "object"
|
|
2674
|
+
},
|
|
2675
|
+
{
|
|
2676
|
+
"additionalProperties": false,
|
|
2677
|
+
"properties": {
|
|
2678
|
+
"typia.tag": {
|
|
2679
|
+
"additionalProperties": false,
|
|
2680
|
+
"description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
|
|
2681
|
+
"properties": {
|
|
2682
|
+
"exclusive": {
|
|
2683
|
+
"items": [
|
|
2684
|
+
{
|
|
2685
|
+
"const": "minimum",
|
|
2686
|
+
"type": "string"
|
|
2687
|
+
},
|
|
2688
|
+
{
|
|
2689
|
+
"const": "exclusiveMinimum",
|
|
2690
|
+
"type": "string"
|
|
2691
|
+
}
|
|
2692
|
+
],
|
|
2693
|
+
"maxItems": 2,
|
|
2694
|
+
"minItems": 2,
|
|
2695
|
+
"type": "array"
|
|
2696
|
+
},
|
|
2697
|
+
"kind": {
|
|
2698
|
+
"const": "minimum",
|
|
2699
|
+
"type": "string"
|
|
2700
|
+
},
|
|
2701
|
+
"schema": {
|
|
2702
|
+
"additionalProperties": false,
|
|
2703
|
+
"properties": {
|
|
2704
|
+
"minimum": {
|
|
2705
|
+
"const": 0,
|
|
2706
|
+
"type": "number"
|
|
2707
|
+
}
|
|
2708
|
+
},
|
|
2709
|
+
"required": [
|
|
2710
|
+
"minimum"
|
|
2711
|
+
],
|
|
2712
|
+
"type": "object"
|
|
2713
|
+
},
|
|
2714
|
+
"target": {
|
|
2715
|
+
"const": "number",
|
|
2716
|
+
"type": "string"
|
|
2717
|
+
},
|
|
2718
|
+
"validate": {
|
|
2719
|
+
"const": "0 <= $input",
|
|
2720
|
+
"type": "string"
|
|
2721
|
+
},
|
|
2722
|
+
"value": {
|
|
2723
|
+
"const": 0,
|
|
2724
|
+
"type": "number"
|
|
2725
|
+
}
|
|
2726
|
+
},
|
|
2727
|
+
"required": [
|
|
2728
|
+
"exclusive",
|
|
2729
|
+
"kind",
|
|
2730
|
+
"schema",
|
|
2731
|
+
"target",
|
|
2732
|
+
"validate",
|
|
2733
|
+
"value"
|
|
2734
|
+
],
|
|
2735
|
+
"type": "object"
|
|
2736
|
+
}
|
|
2737
|
+
},
|
|
2738
|
+
"type": "object"
|
|
2739
|
+
}
|
|
2740
|
+
],
|
|
2741
|
+
"maxItems": 2,
|
|
2742
|
+
"minItems": 2,
|
|
2743
|
+
"type": "array"
|
|
2744
|
+
},
|
|
2745
|
+
"type": "array"
|
|
2746
|
+
},
|
|
2747
|
+
"refs": {
|
|
2748
|
+
"items": {
|
|
2749
|
+
"additionalProperties": false,
|
|
2750
|
+
"properties": {
|
|
2751
|
+
"end": {
|
|
2752
|
+
"type": "number"
|
|
2753
|
+
},
|
|
2754
|
+
"file": {
|
|
2755
|
+
"type": "string"
|
|
2756
|
+
},
|
|
2757
|
+
"offset": {
|
|
2758
|
+
"type": "number"
|
|
2759
|
+
},
|
|
2760
|
+
"start": {
|
|
2761
|
+
"type": "number"
|
|
2762
|
+
}
|
|
2763
|
+
},
|
|
2764
|
+
"type": "object"
|
|
2765
|
+
},
|
|
2766
|
+
"type": "array"
|
|
2767
|
+
},
|
|
2768
|
+
"replicas": {
|
|
2769
|
+
"items": {
|
|
2770
|
+
"type": "string"
|
|
2771
|
+
},
|
|
2772
|
+
"type": "array"
|
|
2773
|
+
},
|
|
2774
|
+
"resumable": {
|
|
2775
|
+
"type": "string"
|
|
2776
|
+
},
|
|
2777
|
+
"seekable": {
|
|
2778
|
+
"type": "boolean"
|
|
2779
|
+
},
|
|
2780
|
+
"size": {
|
|
2781
|
+
"additionalProperties": false,
|
|
2782
|
+
"properties": {
|
|
2783
|
+
"typia.tag": {
|
|
2784
|
+
"additionalProperties": false,
|
|
2785
|
+
"description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
|
|
2786
|
+
"properties": {
|
|
2787
|
+
"exclusive": {
|
|
2788
|
+
"const": true,
|
|
2789
|
+
"type": "boolean"
|
|
2790
|
+
},
|
|
2791
|
+
"kind": {
|
|
2792
|
+
"const": "type",
|
|
2793
|
+
"type": "string"
|
|
2794
|
+
},
|
|
2795
|
+
"schema": {
|
|
2796
|
+
"additionalProperties": false,
|
|
2797
|
+
"properties": {
|
|
2798
|
+
"type": {
|
|
2799
|
+
"const": "integer",
|
|
2800
|
+
"type": "string"
|
|
2801
|
+
}
|
|
2802
|
+
},
|
|
2803
|
+
"required": [
|
|
2804
|
+
"type"
|
|
2805
|
+
],
|
|
2806
|
+
"type": "object"
|
|
2807
|
+
},
|
|
2808
|
+
"target": {
|
|
2809
|
+
"enum": [
|
|
2810
|
+
"bigint",
|
|
2811
|
+
"number"
|
|
2812
|
+
],
|
|
2813
|
+
"type": "string"
|
|
2814
|
+
},
|
|
2815
|
+
"validate": {
|
|
2816
|
+
"additionalProperties": false,
|
|
2817
|
+
"properties": {
|
|
2818
|
+
"bigint": {
|
|
2819
|
+
"const": "BigInt(0) <= $input",
|
|
2820
|
+
"type": "string"
|
|
2821
|
+
},
|
|
2822
|
+
"number": {
|
|
2823
|
+
"const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
|
|
2824
|
+
"type": "string"
|
|
2825
|
+
}
|
|
2826
|
+
},
|
|
2827
|
+
"required": [
|
|
2828
|
+
"bigint",
|
|
2829
|
+
"number"
|
|
2830
|
+
],
|
|
2831
|
+
"type": "object"
|
|
2832
|
+
},
|
|
2833
|
+
"value": {
|
|
2834
|
+
"const": "uint64",
|
|
2835
|
+
"type": "string"
|
|
2836
|
+
}
|
|
2837
|
+
},
|
|
2838
|
+
"required": [
|
|
2839
|
+
"exclusive",
|
|
2840
|
+
"kind",
|
|
2841
|
+
"schema",
|
|
2842
|
+
"target",
|
|
2843
|
+
"validate",
|
|
2844
|
+
"value"
|
|
2845
|
+
],
|
|
2846
|
+
"type": "object"
|
|
2847
|
+
}
|
|
2848
|
+
},
|
|
2849
|
+
"type": "object"
|
|
2850
|
+
},
|
|
2851
|
+
"tags": {
|
|
2852
|
+
"items": {
|
|
2853
|
+
"type": "string"
|
|
2854
|
+
},
|
|
2855
|
+
"type": "array"
|
|
2856
|
+
},
|
|
2857
|
+
"uploading": {
|
|
2858
|
+
"type": "boolean"
|
|
2859
|
+
},
|
|
2860
|
+
"zones": {
|
|
2861
|
+
"items": {
|
|
2862
|
+
"type": "string"
|
|
2863
|
+
},
|
|
2864
|
+
"type": "array"
|
|
2865
|
+
}
|
|
2866
|
+
},
|
|
2867
|
+
"required": [
|
|
2868
|
+
"btime",
|
|
2869
|
+
"completed",
|
|
2870
|
+
"deleted",
|
|
2871
|
+
"encoding",
|
|
2872
|
+
"error",
|
|
2873
|
+
"hash",
|
|
2874
|
+
"id",
|
|
2875
|
+
"locations",
|
|
2876
|
+
"mimeType",
|
|
2877
|
+
"position",
|
|
2878
|
+
"progress",
|
|
2879
|
+
"ranges",
|
|
2880
|
+
"refs",
|
|
2881
|
+
"replicas",
|
|
2882
|
+
"resumable",
|
|
2883
|
+
"seekable",
|
|
2884
|
+
"size",
|
|
2885
|
+
"tags",
|
|
2886
|
+
"uploading",
|
|
2887
|
+
"zones"
|
|
2888
|
+
],
|
|
2889
|
+
"type": "object"
|
|
2890
|
+
},
|
|
2209
2891
|
"GeneralCreatedRecord": {
|
|
2210
2892
|
"additionalProperties": false,
|
|
2211
2893
|
"properties": {
|
|
@@ -2469,75 +3151,6 @@
|
|
|
2469
3151
|
},
|
|
2470
3152
|
"type": "object"
|
|
2471
3153
|
},
|
|
2472
|
-
"MediaSourceRecord": {
|
|
2473
|
-
"additionalProperties": false,
|
|
2474
|
-
"properties": {
|
|
2475
|
-
"end": {
|
|
2476
|
-
"type": "number"
|
|
2477
|
-
},
|
|
2478
|
-
"input": {
|
|
2479
|
-
"additionalProperties": false,
|
|
2480
|
-
"properties": {
|
|
2481
|
-
"file": {
|
|
2482
|
-
"type": "string"
|
|
2483
|
-
},
|
|
2484
|
-
"type": {
|
|
2485
|
-
"type": "string"
|
|
2486
|
-
}
|
|
2487
|
-
},
|
|
2488
|
-
"type": "object"
|
|
2489
|
-
},
|
|
2490
|
-
"lang": {
|
|
2491
|
-
"type": "string"
|
|
2492
|
-
},
|
|
2493
|
-
"start": {
|
|
2494
|
-
"type": "number"
|
|
2495
|
-
},
|
|
2496
|
-
"subtitle": {
|
|
2497
|
-
"type": "string"
|
|
2498
|
-
},
|
|
2499
|
-
"transcribe": {
|
|
2500
|
-
"additionalProperties": false,
|
|
2501
|
-
"properties": {
|
|
2502
|
-
"language": {
|
|
2503
|
-
"type": "string"
|
|
2504
|
-
},
|
|
2505
|
-
"pan": {
|
|
2506
|
-
"items": {
|
|
2507
|
-
"type": "number"
|
|
2508
|
-
},
|
|
2509
|
-
"type": "array"
|
|
2510
|
-
}
|
|
2511
|
-
},
|
|
2512
|
-
"type": "object"
|
|
2513
|
-
},
|
|
2514
|
-
"video": {
|
|
2515
|
-
"additionalProperties": false,
|
|
2516
|
-
"properties": {
|
|
2517
|
-
"crop": {
|
|
2518
|
-
"additionalProperties": false,
|
|
2519
|
-
"properties": {
|
|
2520
|
-
"height": {
|
|
2521
|
-
"type": "number"
|
|
2522
|
-
},
|
|
2523
|
-
"width": {
|
|
2524
|
-
"type": "number"
|
|
2525
|
-
},
|
|
2526
|
-
"x": {
|
|
2527
|
-
"type": "number"
|
|
2528
|
-
},
|
|
2529
|
-
"y": {
|
|
2530
|
-
"type": "number"
|
|
2531
|
-
}
|
|
2532
|
-
},
|
|
2533
|
-
"type": "object"
|
|
2534
|
-
}
|
|
2535
|
-
},
|
|
2536
|
-
"type": "object"
|
|
2537
|
-
}
|
|
2538
|
-
},
|
|
2539
|
-
"type": "object"
|
|
2540
|
-
},
|
|
2541
3154
|
"MediaTranscriptChangesRecordValue": {
|
|
2542
3155
|
"additionalProperties": false,
|
|
2543
3156
|
"properties": {
|
|
@@ -2673,6 +3286,8 @@
|
|
|
2673
3286
|
}
|
|
2674
3287
|
},
|
|
2675
3288
|
"required": [
|
|
3289
|
+
"__context",
|
|
3290
|
+
"__returnValue",
|
|
2676
3291
|
"length"
|
|
2677
3292
|
],
|
|
2678
3293
|
"type": "object"
|
|
@@ -2684,6 +3299,9 @@
|
|
|
2684
3299
|
},
|
|
2685
3300
|
"Nxtpression<Record<string,unknown>,{id:string;}>": {
|
|
2686
3301
|
"anyOf": [
|
|
3302
|
+
{
|
|
3303
|
+
"$ref": "#/definitions/Record<string,unknown>"
|
|
3304
|
+
},
|
|
2687
3305
|
{
|
|
2688
3306
|
"additionalProperties": false,
|
|
2689
3307
|
"properties": {
|
|
@@ -2709,6 +3327,8 @@
|
|
|
2709
3327
|
}
|
|
2710
3328
|
},
|
|
2711
3329
|
"required": [
|
|
3330
|
+
"__context",
|
|
3331
|
+
"__returnValue",
|
|
2712
3332
|
"length"
|
|
2713
3333
|
],
|
|
2714
3334
|
"type": "object"
|
|
@@ -2745,12 +3365,17 @@
|
|
|
2745
3365
|
}
|
|
2746
3366
|
},
|
|
2747
3367
|
"required": [
|
|
3368
|
+
"__context",
|
|
3369
|
+
"__returnValue",
|
|
2748
3370
|
"length"
|
|
2749
3371
|
],
|
|
2750
3372
|
"type": "object"
|
|
2751
3373
|
},
|
|
2752
3374
|
{
|
|
2753
|
-
"type":
|
|
3375
|
+
"type": [
|
|
3376
|
+
"string",
|
|
3377
|
+
"number"
|
|
3378
|
+
]
|
|
2754
3379
|
}
|
|
2755
3380
|
]
|
|
2756
3381
|
},
|
|
@@ -2781,6 +3406,8 @@
|
|
|
2781
3406
|
}
|
|
2782
3407
|
},
|
|
2783
3408
|
"required": [
|
|
3409
|
+
"__context",
|
|
3410
|
+
"__returnValue",
|
|
2784
3411
|
"length"
|
|
2785
3412
|
],
|
|
2786
3413
|
"type": "object"
|
|
@@ -2817,6 +3444,8 @@
|
|
|
2817
3444
|
}
|
|
2818
3445
|
},
|
|
2819
3446
|
"required": [
|
|
3447
|
+
"__context",
|
|
3448
|
+
"__returnValue",
|
|
2820
3449
|
"length"
|
|
2821
3450
|
],
|
|
2822
3451
|
"type": "object"
|
|
@@ -2853,6 +3482,8 @@
|
|
|
2853
3482
|
}
|
|
2854
3483
|
},
|
|
2855
3484
|
"required": [
|
|
3485
|
+
"__context",
|
|
3486
|
+
"__returnValue",
|
|
2856
3487
|
"length"
|
|
2857
3488
|
],
|
|
2858
3489
|
"type": "object"
|
|
@@ -2889,6 +3520,8 @@
|
|
|
2889
3520
|
}
|
|
2890
3521
|
},
|
|
2891
3522
|
"required": [
|
|
3523
|
+
"__context",
|
|
3524
|
+
"__returnValue",
|
|
2892
3525
|
"length"
|
|
2893
3526
|
],
|
|
2894
3527
|
"type": "object"
|
|
@@ -2900,6 +3533,12 @@
|
|
|
2900
3533
|
},
|
|
2901
3534
|
"Nxtpression<string[],{id:string;}>": {
|
|
2902
3535
|
"anyOf": [
|
|
3536
|
+
{
|
|
3537
|
+
"items": {
|
|
3538
|
+
"type": "string"
|
|
3539
|
+
},
|
|
3540
|
+
"type": "array"
|
|
3541
|
+
},
|
|
2903
3542
|
{
|
|
2904
3543
|
"additionalProperties": false,
|
|
2905
3544
|
"properties": {
|
|
@@ -2928,6 +3567,8 @@
|
|
|
2928
3567
|
}
|
|
2929
3568
|
},
|
|
2930
3569
|
"required": [
|
|
3570
|
+
"__context",
|
|
3571
|
+
"__returnValue",
|
|
2931
3572
|
"length"
|
|
2932
3573
|
],
|
|
2933
3574
|
"type": "object"
|
|
@@ -2939,6 +3580,12 @@
|
|
|
2939
3580
|
},
|
|
2940
3581
|
"Nxtpression<string[],{id:string;}>_1": {
|
|
2941
3582
|
"anyOf": [
|
|
3583
|
+
{
|
|
3584
|
+
"items": {
|
|
3585
|
+
"type": "string"
|
|
3586
|
+
},
|
|
3587
|
+
"type": "array"
|
|
3588
|
+
},
|
|
2942
3589
|
{
|
|
2943
3590
|
"additionalProperties": false,
|
|
2944
3591
|
"properties": {
|
|
@@ -2967,6 +3614,8 @@
|
|
|
2967
3614
|
}
|
|
2968
3615
|
},
|
|
2969
3616
|
"required": [
|
|
3617
|
+
"__context",
|
|
3618
|
+
"__returnValue",
|
|
2970
3619
|
"length"
|
|
2971
3620
|
],
|
|
2972
3621
|
"type": "object"
|
|
@@ -2976,36 +3625,27 @@
|
|
|
2976
3625
|
}
|
|
2977
3626
|
]
|
|
2978
3627
|
},
|
|
2979
|
-
"Nxtpression<
|
|
3628
|
+
"Nxtpression<{lat:number;lon:number;}[],{id:string;}>": {
|
|
2980
3629
|
"anyOf": [
|
|
2981
3630
|
{
|
|
2982
|
-
"
|
|
2983
|
-
|
|
2984
|
-
"
|
|
2985
|
-
"
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
"
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
"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."
|
|
3631
|
+
"items": {
|
|
3632
|
+
"additionalProperties": false,
|
|
3633
|
+
"properties": {
|
|
3634
|
+
"lat": {
|
|
3635
|
+
"type": "number"
|
|
3636
|
+
},
|
|
3637
|
+
"lon": {
|
|
3638
|
+
"type": "number"
|
|
3639
|
+
}
|
|
2992
3640
|
},
|
|
2993
|
-
"
|
|
2994
|
-
"
|
|
2995
|
-
|
|
3641
|
+
"required": [
|
|
3642
|
+
"lat",
|
|
3643
|
+
"lon"
|
|
3644
|
+
],
|
|
3645
|
+
"type": "object"
|
|
2996
3646
|
},
|
|
2997
|
-
"
|
|
2998
|
-
"length"
|
|
2999
|
-
],
|
|
3000
|
-
"type": "object"
|
|
3647
|
+
"type": "array"
|
|
3001
3648
|
},
|
|
3002
|
-
{
|
|
3003
|
-
"type": "string"
|
|
3004
|
-
}
|
|
3005
|
-
]
|
|
3006
|
-
},
|
|
3007
|
-
"Nxtpression<{lat:number;lon:number;}[],{id:string;}>": {
|
|
3008
|
-
"anyOf": [
|
|
3009
3649
|
{
|
|
3010
3650
|
"additionalProperties": false,
|
|
3011
3651
|
"properties": {
|
|
@@ -3047,6 +3687,8 @@
|
|
|
3047
3687
|
}
|
|
3048
3688
|
},
|
|
3049
3689
|
"required": [
|
|
3690
|
+
"__context",
|
|
3691
|
+
"__returnValue",
|
|
3050
3692
|
"length"
|
|
3051
3693
|
],
|
|
3052
3694
|
"type": "object"
|
|
@@ -3256,9 +3898,7 @@
|
|
|
3256
3898
|
"PanelProperty": {
|
|
3257
3899
|
"additionalProperties": false,
|
|
3258
3900
|
"properties": {
|
|
3259
|
-
"computed": {
|
|
3260
|
-
"$ref": "#/definitions/Nxtpression<unknown>"
|
|
3261
|
-
},
|
|
3901
|
+
"computed": {},
|
|
3262
3902
|
"description": {
|
|
3263
3903
|
"type": "string"
|
|
3264
3904
|
},
|
|
@@ -4815,32 +5455,133 @@
|
|
|
4815
5455
|
],
|
|
4816
5456
|
"type": "object"
|
|
4817
5457
|
},
|
|
4818
|
-
"
|
|
5458
|
+
"RenderDomainQueryRecord": {
|
|
4819
5459
|
"additionalProperties": false,
|
|
4820
5460
|
"properties": {
|
|
4821
|
-
"description": {
|
|
4822
|
-
|
|
4823
|
-
"
|
|
4824
|
-
{
|
|
4825
|
-
"$ref": "#/definitions/
|
|
5461
|
+
"description": {
|
|
5462
|
+
"additionalProperties": false,
|
|
5463
|
+
"properties": {
|
|
5464
|
+
"profile": {
|
|
5465
|
+
"$ref": "#/definitions/RenderProfileObject"
|
|
4826
5466
|
},
|
|
4827
|
-
{
|
|
4828
|
-
"
|
|
5467
|
+
"scene": {
|
|
5468
|
+
"$ref": "#/definitions/RenderSceneObject"
|
|
4829
5469
|
}
|
|
4830
|
-
|
|
5470
|
+
},
|
|
5471
|
+
"required": [
|
|
5472
|
+
"profile",
|
|
5473
|
+
"scene"
|
|
5474
|
+
],
|
|
5475
|
+
"type": "object"
|
|
5476
|
+
},
|
|
5477
|
+
"parent": {
|
|
5478
|
+
"type": "string"
|
|
5479
|
+
},
|
|
5480
|
+
"title": {
|
|
5481
|
+
"type": "string"
|
|
5482
|
+
},
|
|
5483
|
+
"type": {
|
|
5484
|
+
"type": "string"
|
|
5485
|
+
}
|
|
5486
|
+
},
|
|
5487
|
+
"required": [
|
|
5488
|
+
"description",
|
|
5489
|
+
"title",
|
|
5490
|
+
"type"
|
|
5491
|
+
],
|
|
5492
|
+
"type": "object"
|
|
5493
|
+
},
|
|
5494
|
+
"RenderDomainResultRecord": {
|
|
5495
|
+
"additionalProperties": {},
|
|
5496
|
+
"properties": {
|
|
5497
|
+
"result": {},
|
|
5498
|
+
"url": {
|
|
5499
|
+
"type": "string"
|
|
5500
|
+
}
|
|
5501
|
+
},
|
|
5502
|
+
"type": "object"
|
|
5503
|
+
},
|
|
5504
|
+
"RenderDomainStatsRecord": {
|
|
5505
|
+
"additionalProperties": false,
|
|
5506
|
+
"properties": {
|
|
5507
|
+
"error": {
|
|
5508
|
+
"items": {
|
|
5509
|
+
"$ref": "#/definitions/Record<string,unknown>"
|
|
5510
|
+
},
|
|
5511
|
+
"type": "array"
|
|
5512
|
+
},
|
|
5513
|
+
"progress": {
|
|
5514
|
+
"type": "number"
|
|
5515
|
+
},
|
|
5516
|
+
"status": {
|
|
5517
|
+
"type": "string"
|
|
5518
|
+
}
|
|
5519
|
+
},
|
|
5520
|
+
"type": "object"
|
|
5521
|
+
},
|
|
5522
|
+
"RenderPreset": {
|
|
5523
|
+
"anyOf": [
|
|
5524
|
+
{
|
|
5525
|
+
"$ref": "#/definitions/RenderPresetObject"
|
|
5526
|
+
},
|
|
5527
|
+
{
|
|
5528
|
+
"type": "string"
|
|
5529
|
+
}
|
|
5530
|
+
]
|
|
5531
|
+
},
|
|
5532
|
+
"RenderPresetObject": {
|
|
5533
|
+
"additionalProperties": false,
|
|
5534
|
+
"properties": {
|
|
5535
|
+
"profile": {
|
|
5536
|
+
"$ref": "#/definitions/RenderProfile"
|
|
4831
5537
|
},
|
|
4832
5538
|
"type": {
|
|
4833
5539
|
"type": "string"
|
|
4834
5540
|
}
|
|
4835
5541
|
},
|
|
5542
|
+
"required": [
|
|
5543
|
+
"profile",
|
|
5544
|
+
"type"
|
|
5545
|
+
],
|
|
4836
5546
|
"type": "object"
|
|
4837
5547
|
},
|
|
4838
|
-
"
|
|
5548
|
+
"RenderProfile": {
|
|
5549
|
+
"anyOf": [
|
|
5550
|
+
{
|
|
5551
|
+
"$ref": "#/definitions/RenderProfileObject"
|
|
5552
|
+
},
|
|
5553
|
+
{
|
|
5554
|
+
"items": {
|
|
5555
|
+
"anyOf": [
|
|
5556
|
+
{
|
|
5557
|
+
"$ref": "#/definitions/RenderProfileObject"
|
|
5558
|
+
},
|
|
5559
|
+
{
|
|
5560
|
+
"type": "string"
|
|
5561
|
+
}
|
|
5562
|
+
]
|
|
5563
|
+
},
|
|
5564
|
+
"type": "array"
|
|
5565
|
+
},
|
|
5566
|
+
{
|
|
5567
|
+
"type": "string"
|
|
5568
|
+
}
|
|
5569
|
+
]
|
|
5570
|
+
},
|
|
5571
|
+
"RenderProfileObject": {
|
|
4839
5572
|
"additionalProperties": false,
|
|
4840
5573
|
"properties": {
|
|
4841
|
-
"audio": {
|
|
5574
|
+
"audio": {
|
|
5575
|
+
"additionalProperties": false,
|
|
5576
|
+
"properties": {
|
|
5577
|
+
"pan": {
|
|
5578
|
+
"type": "string"
|
|
5579
|
+
}
|
|
5580
|
+
},
|
|
5581
|
+
"type": "object"
|
|
5582
|
+
},
|
|
4842
5583
|
"format": {
|
|
4843
|
-
"
|
|
5584
|
+
"type": "string"
|
|
4844
5585
|
},
|
|
4845
5586
|
"pick": {
|
|
4846
5587
|
"items": {
|
|
@@ -4848,7 +5589,30 @@
|
|
|
4848
5589
|
},
|
|
4849
5590
|
"type": "array"
|
|
4850
5591
|
},
|
|
4851
|
-
"transcribe": {
|
|
5592
|
+
"transcribe": {
|
|
5593
|
+
"additionalProperties": false,
|
|
5594
|
+
"properties": {
|
|
5595
|
+
"engine": {
|
|
5596
|
+
"type": "string"
|
|
5597
|
+
}
|
|
5598
|
+
},
|
|
5599
|
+
"required": [
|
|
5600
|
+
"engine"
|
|
5601
|
+
],
|
|
5602
|
+
"type": "object"
|
|
5603
|
+
},
|
|
5604
|
+
"translate": {
|
|
5605
|
+
"additionalProperties": false,
|
|
5606
|
+
"properties": {
|
|
5607
|
+
"language": {
|
|
5608
|
+
"type": "string"
|
|
5609
|
+
}
|
|
5610
|
+
},
|
|
5611
|
+
"required": [
|
|
5612
|
+
"language"
|
|
5613
|
+
],
|
|
5614
|
+
"type": "object"
|
|
5615
|
+
},
|
|
4852
5616
|
"video": {}
|
|
4853
5617
|
},
|
|
4854
5618
|
"required": [
|
|
@@ -4856,12 +5620,80 @@
|
|
|
4856
5620
|
],
|
|
4857
5621
|
"type": "object"
|
|
4858
5622
|
},
|
|
4859
|
-
"
|
|
4860
|
-
"
|
|
4861
|
-
|
|
4862
|
-
"
|
|
4863
|
-
|
|
4864
|
-
|
|
5623
|
+
"RenderSceneObject": {
|
|
5624
|
+
"additionalProperties": false,
|
|
5625
|
+
"properties": {
|
|
5626
|
+
"end": {
|
|
5627
|
+
"type": "number"
|
|
5628
|
+
},
|
|
5629
|
+
"id": {
|
|
5630
|
+
"type": "string"
|
|
5631
|
+
},
|
|
5632
|
+
"input": {
|
|
5633
|
+
"additionalProperties": false,
|
|
5634
|
+
"properties": {
|
|
5635
|
+
"file": {
|
|
5636
|
+
"type": "string"
|
|
5637
|
+
},
|
|
5638
|
+
"type": {
|
|
5639
|
+
"type": "string"
|
|
5640
|
+
}
|
|
5641
|
+
},
|
|
5642
|
+
"type": "object"
|
|
5643
|
+
},
|
|
5644
|
+
"lang": {
|
|
5645
|
+
"type": "string"
|
|
5646
|
+
},
|
|
5647
|
+
"preset": {
|
|
5648
|
+
"type": "string"
|
|
5649
|
+
},
|
|
5650
|
+
"start": {
|
|
5651
|
+
"type": "number"
|
|
5652
|
+
},
|
|
5653
|
+
"subtitle": {
|
|
5654
|
+
"type": "string"
|
|
5655
|
+
},
|
|
5656
|
+
"transcribe": {
|
|
5657
|
+
"additionalProperties": false,
|
|
5658
|
+
"properties": {
|
|
5659
|
+
"language": {
|
|
5660
|
+
"type": "string"
|
|
5661
|
+
},
|
|
5662
|
+
"pan": {
|
|
5663
|
+
"items": {
|
|
5664
|
+
"type": "number"
|
|
5665
|
+
},
|
|
5666
|
+
"type": "array"
|
|
5667
|
+
}
|
|
5668
|
+
},
|
|
5669
|
+
"type": "object"
|
|
5670
|
+
},
|
|
5671
|
+
"video": {
|
|
5672
|
+
"additionalProperties": false,
|
|
5673
|
+
"properties": {
|
|
5674
|
+
"crop": {
|
|
5675
|
+
"additionalProperties": false,
|
|
5676
|
+
"properties": {
|
|
5677
|
+
"height": {
|
|
5678
|
+
"type": "number"
|
|
5679
|
+
},
|
|
5680
|
+
"width": {
|
|
5681
|
+
"type": "number"
|
|
5682
|
+
},
|
|
5683
|
+
"x": {
|
|
5684
|
+
"type": "number"
|
|
5685
|
+
},
|
|
5686
|
+
"y": {
|
|
5687
|
+
"type": "number"
|
|
5688
|
+
}
|
|
5689
|
+
},
|
|
5690
|
+
"type": "object"
|
|
5691
|
+
}
|
|
5692
|
+
},
|
|
5693
|
+
"type": "object"
|
|
5694
|
+
}
|
|
5695
|
+
},
|
|
5696
|
+
"type": "object"
|
|
4865
5697
|
},
|
|
4866
5698
|
"ReplaceOperation": {
|
|
4867
5699
|
"additionalProperties": false,
|