@nxtedition/types 23.0.38 → 23.0.40
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/app.d.ts +0 -18
- package/dist/app.js +5 -173
- package/dist/common/render-query.js +280 -191
- package/dist/common/render-scene.js +336 -158
- package/dist/common/settings.d.ts +33 -9
- package/dist/common/settings.js +2069 -1381
- package/dist/domains/event.d.ts +129 -1
- package/dist/domains/event.js +2025 -0
- package/dist/domains/media.js +168 -79
- package/dist/domains/publish.d.ts +55 -0
- package/dist/domains/publish.js +4668 -3689
- package/dist/domains/render.d.ts +10 -24
- package/dist/domains/render.js +497 -828
- package/dist/domains/script.d.ts +250 -0
- package/dist/domains/script.js +6652 -0
- package/dist/domains/settings.js +2022 -1351
- package/dist/domains/subtitle-style.d.ts +5 -0
- package/dist/domains/subtitle-style.js +95 -6
- package/dist/index.d.ts +23 -0
- package/dist/index.js +294 -12
- package/dist/nxtpression.d.ts +247 -30
- package/dist/rpc.d.ts +9 -0
- package/dist/schema.json +903 -124
- package/package.json +2 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import __typia from "typia";
|
|
2
2
|
export const isRenderScene = input => {
|
|
3
|
-
const $io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && $io1(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && $io2(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && $
|
|
3
|
+
const $io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && $io1(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && $io2(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && $io6(input.video)) && (undefined === input.start || "number" === typeof input.start) && (undefined === input.end || "number" === typeof input.end) && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) && $io8(input.transcribe));
|
|
4
4
|
const $io1 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file);
|
|
5
5
|
const $io2 = input => Object.keys(input).every(key => {
|
|
6
6
|
const value = input[key];
|
|
@@ -9,15 +9,16 @@ export const isRenderScene = input => {
|
|
|
9
9
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && $io3(value);
|
|
10
10
|
});
|
|
11
11
|
const $io3 = input => (null === input.style || undefined === input.style || "string" === typeof input.style) && (undefined === input.styleOverrides || "object" === typeof input.styleOverrides && null !== input.styleOverrides && false === Array.isArray(input.styleOverrides) && $io4(input.styleOverrides));
|
|
12
|
-
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding);
|
|
13
|
-
const $io5 = input => undefined === input.
|
|
14
|
-
const $io6 = input =>
|
|
15
|
-
const $io7 = input => (undefined === input.
|
|
12
|
+
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding) && (undefined === input.previewSettings || "object" === typeof input.previewSettings && null !== input.previewSettings && false === Array.isArray(input.previewSettings) && $io5(input.previewSettings));
|
|
13
|
+
const $io5 = input => (undefined === input.aspectRatio || "string" === typeof input.aspectRatio) && (undefined === input.backgroundAssetId || "string" === typeof input.backgroundAssetId) && (undefined === input.text || "string" === typeof input.text);
|
|
14
|
+
const $io6 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && $io7(input.crop);
|
|
15
|
+
const $io7 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (undefined === input.width || "number" === typeof input.width) && (undefined === input.height || "number" === typeof input.height);
|
|
16
|
+
const $io8 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem));
|
|
16
17
|
return null !== input && undefined !== input && ("string" === typeof input || (Array.isArray(input) && input.every(elem => null !== elem && undefined !== elem && ("string" === typeof elem || "object" === typeof elem && null !== elem && false === Array.isArray(elem) && $io0(elem))) || "object" === typeof input && null !== input && false === Array.isArray(input) && $io0(input)));
|
|
17
18
|
};
|
|
18
19
|
export const assertRenderScene = (input, errorFactory) => {
|
|
19
20
|
const __is = input => {
|
|
20
|
-
const $io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && $io1(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && $io2(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && $
|
|
21
|
+
const $io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && $io1(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && $io2(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && $io6(input.video)) && (undefined === input.start || "number" === typeof input.start) && (undefined === input.end || "number" === typeof input.end) && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) && $io8(input.transcribe));
|
|
21
22
|
const $io1 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file);
|
|
22
23
|
const $io2 = input => Object.keys(input).every(key => {
|
|
23
24
|
const value = input[key];
|
|
@@ -26,10 +27,11 @@ export const assertRenderScene = (input, errorFactory) => {
|
|
|
26
27
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && $io3(value);
|
|
27
28
|
});
|
|
28
29
|
const $io3 = input => (null === input.style || undefined === input.style || "string" === typeof input.style) && (undefined === input.styleOverrides || "object" === typeof input.styleOverrides && null !== input.styleOverrides && false === Array.isArray(input.styleOverrides) && $io4(input.styleOverrides));
|
|
29
|
-
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding);
|
|
30
|
-
const $io5 = input => undefined === input.
|
|
31
|
-
const $io6 = input =>
|
|
32
|
-
const $io7 = input => (undefined === input.
|
|
30
|
+
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding) && (undefined === input.previewSettings || "object" === typeof input.previewSettings && null !== input.previewSettings && false === Array.isArray(input.previewSettings) && $io5(input.previewSettings));
|
|
31
|
+
const $io5 = input => (undefined === input.aspectRatio || "string" === typeof input.aspectRatio) && (undefined === input.backgroundAssetId || "string" === typeof input.backgroundAssetId) && (undefined === input.text || "string" === typeof input.text);
|
|
32
|
+
const $io6 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && $io7(input.crop);
|
|
33
|
+
const $io7 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (undefined === input.width || "number" === typeof input.width) && (undefined === input.height || "number" === typeof input.height);
|
|
34
|
+
const $io8 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem));
|
|
33
35
|
return null !== input && undefined !== input && ("string" === typeof input || (Array.isArray(input) && input.every(elem => null !== elem && undefined !== elem && ("string" === typeof elem || "object" === typeof elem && null !== elem && false === Array.isArray(elem) && $io0(elem))) || "object" === typeof input && null !== input && false === Array.isArray(input) && $io0(input)));
|
|
34
36
|
};
|
|
35
37
|
if (false === __is(input))
|
|
@@ -70,11 +72,11 @@ export const assertRenderScene = (input, errorFactory) => {
|
|
|
70
72
|
value: input.subtitleTracks
|
|
71
73
|
}, errorFactory)) && (undefined === input.video || ("object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) || $guard(_exceptionable, {
|
|
72
74
|
path: _path + ".video",
|
|
73
|
-
expected: "(__type.
|
|
75
|
+
expected: "(__type.o4 | undefined)",
|
|
74
76
|
value: input.video
|
|
75
|
-
}, errorFactory)) && $
|
|
77
|
+
}, errorFactory)) && $ao6(input.video, _path + ".video", true && _exceptionable) || $guard(_exceptionable, {
|
|
76
78
|
path: _path + ".video",
|
|
77
|
-
expected: "(__type.
|
|
79
|
+
expected: "(__type.o4 | undefined)",
|
|
78
80
|
value: input.video
|
|
79
81
|
}, errorFactory)) && (undefined === input.start || "number" === typeof input.start || $guard(_exceptionable, {
|
|
80
82
|
path: _path + ".start",
|
|
@@ -86,11 +88,11 @@ export const assertRenderScene = (input, errorFactory) => {
|
|
|
86
88
|
value: input.end
|
|
87
89
|
}, errorFactory)) && (undefined === input.transcribe || ("object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) || $guard(_exceptionable, {
|
|
88
90
|
path: _path + ".transcribe",
|
|
89
|
-
expected: "(__type.
|
|
91
|
+
expected: "(__type.o6 | undefined)",
|
|
90
92
|
value: input.transcribe
|
|
91
|
-
}, errorFactory)) && $
|
|
93
|
+
}, errorFactory)) && $ao8(input.transcribe, _path + ".transcribe", true && _exceptionable) || $guard(_exceptionable, {
|
|
92
94
|
path: _path + ".transcribe",
|
|
93
|
-
expected: "(__type.
|
|
95
|
+
expected: "(__type.o6 | undefined)",
|
|
94
96
|
value: input.transcribe
|
|
95
97
|
}, errorFactory));
|
|
96
98
|
const $ao1 = (input, _path, _exceptionable = true) => (undefined === input.type || "string" === typeof input.type || $guard(_exceptionable, {
|
|
@@ -221,17 +223,38 @@ export const assertRenderScene = (input, errorFactory) => {
|
|
|
221
223
|
path: _path + ".encoding",
|
|
222
224
|
expected: "(string | undefined)",
|
|
223
225
|
value: input.encoding
|
|
226
|
+
}, errorFactory)) && (undefined === input.previewSettings || ("object" === typeof input.previewSettings && null !== input.previewSettings && false === Array.isArray(input.previewSettings) || $guard(_exceptionable, {
|
|
227
|
+
path: _path + ".previewSettings",
|
|
228
|
+
expected: "(__type.o3 | undefined)",
|
|
229
|
+
value: input.previewSettings
|
|
230
|
+
}, errorFactory)) && $ao5(input.previewSettings, _path + ".previewSettings", true && _exceptionable) || $guard(_exceptionable, {
|
|
231
|
+
path: _path + ".previewSettings",
|
|
232
|
+
expected: "(__type.o3 | undefined)",
|
|
233
|
+
value: input.previewSettings
|
|
234
|
+
}, errorFactory));
|
|
235
|
+
const $ao5 = (input, _path, _exceptionable = true) => (undefined === input.aspectRatio || "string" === typeof input.aspectRatio || $guard(_exceptionable, {
|
|
236
|
+
path: _path + ".aspectRatio",
|
|
237
|
+
expected: "(string | undefined)",
|
|
238
|
+
value: input.aspectRatio
|
|
239
|
+
}, errorFactory)) && (undefined === input.backgroundAssetId || "string" === typeof input.backgroundAssetId || $guard(_exceptionable, {
|
|
240
|
+
path: _path + ".backgroundAssetId",
|
|
241
|
+
expected: "(string | undefined)",
|
|
242
|
+
value: input.backgroundAssetId
|
|
243
|
+
}, errorFactory)) && (undefined === input.text || "string" === typeof input.text || $guard(_exceptionable, {
|
|
244
|
+
path: _path + ".text",
|
|
245
|
+
expected: "(string | undefined)",
|
|
246
|
+
value: input.text
|
|
224
247
|
}, errorFactory));
|
|
225
|
-
const $
|
|
248
|
+
const $ao6 = (input, _path, _exceptionable = true) => undefined === input.crop || ("object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) || $guard(_exceptionable, {
|
|
226
249
|
path: _path + ".crop",
|
|
227
|
-
expected: "(__type.
|
|
250
|
+
expected: "(__type.o5 | undefined)",
|
|
228
251
|
value: input.crop
|
|
229
|
-
}, errorFactory)) && $
|
|
252
|
+
}, errorFactory)) && $ao7(input.crop, _path + ".crop", true && _exceptionable) || $guard(_exceptionable, {
|
|
230
253
|
path: _path + ".crop",
|
|
231
|
-
expected: "(__type.
|
|
254
|
+
expected: "(__type.o5 | undefined)",
|
|
232
255
|
value: input.crop
|
|
233
256
|
}, errorFactory);
|
|
234
|
-
const $
|
|
257
|
+
const $ao7 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || $guard(_exceptionable, {
|
|
235
258
|
path: _path + ".x",
|
|
236
259
|
expected: "(number | undefined)",
|
|
237
260
|
value: input.x
|
|
@@ -248,7 +271,7 @@ export const assertRenderScene = (input, errorFactory) => {
|
|
|
248
271
|
expected: "(number | undefined)",
|
|
249
272
|
value: input.height
|
|
250
273
|
}, errorFactory));
|
|
251
|
-
const $
|
|
274
|
+
const $ao8 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || $guard(_exceptionable, {
|
|
252
275
|
path: _path + ".language",
|
|
253
276
|
expected: "(string | undefined)",
|
|
254
277
|
value: input.language
|
|
@@ -331,7 +354,7 @@ export const randomRenderScene = generator => {
|
|
|
331
354
|
])(),
|
|
332
355
|
video: $pick([
|
|
333
356
|
() => undefined,
|
|
334
|
-
() => $
|
|
357
|
+
() => $ro6(_recursive, _recursive ? 1 + _depth : _depth)
|
|
335
358
|
])(),
|
|
336
359
|
start: $pick([
|
|
337
360
|
() => undefined,
|
|
@@ -343,7 +366,7 @@ export const randomRenderScene = generator => {
|
|
|
343
366
|
])(),
|
|
344
367
|
transcribe: $pick([
|
|
345
368
|
() => undefined,
|
|
346
|
-
() => $
|
|
369
|
+
() => $ro8(_recursive, _recursive ? 1 + _depth : _depth)
|
|
347
370
|
])()
|
|
348
371
|
});
|
|
349
372
|
const $ro1 = (_recursive = false, _depth = 0) => ({
|
|
@@ -465,15 +488,33 @@ export const randomRenderScene = generator => {
|
|
|
465
488
|
encoding: $pick([
|
|
466
489
|
() => undefined,
|
|
467
490
|
() => (generator?.customs ?? $generator.customs)?.string?.([]) ?? (generator?.string ?? $generator.string)()
|
|
491
|
+
])(),
|
|
492
|
+
previewSettings: $pick([
|
|
493
|
+
() => undefined,
|
|
494
|
+
() => $ro5(_recursive, _recursive ? 1 + _depth : _depth)
|
|
468
495
|
])()
|
|
469
496
|
});
|
|
470
497
|
const $ro5 = (_recursive = false, _depth = 0) => ({
|
|
471
|
-
|
|
498
|
+
aspectRatio: $pick([
|
|
472
499
|
() => undefined,
|
|
473
|
-
() =>
|
|
500
|
+
() => (generator?.customs ?? $generator.customs)?.string?.([]) ?? (generator?.string ?? $generator.string)()
|
|
501
|
+
])(),
|
|
502
|
+
backgroundAssetId: $pick([
|
|
503
|
+
() => undefined,
|
|
504
|
+
() => (generator?.customs ?? $generator.customs)?.string?.([]) ?? (generator?.string ?? $generator.string)()
|
|
505
|
+
])(),
|
|
506
|
+
text: $pick([
|
|
507
|
+
() => undefined,
|
|
508
|
+
() => (generator?.customs ?? $generator.customs)?.string?.([]) ?? (generator?.string ?? $generator.string)()
|
|
474
509
|
])()
|
|
475
510
|
});
|
|
476
511
|
const $ro6 = (_recursive = false, _depth = 0) => ({
|
|
512
|
+
crop: $pick([
|
|
513
|
+
() => undefined,
|
|
514
|
+
() => $ro7(_recursive, _recursive ? 1 + _depth : _depth)
|
|
515
|
+
])()
|
|
516
|
+
});
|
|
517
|
+
const $ro7 = (_recursive = false, _depth = 0) => ({
|
|
477
518
|
x: $pick([
|
|
478
519
|
() => undefined,
|
|
479
520
|
() => (generator?.customs ?? $generator.customs)?.number?.([]) ?? (generator?.number ?? $generator.number)(0, 100)
|
|
@@ -491,7 +532,7 @@ export const randomRenderScene = generator => {
|
|
|
491
532
|
() => (generator?.customs ?? $generator.customs)?.number?.([]) ?? (generator?.number ?? $generator.number)(0, 100)
|
|
492
533
|
])()
|
|
493
534
|
});
|
|
494
|
-
const $
|
|
535
|
+
const $ro8 = (_recursive = false, _depth = 0) => ({
|
|
495
536
|
language: $pick([
|
|
496
537
|
() => undefined,
|
|
497
538
|
() => (generator?.customs ?? $generator.customs)?.string?.([]) ?? (generator?.string ?? $generator.string)()
|
|
@@ -512,7 +553,7 @@ export const randomRenderScene = generator => {
|
|
|
512
553
|
};
|
|
513
554
|
export const assertGuardRenderScene = (input, errorFactory) => {
|
|
514
555
|
const __is = input => {
|
|
515
|
-
const $io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && $io1(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && $io2(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && $
|
|
556
|
+
const $io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && $io1(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && $io2(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && $io6(input.video)) && (undefined === input.start || "number" === typeof input.start) && (undefined === input.end || "number" === typeof input.end) && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) && $io8(input.transcribe));
|
|
516
557
|
const $io1 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file);
|
|
517
558
|
const $io2 = input => Object.keys(input).every(key => {
|
|
518
559
|
const value = input[key];
|
|
@@ -521,10 +562,11 @@ export const assertGuardRenderScene = (input, errorFactory) => {
|
|
|
521
562
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && $io3(value);
|
|
522
563
|
});
|
|
523
564
|
const $io3 = input => (null === input.style || undefined === input.style || "string" === typeof input.style) && (undefined === input.styleOverrides || "object" === typeof input.styleOverrides && null !== input.styleOverrides && false === Array.isArray(input.styleOverrides) && $io4(input.styleOverrides));
|
|
524
|
-
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding);
|
|
525
|
-
const $io5 = input => undefined === input.
|
|
526
|
-
const $io6 = input =>
|
|
527
|
-
const $io7 = input => (undefined === input.
|
|
565
|
+
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding) && (undefined === input.previewSettings || "object" === typeof input.previewSettings && null !== input.previewSettings && false === Array.isArray(input.previewSettings) && $io5(input.previewSettings));
|
|
566
|
+
const $io5 = input => (undefined === input.aspectRatio || "string" === typeof input.aspectRatio) && (undefined === input.backgroundAssetId || "string" === typeof input.backgroundAssetId) && (undefined === input.text || "string" === typeof input.text);
|
|
567
|
+
const $io6 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && $io7(input.crop);
|
|
568
|
+
const $io7 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (undefined === input.width || "number" === typeof input.width) && (undefined === input.height || "number" === typeof input.height);
|
|
569
|
+
const $io8 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem));
|
|
528
570
|
return null !== input && undefined !== input && ("string" === typeof input || (Array.isArray(input) && input.every(elem => null !== elem && undefined !== elem && ("string" === typeof elem || "object" === typeof elem && null !== elem && false === Array.isArray(elem) && $io0(elem))) || "object" === typeof input && null !== input && false === Array.isArray(input) && $io0(input)));
|
|
529
571
|
};
|
|
530
572
|
if (false === __is(input))
|
|
@@ -565,11 +607,11 @@ export const assertGuardRenderScene = (input, errorFactory) => {
|
|
|
565
607
|
value: input.subtitleTracks
|
|
566
608
|
}, errorFactory)) && (undefined === input.video || ("object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) || $guard(_exceptionable, {
|
|
567
609
|
path: _path + ".video",
|
|
568
|
-
expected: "(__type.
|
|
610
|
+
expected: "(__type.o4 | undefined)",
|
|
569
611
|
value: input.video
|
|
570
|
-
}, errorFactory)) && $
|
|
612
|
+
}, errorFactory)) && $ao6(input.video, _path + ".video", true && _exceptionable) || $guard(_exceptionable, {
|
|
571
613
|
path: _path + ".video",
|
|
572
|
-
expected: "(__type.
|
|
614
|
+
expected: "(__type.o4 | undefined)",
|
|
573
615
|
value: input.video
|
|
574
616
|
}, errorFactory)) && (undefined === input.start || "number" === typeof input.start || $guard(_exceptionable, {
|
|
575
617
|
path: _path + ".start",
|
|
@@ -581,11 +623,11 @@ export const assertGuardRenderScene = (input, errorFactory) => {
|
|
|
581
623
|
value: input.end
|
|
582
624
|
}, errorFactory)) && (undefined === input.transcribe || ("object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) || $guard(_exceptionable, {
|
|
583
625
|
path: _path + ".transcribe",
|
|
584
|
-
expected: "(__type.
|
|
626
|
+
expected: "(__type.o6 | undefined)",
|
|
585
627
|
value: input.transcribe
|
|
586
|
-
}, errorFactory)) && $
|
|
628
|
+
}, errorFactory)) && $ao8(input.transcribe, _path + ".transcribe", true && _exceptionable) || $guard(_exceptionable, {
|
|
587
629
|
path: _path + ".transcribe",
|
|
588
|
-
expected: "(__type.
|
|
630
|
+
expected: "(__type.o6 | undefined)",
|
|
589
631
|
value: input.transcribe
|
|
590
632
|
}, errorFactory));
|
|
591
633
|
const $ao1 = (input, _path, _exceptionable = true) => (undefined === input.type || "string" === typeof input.type || $guard(_exceptionable, {
|
|
@@ -716,17 +758,38 @@ export const assertGuardRenderScene = (input, errorFactory) => {
|
|
|
716
758
|
path: _path + ".encoding",
|
|
717
759
|
expected: "(string | undefined)",
|
|
718
760
|
value: input.encoding
|
|
761
|
+
}, errorFactory)) && (undefined === input.previewSettings || ("object" === typeof input.previewSettings && null !== input.previewSettings && false === Array.isArray(input.previewSettings) || $guard(_exceptionable, {
|
|
762
|
+
path: _path + ".previewSettings",
|
|
763
|
+
expected: "(__type.o3 | undefined)",
|
|
764
|
+
value: input.previewSettings
|
|
765
|
+
}, errorFactory)) && $ao5(input.previewSettings, _path + ".previewSettings", true && _exceptionable) || $guard(_exceptionable, {
|
|
766
|
+
path: _path + ".previewSettings",
|
|
767
|
+
expected: "(__type.o3 | undefined)",
|
|
768
|
+
value: input.previewSettings
|
|
719
769
|
}, errorFactory));
|
|
720
|
-
const $ao5 = (input, _path, _exceptionable = true) => undefined === input.
|
|
770
|
+
const $ao5 = (input, _path, _exceptionable = true) => (undefined === input.aspectRatio || "string" === typeof input.aspectRatio || $guard(_exceptionable, {
|
|
771
|
+
path: _path + ".aspectRatio",
|
|
772
|
+
expected: "(string | undefined)",
|
|
773
|
+
value: input.aspectRatio
|
|
774
|
+
}, errorFactory)) && (undefined === input.backgroundAssetId || "string" === typeof input.backgroundAssetId || $guard(_exceptionable, {
|
|
775
|
+
path: _path + ".backgroundAssetId",
|
|
776
|
+
expected: "(string | undefined)",
|
|
777
|
+
value: input.backgroundAssetId
|
|
778
|
+
}, errorFactory)) && (undefined === input.text || "string" === typeof input.text || $guard(_exceptionable, {
|
|
779
|
+
path: _path + ".text",
|
|
780
|
+
expected: "(string | undefined)",
|
|
781
|
+
value: input.text
|
|
782
|
+
}, errorFactory));
|
|
783
|
+
const $ao6 = (input, _path, _exceptionable = true) => undefined === input.crop || ("object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) || $guard(_exceptionable, {
|
|
721
784
|
path: _path + ".crop",
|
|
722
|
-
expected: "(__type.
|
|
785
|
+
expected: "(__type.o5 | undefined)",
|
|
723
786
|
value: input.crop
|
|
724
|
-
}, errorFactory)) && $
|
|
787
|
+
}, errorFactory)) && $ao7(input.crop, _path + ".crop", true && _exceptionable) || $guard(_exceptionable, {
|
|
725
788
|
path: _path + ".crop",
|
|
726
|
-
expected: "(__type.
|
|
789
|
+
expected: "(__type.o5 | undefined)",
|
|
727
790
|
value: input.crop
|
|
728
791
|
}, errorFactory);
|
|
729
|
-
const $
|
|
792
|
+
const $ao7 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || $guard(_exceptionable, {
|
|
730
793
|
path: _path + ".x",
|
|
731
794
|
expected: "(number | undefined)",
|
|
732
795
|
value: input.x
|
|
@@ -743,7 +806,7 @@ export const assertGuardRenderScene = (input, errorFactory) => {
|
|
|
743
806
|
expected: "(number | undefined)",
|
|
744
807
|
value: input.height
|
|
745
808
|
}, errorFactory));
|
|
746
|
-
const $
|
|
809
|
+
const $ao8 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || $guard(_exceptionable, {
|
|
747
810
|
path: _path + ".language",
|
|
748
811
|
expected: "(string | undefined)",
|
|
749
812
|
value: input.language
|
|
@@ -804,22 +867,24 @@ export const stringifyRenderScene = input => {
|
|
|
804
867
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && $io3(value);
|
|
805
868
|
});
|
|
806
869
|
const $io3 = input => (null === input.style || undefined === input.style || "string" === typeof input.style) && (undefined === input.styleOverrides || "object" === typeof input.styleOverrides && null !== input.styleOverrides && false === Array.isArray(input.styleOverrides) && $io4(input.styleOverrides));
|
|
807
|
-
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding);
|
|
808
|
-
const $io5 = input => undefined === input.
|
|
809
|
-
const $io6 = input =>
|
|
810
|
-
const $io7 = input => (undefined === input.
|
|
870
|
+
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding) && (undefined === input.previewSettings || "object" === typeof input.previewSettings && null !== input.previewSettings && false === Array.isArray(input.previewSettings) && $io5(input.previewSettings));
|
|
871
|
+
const $io5 = input => (undefined === input.aspectRatio || "string" === typeof input.aspectRatio) && (undefined === input.backgroundAssetId || "string" === typeof input.backgroundAssetId) && (undefined === input.text || "string" === typeof input.text);
|
|
872
|
+
const $io6 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && $io7(input.crop);
|
|
873
|
+
const $io7 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (undefined === input.width || "number" === typeof input.width) && (undefined === input.height || "number" === typeof input.height);
|
|
874
|
+
const $io8 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem));
|
|
811
875
|
const $string = __typia.json.createStringify.string;
|
|
812
876
|
const $throws = __typia.json.createStringify.throws;
|
|
813
877
|
const $tail = __typia.json.createStringify.tail;
|
|
814
|
-
const $so0 = input => `{${$tail(`${undefined === input.id ? "" : `"id":${undefined !== input.id ? $string(input.id) : undefined},`}${undefined === input.preset ? "" : `"preset":${undefined !== input.preset ? $string(input.preset) : undefined},`}${undefined === input.input ? "" : `"input":${undefined !== input.input ? $so1(input.input) : undefined},`}${undefined === input.lang ? "" : `"lang":${undefined !== input.lang ? $string(input.lang) : undefined},`}${undefined === input.subtitle ? "" : `"subtitle":${undefined !== input.subtitle ? $string(input.subtitle) : undefined},`}${undefined === input.subtitleTracks ? "" : `"subtitleTracks":${undefined !== input.subtitleTracks ? $so2(input.subtitleTracks) : undefined},`}${undefined === input.video ? "" : `"video":${undefined !== input.video ? $
|
|
878
|
+
const $so0 = input => `{${$tail(`${undefined === input.id ? "" : `"id":${undefined !== input.id ? $string(input.id) : undefined},`}${undefined === input.preset ? "" : `"preset":${undefined !== input.preset ? $string(input.preset) : undefined},`}${undefined === input.input ? "" : `"input":${undefined !== input.input ? $so1(input.input) : undefined},`}${undefined === input.lang ? "" : `"lang":${undefined !== input.lang ? $string(input.lang) : undefined},`}${undefined === input.subtitle ? "" : `"subtitle":${undefined !== input.subtitle ? $string(input.subtitle) : undefined},`}${undefined === input.subtitleTracks ? "" : `"subtitleTracks":${undefined !== input.subtitleTracks ? $so2(input.subtitleTracks) : undefined},`}${undefined === input.video ? "" : `"video":${undefined !== input.video ? $so6(input.video) : undefined},`}${undefined === input.start ? "" : `"start":${undefined !== input.start ? input.start : undefined},`}${undefined === input.end ? "" : `"end":${undefined !== input.end ? input.end : undefined},`}${undefined === input.transcribe ? "" : `"transcribe":${undefined !== input.transcribe ? $so8(input.transcribe) : undefined}`}`)}}`;
|
|
815
879
|
const $so1 = input => `{${$tail(`${undefined === input.type ? "" : `"type":${undefined !== input.type ? $string(input.type) : undefined},`}${undefined === input.file ? "" : `"file":${undefined !== input.file ? null !== input.file ? $string(input.file) : "null" : undefined}`}`)}}`;
|
|
816
880
|
const $so2 = input => `{${Object.entries(input).map(([key, value]) => { if (undefined === value)
|
|
817
881
|
return ""; return `${JSON.stringify(key)}:${$so3(value)}`; }).filter(str => "" !== str).join(",")}}`;
|
|
818
882
|
const $so3 = input => `{${$tail(`${undefined === input.style ? "" : `"style":${undefined !== input.style ? null !== input.style ? $string(input.style) : "null" : undefined},`}${undefined === input.styleOverrides ? "" : `"styleOverrides":${undefined !== input.styleOverrides ? $so4(input.styleOverrides) : undefined}`}`)}}`;
|
|
819
|
-
const $so4 = input => `{${$tail(`${undefined === input.name ? "" : `"name":${undefined !== input.name ? $string(input.name) : undefined},`}${undefined === input.fontname ? "" : `"fontname":${undefined !== input.fontname ? $string(input.fontname) : undefined},`}${undefined === input.fontsize ? "" : `"fontsize":${undefined !== input.fontsize ? $string(input.fontsize) : undefined},`}${undefined === input.primaryColour ? "" : `"primaryColour":${undefined !== input.primaryColour ? $string(input.primaryColour) : undefined},`}${undefined === input.secondaryColour ? "" : `"secondaryColour":${undefined !== input.secondaryColour ? $string(input.secondaryColour) : undefined},`}${undefined === input.outlineColour ? "" : `"outlineColour":${undefined !== input.outlineColour ? $string(input.outlineColour) : undefined},`}${undefined === input.backColour ? "" : `"backColour":${undefined !== input.backColour ? $string(input.backColour) : undefined},`}${undefined === input.bold ? "" : `"bold":${undefined !== input.bold ? $string(input.bold) : undefined},`}${undefined === input.italic ? "" : `"italic":${undefined !== input.italic ? $string(input.italic) : undefined},`}${undefined === input.underline ? "" : `"underline":${undefined !== input.underline ? $string(input.underline) : undefined},`}${undefined === input.strikeOut ? "" : `"strikeOut":${undefined !== input.strikeOut ? $string(input.strikeOut) : undefined},`}${undefined === input.scaleX ? "" : `"scaleX":${undefined !== input.scaleX ? $string(input.scaleX) : undefined},`}${undefined === input.scaleY ? "" : `"scaleY":${undefined !== input.scaleY ? $string(input.scaleY) : undefined},`}${undefined === input.spacing ? "" : `"spacing":${undefined !== input.spacing ? $string(input.spacing) : undefined},`}${undefined === input.angle ? "" : `"angle":${undefined !== input.angle ? $string(input.angle) : undefined},`}${undefined === input.borderStyle ? "" : `"borderStyle":${undefined !== input.borderStyle ? $string(input.borderStyle) : undefined},`}${undefined === input.outline ? "" : `"outline":${undefined !== input.outline ? $string(input.outline) : undefined},`}${undefined === input.shadow ? "" : `"shadow":${undefined !== input.shadow ? $string(input.shadow) : undefined},`}${undefined === input.alignment ? "" : `"alignment":${undefined !== input.alignment ? $string(input.alignment) : undefined},`}${undefined === input.marginL ? "" : `"marginL":${undefined !== input.marginL ? $string(input.marginL) : undefined},`}${undefined === input.marginR ? "" : `"marginR":${undefined !== input.marginR ? $string(input.marginR) : undefined},`}${undefined === input.marginV ? "" : `"marginV":${undefined !== input.marginV ? $string(input.marginV) : undefined},`}${undefined === input.encoding ? "" : `"encoding":${undefined !== input.encoding ? $string(input.encoding) : undefined}`}`)}}`;
|
|
820
|
-
const $so5 = input => `{${$tail(`${undefined === input.
|
|
821
|
-
const $so6 = input => `{${$tail(`${undefined === input.
|
|
822
|
-
const $so7 = input => `{${$tail(`${undefined === input.
|
|
883
|
+
const $so4 = input => `{${$tail(`${undefined === input.name ? "" : `"name":${undefined !== input.name ? $string(input.name) : undefined},`}${undefined === input.fontname ? "" : `"fontname":${undefined !== input.fontname ? $string(input.fontname) : undefined},`}${undefined === input.fontsize ? "" : `"fontsize":${undefined !== input.fontsize ? $string(input.fontsize) : undefined},`}${undefined === input.primaryColour ? "" : `"primaryColour":${undefined !== input.primaryColour ? $string(input.primaryColour) : undefined},`}${undefined === input.secondaryColour ? "" : `"secondaryColour":${undefined !== input.secondaryColour ? $string(input.secondaryColour) : undefined},`}${undefined === input.outlineColour ? "" : `"outlineColour":${undefined !== input.outlineColour ? $string(input.outlineColour) : undefined},`}${undefined === input.backColour ? "" : `"backColour":${undefined !== input.backColour ? $string(input.backColour) : undefined},`}${undefined === input.bold ? "" : `"bold":${undefined !== input.bold ? $string(input.bold) : undefined},`}${undefined === input.italic ? "" : `"italic":${undefined !== input.italic ? $string(input.italic) : undefined},`}${undefined === input.underline ? "" : `"underline":${undefined !== input.underline ? $string(input.underline) : undefined},`}${undefined === input.strikeOut ? "" : `"strikeOut":${undefined !== input.strikeOut ? $string(input.strikeOut) : undefined},`}${undefined === input.scaleX ? "" : `"scaleX":${undefined !== input.scaleX ? $string(input.scaleX) : undefined},`}${undefined === input.scaleY ? "" : `"scaleY":${undefined !== input.scaleY ? $string(input.scaleY) : undefined},`}${undefined === input.spacing ? "" : `"spacing":${undefined !== input.spacing ? $string(input.spacing) : undefined},`}${undefined === input.angle ? "" : `"angle":${undefined !== input.angle ? $string(input.angle) : undefined},`}${undefined === input.borderStyle ? "" : `"borderStyle":${undefined !== input.borderStyle ? $string(input.borderStyle) : undefined},`}${undefined === input.outline ? "" : `"outline":${undefined !== input.outline ? $string(input.outline) : undefined},`}${undefined === input.shadow ? "" : `"shadow":${undefined !== input.shadow ? $string(input.shadow) : undefined},`}${undefined === input.alignment ? "" : `"alignment":${undefined !== input.alignment ? $string(input.alignment) : undefined},`}${undefined === input.marginL ? "" : `"marginL":${undefined !== input.marginL ? $string(input.marginL) : undefined},`}${undefined === input.marginR ? "" : `"marginR":${undefined !== input.marginR ? $string(input.marginR) : undefined},`}${undefined === input.marginV ? "" : `"marginV":${undefined !== input.marginV ? $string(input.marginV) : undefined},`}${undefined === input.encoding ? "" : `"encoding":${undefined !== input.encoding ? $string(input.encoding) : undefined},`}${undefined === input.previewSettings ? "" : `"previewSettings":${undefined !== input.previewSettings ? $so5(input.previewSettings) : undefined}`}`)}}`;
|
|
884
|
+
const $so5 = input => `{${$tail(`${undefined === input.aspectRatio ? "" : `"aspectRatio":${undefined !== input.aspectRatio ? $string(input.aspectRatio) : undefined},`}${undefined === input.backgroundAssetId ? "" : `"backgroundAssetId":${undefined !== input.backgroundAssetId ? $string(input.backgroundAssetId) : undefined},`}${undefined === input.text ? "" : `"text":${undefined !== input.text ? $string(input.text) : undefined}`}`)}}`;
|
|
885
|
+
const $so6 = input => `{${$tail(`${undefined === input.crop ? "" : `"crop":${undefined !== input.crop ? $so7(input.crop) : undefined}`}`)}}`;
|
|
886
|
+
const $so7 = input => `{${$tail(`${undefined === input.x ? "" : `"x":${undefined !== input.x ? input.x : undefined},`}${undefined === input.y ? "" : `"y":${undefined !== input.y ? input.y : undefined},`}${undefined === input.width ? "" : `"width":${undefined !== input.width ? input.width : undefined},`}${undefined === input.height ? "" : `"height":${undefined !== input.height ? input.height : undefined}`}`)}}`;
|
|
887
|
+
const $so8 = input => `{${$tail(`${undefined === input.language ? "" : `"language":${undefined !== input.language ? $string(input.language) : undefined},`}${undefined === input.pan ? "" : `"pan":${undefined !== input.pan ? `[${input.pan.map(elem => elem).join(",")}]` : undefined}`}`)}}`;
|
|
823
888
|
return (() => {
|
|
824
889
|
if ("string" === typeof input)
|
|
825
890
|
return $string(input);
|
|
@@ -844,7 +909,7 @@ export const stringifyRenderScene = input => {
|
|
|
844
909
|
};
|
|
845
910
|
export const assertStringifyRenderScene = (input, errorFactory) => { const assert = (input, errorFactory) => {
|
|
846
911
|
const __is = input => {
|
|
847
|
-
const $io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && $io1(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && $io2(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && $
|
|
912
|
+
const $io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && $io1(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && $io2(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && $io6(input.video)) && (undefined === input.start || "number" === typeof input.start && !Number.isNaN(input.start)) && (undefined === input.end || "number" === typeof input.end && !Number.isNaN(input.end)) && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) && $io8(input.transcribe));
|
|
848
913
|
const $io1 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file);
|
|
849
914
|
const $io2 = input => Object.keys(input).every(key => {
|
|
850
915
|
const value = input[key];
|
|
@@ -853,10 +918,11 @@ export const assertStringifyRenderScene = (input, errorFactory) => { const asser
|
|
|
853
918
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && $io3(value);
|
|
854
919
|
});
|
|
855
920
|
const $io3 = input => (null === input.style || undefined === input.style || "string" === typeof input.style) && (undefined === input.styleOverrides || "object" === typeof input.styleOverrides && null !== input.styleOverrides && false === Array.isArray(input.styleOverrides) && $io4(input.styleOverrides));
|
|
856
|
-
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding);
|
|
857
|
-
const $io5 = input => undefined === input.
|
|
858
|
-
const $io6 = input =>
|
|
859
|
-
const $io7 = input => (undefined === input.
|
|
921
|
+
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding) && (undefined === input.previewSettings || "object" === typeof input.previewSettings && null !== input.previewSettings && false === Array.isArray(input.previewSettings) && $io5(input.previewSettings));
|
|
922
|
+
const $io5 = input => (undefined === input.aspectRatio || "string" === typeof input.aspectRatio) && (undefined === input.backgroundAssetId || "string" === typeof input.backgroundAssetId) && (undefined === input.text || "string" === typeof input.text);
|
|
923
|
+
const $io6 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && $io7(input.crop);
|
|
924
|
+
const $io7 = input => (undefined === input.x || "number" === typeof input.x && !Number.isNaN(input.x)) && (undefined === input.y || "number" === typeof input.y && !Number.isNaN(input.y)) && (undefined === input.width || "number" === typeof input.width && !Number.isNaN(input.width)) && (undefined === input.height || "number" === typeof input.height && !Number.isNaN(input.height));
|
|
925
|
+
const $io8 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem && !Number.isNaN(elem)));
|
|
860
926
|
return null !== input && undefined !== input && ("string" === typeof input || (Array.isArray(input) && input.every(elem => null !== elem && undefined !== elem && ("string" === typeof elem || "object" === typeof elem && null !== elem && false === Array.isArray(elem) && $io0(elem))) || "object" === typeof input && null !== input && false === Array.isArray(input) && $io0(input)));
|
|
861
927
|
};
|
|
862
928
|
if (false === __is(input))
|
|
@@ -897,11 +963,11 @@ export const assertStringifyRenderScene = (input, errorFactory) => { const asser
|
|
|
897
963
|
value: input.subtitleTracks
|
|
898
964
|
}, errorFactory)) && (undefined === input.video || ("object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) || $guard(_exceptionable, {
|
|
899
965
|
path: _path + ".video",
|
|
900
|
-
expected: "(__type.
|
|
966
|
+
expected: "(__type.o4 | undefined)",
|
|
901
967
|
value: input.video
|
|
902
|
-
}, errorFactory)) && $
|
|
968
|
+
}, errorFactory)) && $ao6(input.video, _path + ".video", true && _exceptionable) || $guard(_exceptionable, {
|
|
903
969
|
path: _path + ".video",
|
|
904
|
-
expected: "(__type.
|
|
970
|
+
expected: "(__type.o4 | undefined)",
|
|
905
971
|
value: input.video
|
|
906
972
|
}, errorFactory)) && (undefined === input.start || "number" === typeof input.start && !Number.isNaN(input.start) || $guard(_exceptionable, {
|
|
907
973
|
path: _path + ".start",
|
|
@@ -913,11 +979,11 @@ export const assertStringifyRenderScene = (input, errorFactory) => { const asser
|
|
|
913
979
|
value: input.end
|
|
914
980
|
}, errorFactory)) && (undefined === input.transcribe || ("object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) || $guard(_exceptionable, {
|
|
915
981
|
path: _path + ".transcribe",
|
|
916
|
-
expected: "(__type.
|
|
982
|
+
expected: "(__type.o6 | undefined)",
|
|
917
983
|
value: input.transcribe
|
|
918
|
-
}, errorFactory)) && $
|
|
984
|
+
}, errorFactory)) && $ao8(input.transcribe, _path + ".transcribe", true && _exceptionable) || $guard(_exceptionable, {
|
|
919
985
|
path: _path + ".transcribe",
|
|
920
|
-
expected: "(__type.
|
|
986
|
+
expected: "(__type.o6 | undefined)",
|
|
921
987
|
value: input.transcribe
|
|
922
988
|
}, errorFactory));
|
|
923
989
|
const $ao1 = (input, _path, _exceptionable = true) => (undefined === input.type || "string" === typeof input.type || $guard(_exceptionable, {
|
|
@@ -1048,17 +1114,38 @@ export const assertStringifyRenderScene = (input, errorFactory) => { const asser
|
|
|
1048
1114
|
path: _path + ".encoding",
|
|
1049
1115
|
expected: "(string | undefined)",
|
|
1050
1116
|
value: input.encoding
|
|
1117
|
+
}, errorFactory)) && (undefined === input.previewSettings || ("object" === typeof input.previewSettings && null !== input.previewSettings && false === Array.isArray(input.previewSettings) || $guard(_exceptionable, {
|
|
1118
|
+
path: _path + ".previewSettings",
|
|
1119
|
+
expected: "(__type.o3 | undefined)",
|
|
1120
|
+
value: input.previewSettings
|
|
1121
|
+
}, errorFactory)) && $ao5(input.previewSettings, _path + ".previewSettings", true && _exceptionable) || $guard(_exceptionable, {
|
|
1122
|
+
path: _path + ".previewSettings",
|
|
1123
|
+
expected: "(__type.o3 | undefined)",
|
|
1124
|
+
value: input.previewSettings
|
|
1051
1125
|
}, errorFactory));
|
|
1052
|
-
const $ao5 = (input, _path, _exceptionable = true) => undefined === input.
|
|
1126
|
+
const $ao5 = (input, _path, _exceptionable = true) => (undefined === input.aspectRatio || "string" === typeof input.aspectRatio || $guard(_exceptionable, {
|
|
1127
|
+
path: _path + ".aspectRatio",
|
|
1128
|
+
expected: "(string | undefined)",
|
|
1129
|
+
value: input.aspectRatio
|
|
1130
|
+
}, errorFactory)) && (undefined === input.backgroundAssetId || "string" === typeof input.backgroundAssetId || $guard(_exceptionable, {
|
|
1131
|
+
path: _path + ".backgroundAssetId",
|
|
1132
|
+
expected: "(string | undefined)",
|
|
1133
|
+
value: input.backgroundAssetId
|
|
1134
|
+
}, errorFactory)) && (undefined === input.text || "string" === typeof input.text || $guard(_exceptionable, {
|
|
1135
|
+
path: _path + ".text",
|
|
1136
|
+
expected: "(string | undefined)",
|
|
1137
|
+
value: input.text
|
|
1138
|
+
}, errorFactory));
|
|
1139
|
+
const $ao6 = (input, _path, _exceptionable = true) => undefined === input.crop || ("object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) || $guard(_exceptionable, {
|
|
1053
1140
|
path: _path + ".crop",
|
|
1054
|
-
expected: "(__type.
|
|
1141
|
+
expected: "(__type.o5 | undefined)",
|
|
1055
1142
|
value: input.crop
|
|
1056
|
-
}, errorFactory)) && $
|
|
1143
|
+
}, errorFactory)) && $ao7(input.crop, _path + ".crop", true && _exceptionable) || $guard(_exceptionable, {
|
|
1057
1144
|
path: _path + ".crop",
|
|
1058
|
-
expected: "(__type.
|
|
1145
|
+
expected: "(__type.o5 | undefined)",
|
|
1059
1146
|
value: input.crop
|
|
1060
1147
|
}, errorFactory);
|
|
1061
|
-
const $
|
|
1148
|
+
const $ao7 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x && !Number.isNaN(input.x) || $guard(_exceptionable, {
|
|
1062
1149
|
path: _path + ".x",
|
|
1063
1150
|
expected: "(number | undefined)",
|
|
1064
1151
|
value: input.x
|
|
@@ -1075,7 +1162,7 @@ export const assertStringifyRenderScene = (input, errorFactory) => { const asser
|
|
|
1075
1162
|
expected: "(number | undefined)",
|
|
1076
1163
|
value: input.height
|
|
1077
1164
|
}, errorFactory));
|
|
1078
|
-
const $
|
|
1165
|
+
const $ao8 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || $guard(_exceptionable, {
|
|
1079
1166
|
path: _path + ".language",
|
|
1080
1167
|
expected: "(string | undefined)",
|
|
1081
1168
|
value: input.language
|
|
@@ -1136,22 +1223,24 @@ export const assertStringifyRenderScene = (input, errorFactory) => { const asser
|
|
|
1136
1223
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && $io3(value);
|
|
1137
1224
|
});
|
|
1138
1225
|
const $io3 = input => (null === input.style || undefined === input.style || "string" === typeof input.style) && (undefined === input.styleOverrides || "object" === typeof input.styleOverrides && null !== input.styleOverrides && false === Array.isArray(input.styleOverrides) && $io4(input.styleOverrides));
|
|
1139
|
-
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding);
|
|
1140
|
-
const $io5 = input => undefined === input.
|
|
1141
|
-
const $io6 = input =>
|
|
1142
|
-
const $io7 = input => (undefined === input.
|
|
1226
|
+
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding) && (undefined === input.previewSettings || "object" === typeof input.previewSettings && null !== input.previewSettings && false === Array.isArray(input.previewSettings) && $io5(input.previewSettings));
|
|
1227
|
+
const $io5 = input => (undefined === input.aspectRatio || "string" === typeof input.aspectRatio) && (undefined === input.backgroundAssetId || "string" === typeof input.backgroundAssetId) && (undefined === input.text || "string" === typeof input.text);
|
|
1228
|
+
const $io6 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && $io7(input.crop);
|
|
1229
|
+
const $io7 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (undefined === input.width || "number" === typeof input.width) && (undefined === input.height || "number" === typeof input.height);
|
|
1230
|
+
const $io8 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem));
|
|
1143
1231
|
const $string = __typia.json.createAssertStringify.string;
|
|
1144
1232
|
const $throws = __typia.json.createAssertStringify.throws;
|
|
1145
1233
|
const $tail = __typia.json.createAssertStringify.tail;
|
|
1146
|
-
const $so0 = input => `{${$tail(`${undefined === input.id ? "" : `"id":${undefined !== input.id ? $string(input.id) : undefined},`}${undefined === input.preset ? "" : `"preset":${undefined !== input.preset ? $string(input.preset) : undefined},`}${undefined === input.input ? "" : `"input":${undefined !== input.input ? $so1(input.input) : undefined},`}${undefined === input.lang ? "" : `"lang":${undefined !== input.lang ? $string(input.lang) : undefined},`}${undefined === input.subtitle ? "" : `"subtitle":${undefined !== input.subtitle ? $string(input.subtitle) : undefined},`}${undefined === input.subtitleTracks ? "" : `"subtitleTracks":${undefined !== input.subtitleTracks ? $so2(input.subtitleTracks) : undefined},`}${undefined === input.video ? "" : `"video":${undefined !== input.video ? $
|
|
1234
|
+
const $so0 = input => `{${$tail(`${undefined === input.id ? "" : `"id":${undefined !== input.id ? $string(input.id) : undefined},`}${undefined === input.preset ? "" : `"preset":${undefined !== input.preset ? $string(input.preset) : undefined},`}${undefined === input.input ? "" : `"input":${undefined !== input.input ? $so1(input.input) : undefined},`}${undefined === input.lang ? "" : `"lang":${undefined !== input.lang ? $string(input.lang) : undefined},`}${undefined === input.subtitle ? "" : `"subtitle":${undefined !== input.subtitle ? $string(input.subtitle) : undefined},`}${undefined === input.subtitleTracks ? "" : `"subtitleTracks":${undefined !== input.subtitleTracks ? $so2(input.subtitleTracks) : undefined},`}${undefined === input.video ? "" : `"video":${undefined !== input.video ? $so6(input.video) : undefined},`}${undefined === input.start ? "" : `"start":${undefined !== input.start ? input.start : undefined},`}${undefined === input.end ? "" : `"end":${undefined !== input.end ? input.end : undefined},`}${undefined === input.transcribe ? "" : `"transcribe":${undefined !== input.transcribe ? $so8(input.transcribe) : undefined}`}`)}}`;
|
|
1147
1235
|
const $so1 = input => `{${$tail(`${undefined === input.type ? "" : `"type":${undefined !== input.type ? $string(input.type) : undefined},`}${undefined === input.file ? "" : `"file":${undefined !== input.file ? null !== input.file ? $string(input.file) : "null" : undefined}`}`)}}`;
|
|
1148
1236
|
const $so2 = input => `{${Object.entries(input).map(([key, value]) => { if (undefined === value)
|
|
1149
1237
|
return ""; return `${JSON.stringify(key)}:${$so3(value)}`; }).filter(str => "" !== str).join(",")}}`;
|
|
1150
1238
|
const $so3 = input => `{${$tail(`${undefined === input.style ? "" : `"style":${undefined !== input.style ? null !== input.style ? $string(input.style) : "null" : undefined},`}${undefined === input.styleOverrides ? "" : `"styleOverrides":${undefined !== input.styleOverrides ? $so4(input.styleOverrides) : undefined}`}`)}}`;
|
|
1151
|
-
const $so4 = input => `{${$tail(`${undefined === input.name ? "" : `"name":${undefined !== input.name ? $string(input.name) : undefined},`}${undefined === input.fontname ? "" : `"fontname":${undefined !== input.fontname ? $string(input.fontname) : undefined},`}${undefined === input.fontsize ? "" : `"fontsize":${undefined !== input.fontsize ? $string(input.fontsize) : undefined},`}${undefined === input.primaryColour ? "" : `"primaryColour":${undefined !== input.primaryColour ? $string(input.primaryColour) : undefined},`}${undefined === input.secondaryColour ? "" : `"secondaryColour":${undefined !== input.secondaryColour ? $string(input.secondaryColour) : undefined},`}${undefined === input.outlineColour ? "" : `"outlineColour":${undefined !== input.outlineColour ? $string(input.outlineColour) : undefined},`}${undefined === input.backColour ? "" : `"backColour":${undefined !== input.backColour ? $string(input.backColour) : undefined},`}${undefined === input.bold ? "" : `"bold":${undefined !== input.bold ? $string(input.bold) : undefined},`}${undefined === input.italic ? "" : `"italic":${undefined !== input.italic ? $string(input.italic) : undefined},`}${undefined === input.underline ? "" : `"underline":${undefined !== input.underline ? $string(input.underline) : undefined},`}${undefined === input.strikeOut ? "" : `"strikeOut":${undefined !== input.strikeOut ? $string(input.strikeOut) : undefined},`}${undefined === input.scaleX ? "" : `"scaleX":${undefined !== input.scaleX ? $string(input.scaleX) : undefined},`}${undefined === input.scaleY ? "" : `"scaleY":${undefined !== input.scaleY ? $string(input.scaleY) : undefined},`}${undefined === input.spacing ? "" : `"spacing":${undefined !== input.spacing ? $string(input.spacing) : undefined},`}${undefined === input.angle ? "" : `"angle":${undefined !== input.angle ? $string(input.angle) : undefined},`}${undefined === input.borderStyle ? "" : `"borderStyle":${undefined !== input.borderStyle ? $string(input.borderStyle) : undefined},`}${undefined === input.outline ? "" : `"outline":${undefined !== input.outline ? $string(input.outline) : undefined},`}${undefined === input.shadow ? "" : `"shadow":${undefined !== input.shadow ? $string(input.shadow) : undefined},`}${undefined === input.alignment ? "" : `"alignment":${undefined !== input.alignment ? $string(input.alignment) : undefined},`}${undefined === input.marginL ? "" : `"marginL":${undefined !== input.marginL ? $string(input.marginL) : undefined},`}${undefined === input.marginR ? "" : `"marginR":${undefined !== input.marginR ? $string(input.marginR) : undefined},`}${undefined === input.marginV ? "" : `"marginV":${undefined !== input.marginV ? $string(input.marginV) : undefined},`}${undefined === input.encoding ? "" : `"encoding":${undefined !== input.encoding ? $string(input.encoding) : undefined}`}`)}}`;
|
|
1152
|
-
const $so5 = input => `{${$tail(`${undefined === input.
|
|
1153
|
-
const $so6 = input => `{${$tail(`${undefined === input.
|
|
1154
|
-
const $so7 = input => `{${$tail(`${undefined === input.
|
|
1239
|
+
const $so4 = input => `{${$tail(`${undefined === input.name ? "" : `"name":${undefined !== input.name ? $string(input.name) : undefined},`}${undefined === input.fontname ? "" : `"fontname":${undefined !== input.fontname ? $string(input.fontname) : undefined},`}${undefined === input.fontsize ? "" : `"fontsize":${undefined !== input.fontsize ? $string(input.fontsize) : undefined},`}${undefined === input.primaryColour ? "" : `"primaryColour":${undefined !== input.primaryColour ? $string(input.primaryColour) : undefined},`}${undefined === input.secondaryColour ? "" : `"secondaryColour":${undefined !== input.secondaryColour ? $string(input.secondaryColour) : undefined},`}${undefined === input.outlineColour ? "" : `"outlineColour":${undefined !== input.outlineColour ? $string(input.outlineColour) : undefined},`}${undefined === input.backColour ? "" : `"backColour":${undefined !== input.backColour ? $string(input.backColour) : undefined},`}${undefined === input.bold ? "" : `"bold":${undefined !== input.bold ? $string(input.bold) : undefined},`}${undefined === input.italic ? "" : `"italic":${undefined !== input.italic ? $string(input.italic) : undefined},`}${undefined === input.underline ? "" : `"underline":${undefined !== input.underline ? $string(input.underline) : undefined},`}${undefined === input.strikeOut ? "" : `"strikeOut":${undefined !== input.strikeOut ? $string(input.strikeOut) : undefined},`}${undefined === input.scaleX ? "" : `"scaleX":${undefined !== input.scaleX ? $string(input.scaleX) : undefined},`}${undefined === input.scaleY ? "" : `"scaleY":${undefined !== input.scaleY ? $string(input.scaleY) : undefined},`}${undefined === input.spacing ? "" : `"spacing":${undefined !== input.spacing ? $string(input.spacing) : undefined},`}${undefined === input.angle ? "" : `"angle":${undefined !== input.angle ? $string(input.angle) : undefined},`}${undefined === input.borderStyle ? "" : `"borderStyle":${undefined !== input.borderStyle ? $string(input.borderStyle) : undefined},`}${undefined === input.outline ? "" : `"outline":${undefined !== input.outline ? $string(input.outline) : undefined},`}${undefined === input.shadow ? "" : `"shadow":${undefined !== input.shadow ? $string(input.shadow) : undefined},`}${undefined === input.alignment ? "" : `"alignment":${undefined !== input.alignment ? $string(input.alignment) : undefined},`}${undefined === input.marginL ? "" : `"marginL":${undefined !== input.marginL ? $string(input.marginL) : undefined},`}${undefined === input.marginR ? "" : `"marginR":${undefined !== input.marginR ? $string(input.marginR) : undefined},`}${undefined === input.marginV ? "" : `"marginV":${undefined !== input.marginV ? $string(input.marginV) : undefined},`}${undefined === input.encoding ? "" : `"encoding":${undefined !== input.encoding ? $string(input.encoding) : undefined},`}${undefined === input.previewSettings ? "" : `"previewSettings":${undefined !== input.previewSettings ? $so5(input.previewSettings) : undefined}`}`)}}`;
|
|
1240
|
+
const $so5 = input => `{${$tail(`${undefined === input.aspectRatio ? "" : `"aspectRatio":${undefined !== input.aspectRatio ? $string(input.aspectRatio) : undefined},`}${undefined === input.backgroundAssetId ? "" : `"backgroundAssetId":${undefined !== input.backgroundAssetId ? $string(input.backgroundAssetId) : undefined},`}${undefined === input.text ? "" : `"text":${undefined !== input.text ? $string(input.text) : undefined}`}`)}}`;
|
|
1241
|
+
const $so6 = input => `{${$tail(`${undefined === input.crop ? "" : `"crop":${undefined !== input.crop ? $so7(input.crop) : undefined}`}`)}}`;
|
|
1242
|
+
const $so7 = input => `{${$tail(`${undefined === input.x ? "" : `"x":${undefined !== input.x ? input.x : undefined},`}${undefined === input.y ? "" : `"y":${undefined !== input.y ? input.y : undefined},`}${undefined === input.width ? "" : `"width":${undefined !== input.width ? input.width : undefined},`}${undefined === input.height ? "" : `"height":${undefined !== input.height ? input.height : undefined}`}`)}}`;
|
|
1243
|
+
const $so8 = input => `{${$tail(`${undefined === input.language ? "" : `"language":${undefined !== input.language ? $string(input.language) : undefined},`}${undefined === input.pan ? "" : `"pan":${undefined !== input.pan ? `[${input.pan.map(elem => elem).join(",")}]` : undefined}`}`)}}`;
|
|
1155
1244
|
return (() => {
|
|
1156
1245
|
if ("string" === typeof input)
|
|
1157
1246
|
return $string(input);
|
|
@@ -1175,7 +1264,7 @@ export const assertStringifyRenderScene = (input, errorFactory) => { const asser
|
|
|
1175
1264
|
})();
|
|
1176
1265
|
}; return stringify(assert(input, errorFactory)); };
|
|
1177
1266
|
export const isRenderSceneObject = input => {
|
|
1178
|
-
const $io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && $io1(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && $io2(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && $
|
|
1267
|
+
const $io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && $io1(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && $io2(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && $io6(input.video)) && (undefined === input.start || "number" === typeof input.start) && (undefined === input.end || "number" === typeof input.end) && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) && $io8(input.transcribe));
|
|
1179
1268
|
const $io1 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file);
|
|
1180
1269
|
const $io2 = input => Object.keys(input).every(key => {
|
|
1181
1270
|
const value = input[key];
|
|
@@ -1184,15 +1273,16 @@ export const isRenderSceneObject = input => {
|
|
|
1184
1273
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && $io3(value);
|
|
1185
1274
|
});
|
|
1186
1275
|
const $io3 = input => (null === input.style || undefined === input.style || "string" === typeof input.style) && (undefined === input.styleOverrides || "object" === typeof input.styleOverrides && null !== input.styleOverrides && false === Array.isArray(input.styleOverrides) && $io4(input.styleOverrides));
|
|
1187
|
-
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding);
|
|
1188
|
-
const $io5 = input => undefined === input.
|
|
1189
|
-
const $io6 = input =>
|
|
1190
|
-
const $io7 = input => (undefined === input.
|
|
1276
|
+
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding) && (undefined === input.previewSettings || "object" === typeof input.previewSettings && null !== input.previewSettings && false === Array.isArray(input.previewSettings) && $io5(input.previewSettings));
|
|
1277
|
+
const $io5 = input => (undefined === input.aspectRatio || "string" === typeof input.aspectRatio) && (undefined === input.backgroundAssetId || "string" === typeof input.backgroundAssetId) && (undefined === input.text || "string" === typeof input.text);
|
|
1278
|
+
const $io6 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && $io7(input.crop);
|
|
1279
|
+
const $io7 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (undefined === input.width || "number" === typeof input.width) && (undefined === input.height || "number" === typeof input.height);
|
|
1280
|
+
const $io8 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem));
|
|
1191
1281
|
return "object" === typeof input && null !== input && false === Array.isArray(input) && $io0(input);
|
|
1192
1282
|
};
|
|
1193
1283
|
export const assertRenderSceneObject = (input, errorFactory) => {
|
|
1194
1284
|
const __is = input => {
|
|
1195
|
-
const $io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && $io1(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && $io2(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && $
|
|
1285
|
+
const $io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && $io1(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && $io2(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && $io6(input.video)) && (undefined === input.start || "number" === typeof input.start) && (undefined === input.end || "number" === typeof input.end) && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) && $io8(input.transcribe));
|
|
1196
1286
|
const $io1 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file);
|
|
1197
1287
|
const $io2 = input => Object.keys(input).every(key => {
|
|
1198
1288
|
const value = input[key];
|
|
@@ -1201,10 +1291,11 @@ export const assertRenderSceneObject = (input, errorFactory) => {
|
|
|
1201
1291
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && $io3(value);
|
|
1202
1292
|
});
|
|
1203
1293
|
const $io3 = input => (null === input.style || undefined === input.style || "string" === typeof input.style) && (undefined === input.styleOverrides || "object" === typeof input.styleOverrides && null !== input.styleOverrides && false === Array.isArray(input.styleOverrides) && $io4(input.styleOverrides));
|
|
1204
|
-
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding);
|
|
1205
|
-
const $io5 = input => undefined === input.
|
|
1206
|
-
const $io6 = input =>
|
|
1207
|
-
const $io7 = input => (undefined === input.
|
|
1294
|
+
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding) && (undefined === input.previewSettings || "object" === typeof input.previewSettings && null !== input.previewSettings && false === Array.isArray(input.previewSettings) && $io5(input.previewSettings));
|
|
1295
|
+
const $io5 = input => (undefined === input.aspectRatio || "string" === typeof input.aspectRatio) && (undefined === input.backgroundAssetId || "string" === typeof input.backgroundAssetId) && (undefined === input.text || "string" === typeof input.text);
|
|
1296
|
+
const $io6 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && $io7(input.crop);
|
|
1297
|
+
const $io7 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (undefined === input.width || "number" === typeof input.width) && (undefined === input.height || "number" === typeof input.height);
|
|
1298
|
+
const $io8 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem));
|
|
1208
1299
|
return "object" === typeof input && null !== input && false === Array.isArray(input) && $io0(input);
|
|
1209
1300
|
};
|
|
1210
1301
|
if (false === __is(input))
|
|
@@ -1245,11 +1336,11 @@ export const assertRenderSceneObject = (input, errorFactory) => {
|
|
|
1245
1336
|
value: input.subtitleTracks
|
|
1246
1337
|
}, errorFactory)) && (undefined === input.video || ("object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) || $guard(_exceptionable, {
|
|
1247
1338
|
path: _path + ".video",
|
|
1248
|
-
expected: "(__type.
|
|
1339
|
+
expected: "(__type.o4 | undefined)",
|
|
1249
1340
|
value: input.video
|
|
1250
|
-
}, errorFactory)) && $
|
|
1341
|
+
}, errorFactory)) && $ao6(input.video, _path + ".video", true && _exceptionable) || $guard(_exceptionable, {
|
|
1251
1342
|
path: _path + ".video",
|
|
1252
|
-
expected: "(__type.
|
|
1343
|
+
expected: "(__type.o4 | undefined)",
|
|
1253
1344
|
value: input.video
|
|
1254
1345
|
}, errorFactory)) && (undefined === input.start || "number" === typeof input.start || $guard(_exceptionable, {
|
|
1255
1346
|
path: _path + ".start",
|
|
@@ -1261,11 +1352,11 @@ export const assertRenderSceneObject = (input, errorFactory) => {
|
|
|
1261
1352
|
value: input.end
|
|
1262
1353
|
}, errorFactory)) && (undefined === input.transcribe || ("object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) || $guard(_exceptionable, {
|
|
1263
1354
|
path: _path + ".transcribe",
|
|
1264
|
-
expected: "(__type.
|
|
1355
|
+
expected: "(__type.o6 | undefined)",
|
|
1265
1356
|
value: input.transcribe
|
|
1266
|
-
}, errorFactory)) && $
|
|
1357
|
+
}, errorFactory)) && $ao8(input.transcribe, _path + ".transcribe", true && _exceptionable) || $guard(_exceptionable, {
|
|
1267
1358
|
path: _path + ".transcribe",
|
|
1268
|
-
expected: "(__type.
|
|
1359
|
+
expected: "(__type.o6 | undefined)",
|
|
1269
1360
|
value: input.transcribe
|
|
1270
1361
|
}, errorFactory));
|
|
1271
1362
|
const $ao1 = (input, _path, _exceptionable = true) => (undefined === input.type || "string" === typeof input.type || $guard(_exceptionable, {
|
|
@@ -1396,17 +1487,38 @@ export const assertRenderSceneObject = (input, errorFactory) => {
|
|
|
1396
1487
|
path: _path + ".encoding",
|
|
1397
1488
|
expected: "(string | undefined)",
|
|
1398
1489
|
value: input.encoding
|
|
1490
|
+
}, errorFactory)) && (undefined === input.previewSettings || ("object" === typeof input.previewSettings && null !== input.previewSettings && false === Array.isArray(input.previewSettings) || $guard(_exceptionable, {
|
|
1491
|
+
path: _path + ".previewSettings",
|
|
1492
|
+
expected: "(__type.o3 | undefined)",
|
|
1493
|
+
value: input.previewSettings
|
|
1494
|
+
}, errorFactory)) && $ao5(input.previewSettings, _path + ".previewSettings", true && _exceptionable) || $guard(_exceptionable, {
|
|
1495
|
+
path: _path + ".previewSettings",
|
|
1496
|
+
expected: "(__type.o3 | undefined)",
|
|
1497
|
+
value: input.previewSettings
|
|
1498
|
+
}, errorFactory));
|
|
1499
|
+
const $ao5 = (input, _path, _exceptionable = true) => (undefined === input.aspectRatio || "string" === typeof input.aspectRatio || $guard(_exceptionable, {
|
|
1500
|
+
path: _path + ".aspectRatio",
|
|
1501
|
+
expected: "(string | undefined)",
|
|
1502
|
+
value: input.aspectRatio
|
|
1503
|
+
}, errorFactory)) && (undefined === input.backgroundAssetId || "string" === typeof input.backgroundAssetId || $guard(_exceptionable, {
|
|
1504
|
+
path: _path + ".backgroundAssetId",
|
|
1505
|
+
expected: "(string | undefined)",
|
|
1506
|
+
value: input.backgroundAssetId
|
|
1507
|
+
}, errorFactory)) && (undefined === input.text || "string" === typeof input.text || $guard(_exceptionable, {
|
|
1508
|
+
path: _path + ".text",
|
|
1509
|
+
expected: "(string | undefined)",
|
|
1510
|
+
value: input.text
|
|
1399
1511
|
}, errorFactory));
|
|
1400
|
-
const $
|
|
1512
|
+
const $ao6 = (input, _path, _exceptionable = true) => undefined === input.crop || ("object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) || $guard(_exceptionable, {
|
|
1401
1513
|
path: _path + ".crop",
|
|
1402
|
-
expected: "(__type.
|
|
1514
|
+
expected: "(__type.o5 | undefined)",
|
|
1403
1515
|
value: input.crop
|
|
1404
|
-
}, errorFactory)) && $
|
|
1516
|
+
}, errorFactory)) && $ao7(input.crop, _path + ".crop", true && _exceptionable) || $guard(_exceptionable, {
|
|
1405
1517
|
path: _path + ".crop",
|
|
1406
|
-
expected: "(__type.
|
|
1518
|
+
expected: "(__type.o5 | undefined)",
|
|
1407
1519
|
value: input.crop
|
|
1408
1520
|
}, errorFactory);
|
|
1409
|
-
const $
|
|
1521
|
+
const $ao7 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || $guard(_exceptionable, {
|
|
1410
1522
|
path: _path + ".x",
|
|
1411
1523
|
expected: "(number | undefined)",
|
|
1412
1524
|
value: input.x
|
|
@@ -1423,7 +1535,7 @@ export const assertRenderSceneObject = (input, errorFactory) => {
|
|
|
1423
1535
|
expected: "(number | undefined)",
|
|
1424
1536
|
value: input.height
|
|
1425
1537
|
}, errorFactory));
|
|
1426
|
-
const $
|
|
1538
|
+
const $ao8 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || $guard(_exceptionable, {
|
|
1427
1539
|
path: _path + ".language",
|
|
1428
1540
|
expected: "(string | undefined)",
|
|
1429
1541
|
value: input.language
|
|
@@ -1482,7 +1594,7 @@ export const randomRenderSceneObject = generator => {
|
|
|
1482
1594
|
])(),
|
|
1483
1595
|
video: $pick([
|
|
1484
1596
|
() => undefined,
|
|
1485
|
-
() => $
|
|
1597
|
+
() => $ro6(_recursive, _recursive ? 1 + _depth : _depth)
|
|
1486
1598
|
])(),
|
|
1487
1599
|
start: $pick([
|
|
1488
1600
|
() => undefined,
|
|
@@ -1494,7 +1606,7 @@ export const randomRenderSceneObject = generator => {
|
|
|
1494
1606
|
])(),
|
|
1495
1607
|
transcribe: $pick([
|
|
1496
1608
|
() => undefined,
|
|
1497
|
-
() => $
|
|
1609
|
+
() => $ro8(_recursive, _recursive ? 1 + _depth : _depth)
|
|
1498
1610
|
])()
|
|
1499
1611
|
});
|
|
1500
1612
|
const $ro1 = (_recursive = false, _depth = 0) => ({
|
|
@@ -1616,15 +1728,33 @@ export const randomRenderSceneObject = generator => {
|
|
|
1616
1728
|
encoding: $pick([
|
|
1617
1729
|
() => undefined,
|
|
1618
1730
|
() => (generator?.customs ?? $generator.customs)?.string?.([]) ?? (generator?.string ?? $generator.string)()
|
|
1731
|
+
])(),
|
|
1732
|
+
previewSettings: $pick([
|
|
1733
|
+
() => undefined,
|
|
1734
|
+
() => $ro5(_recursive, _recursive ? 1 + _depth : _depth)
|
|
1619
1735
|
])()
|
|
1620
1736
|
});
|
|
1621
1737
|
const $ro5 = (_recursive = false, _depth = 0) => ({
|
|
1622
|
-
|
|
1738
|
+
aspectRatio: $pick([
|
|
1623
1739
|
() => undefined,
|
|
1624
|
-
() =>
|
|
1740
|
+
() => (generator?.customs ?? $generator.customs)?.string?.([]) ?? (generator?.string ?? $generator.string)()
|
|
1741
|
+
])(),
|
|
1742
|
+
backgroundAssetId: $pick([
|
|
1743
|
+
() => undefined,
|
|
1744
|
+
() => (generator?.customs ?? $generator.customs)?.string?.([]) ?? (generator?.string ?? $generator.string)()
|
|
1745
|
+
])(),
|
|
1746
|
+
text: $pick([
|
|
1747
|
+
() => undefined,
|
|
1748
|
+
() => (generator?.customs ?? $generator.customs)?.string?.([]) ?? (generator?.string ?? $generator.string)()
|
|
1625
1749
|
])()
|
|
1626
1750
|
});
|
|
1627
1751
|
const $ro6 = (_recursive = false, _depth = 0) => ({
|
|
1752
|
+
crop: $pick([
|
|
1753
|
+
() => undefined,
|
|
1754
|
+
() => $ro7(_recursive, _recursive ? 1 + _depth : _depth)
|
|
1755
|
+
])()
|
|
1756
|
+
});
|
|
1757
|
+
const $ro7 = (_recursive = false, _depth = 0) => ({
|
|
1628
1758
|
x: $pick([
|
|
1629
1759
|
() => undefined,
|
|
1630
1760
|
() => (generator?.customs ?? $generator.customs)?.number?.([]) ?? (generator?.number ?? $generator.number)(0, 100)
|
|
@@ -1642,7 +1772,7 @@ export const randomRenderSceneObject = generator => {
|
|
|
1642
1772
|
() => (generator?.customs ?? $generator.customs)?.number?.([]) ?? (generator?.number ?? $generator.number)(0, 100)
|
|
1643
1773
|
])()
|
|
1644
1774
|
});
|
|
1645
|
-
const $
|
|
1775
|
+
const $ro8 = (_recursive = false, _depth = 0) => ({
|
|
1646
1776
|
language: $pick([
|
|
1647
1777
|
() => undefined,
|
|
1648
1778
|
() => (generator?.customs ?? $generator.customs)?.string?.([]) ?? (generator?.string ?? $generator.string)()
|
|
@@ -1656,7 +1786,7 @@ export const randomRenderSceneObject = generator => {
|
|
|
1656
1786
|
};
|
|
1657
1787
|
export const assertGuardRenderSceneObject = (input, errorFactory) => {
|
|
1658
1788
|
const __is = input => {
|
|
1659
|
-
const $io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && $io1(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && $io2(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && $
|
|
1789
|
+
const $io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && $io1(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && $io2(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && $io6(input.video)) && (undefined === input.start || "number" === typeof input.start) && (undefined === input.end || "number" === typeof input.end) && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) && $io8(input.transcribe));
|
|
1660
1790
|
const $io1 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file);
|
|
1661
1791
|
const $io2 = input => Object.keys(input).every(key => {
|
|
1662
1792
|
const value = input[key];
|
|
@@ -1665,10 +1795,11 @@ export const assertGuardRenderSceneObject = (input, errorFactory) => {
|
|
|
1665
1795
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && $io3(value);
|
|
1666
1796
|
});
|
|
1667
1797
|
const $io3 = input => (null === input.style || undefined === input.style || "string" === typeof input.style) && (undefined === input.styleOverrides || "object" === typeof input.styleOverrides && null !== input.styleOverrides && false === Array.isArray(input.styleOverrides) && $io4(input.styleOverrides));
|
|
1668
|
-
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding);
|
|
1669
|
-
const $io5 = input => undefined === input.
|
|
1670
|
-
const $io6 = input =>
|
|
1671
|
-
const $io7 = input => (undefined === input.
|
|
1798
|
+
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding) && (undefined === input.previewSettings || "object" === typeof input.previewSettings && null !== input.previewSettings && false === Array.isArray(input.previewSettings) && $io5(input.previewSettings));
|
|
1799
|
+
const $io5 = input => (undefined === input.aspectRatio || "string" === typeof input.aspectRatio) && (undefined === input.backgroundAssetId || "string" === typeof input.backgroundAssetId) && (undefined === input.text || "string" === typeof input.text);
|
|
1800
|
+
const $io6 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && $io7(input.crop);
|
|
1801
|
+
const $io7 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (undefined === input.width || "number" === typeof input.width) && (undefined === input.height || "number" === typeof input.height);
|
|
1802
|
+
const $io8 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem));
|
|
1672
1803
|
return "object" === typeof input && null !== input && false === Array.isArray(input) && $io0(input);
|
|
1673
1804
|
};
|
|
1674
1805
|
if (false === __is(input))
|
|
@@ -1709,11 +1840,11 @@ export const assertGuardRenderSceneObject = (input, errorFactory) => {
|
|
|
1709
1840
|
value: input.subtitleTracks
|
|
1710
1841
|
}, errorFactory)) && (undefined === input.video || ("object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) || $guard(_exceptionable, {
|
|
1711
1842
|
path: _path + ".video",
|
|
1712
|
-
expected: "(__type.
|
|
1843
|
+
expected: "(__type.o4 | undefined)",
|
|
1713
1844
|
value: input.video
|
|
1714
|
-
}, errorFactory)) && $
|
|
1845
|
+
}, errorFactory)) && $ao6(input.video, _path + ".video", true && _exceptionable) || $guard(_exceptionable, {
|
|
1715
1846
|
path: _path + ".video",
|
|
1716
|
-
expected: "(__type.
|
|
1847
|
+
expected: "(__type.o4 | undefined)",
|
|
1717
1848
|
value: input.video
|
|
1718
1849
|
}, errorFactory)) && (undefined === input.start || "number" === typeof input.start || $guard(_exceptionable, {
|
|
1719
1850
|
path: _path + ".start",
|
|
@@ -1725,11 +1856,11 @@ export const assertGuardRenderSceneObject = (input, errorFactory) => {
|
|
|
1725
1856
|
value: input.end
|
|
1726
1857
|
}, errorFactory)) && (undefined === input.transcribe || ("object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) || $guard(_exceptionable, {
|
|
1727
1858
|
path: _path + ".transcribe",
|
|
1728
|
-
expected: "(__type.
|
|
1859
|
+
expected: "(__type.o6 | undefined)",
|
|
1729
1860
|
value: input.transcribe
|
|
1730
|
-
}, errorFactory)) && $
|
|
1861
|
+
}, errorFactory)) && $ao8(input.transcribe, _path + ".transcribe", true && _exceptionable) || $guard(_exceptionable, {
|
|
1731
1862
|
path: _path + ".transcribe",
|
|
1732
|
-
expected: "(__type.
|
|
1863
|
+
expected: "(__type.o6 | undefined)",
|
|
1733
1864
|
value: input.transcribe
|
|
1734
1865
|
}, errorFactory));
|
|
1735
1866
|
const $ao1 = (input, _path, _exceptionable = true) => (undefined === input.type || "string" === typeof input.type || $guard(_exceptionable, {
|
|
@@ -1860,17 +1991,38 @@ export const assertGuardRenderSceneObject = (input, errorFactory) => {
|
|
|
1860
1991
|
path: _path + ".encoding",
|
|
1861
1992
|
expected: "(string | undefined)",
|
|
1862
1993
|
value: input.encoding
|
|
1994
|
+
}, errorFactory)) && (undefined === input.previewSettings || ("object" === typeof input.previewSettings && null !== input.previewSettings && false === Array.isArray(input.previewSettings) || $guard(_exceptionable, {
|
|
1995
|
+
path: _path + ".previewSettings",
|
|
1996
|
+
expected: "(__type.o3 | undefined)",
|
|
1997
|
+
value: input.previewSettings
|
|
1998
|
+
}, errorFactory)) && $ao5(input.previewSettings, _path + ".previewSettings", true && _exceptionable) || $guard(_exceptionable, {
|
|
1999
|
+
path: _path + ".previewSettings",
|
|
2000
|
+
expected: "(__type.o3 | undefined)",
|
|
2001
|
+
value: input.previewSettings
|
|
1863
2002
|
}, errorFactory));
|
|
1864
|
-
const $ao5 = (input, _path, _exceptionable = true) => undefined === input.
|
|
2003
|
+
const $ao5 = (input, _path, _exceptionable = true) => (undefined === input.aspectRatio || "string" === typeof input.aspectRatio || $guard(_exceptionable, {
|
|
2004
|
+
path: _path + ".aspectRatio",
|
|
2005
|
+
expected: "(string | undefined)",
|
|
2006
|
+
value: input.aspectRatio
|
|
2007
|
+
}, errorFactory)) && (undefined === input.backgroundAssetId || "string" === typeof input.backgroundAssetId || $guard(_exceptionable, {
|
|
2008
|
+
path: _path + ".backgroundAssetId",
|
|
2009
|
+
expected: "(string | undefined)",
|
|
2010
|
+
value: input.backgroundAssetId
|
|
2011
|
+
}, errorFactory)) && (undefined === input.text || "string" === typeof input.text || $guard(_exceptionable, {
|
|
2012
|
+
path: _path + ".text",
|
|
2013
|
+
expected: "(string | undefined)",
|
|
2014
|
+
value: input.text
|
|
2015
|
+
}, errorFactory));
|
|
2016
|
+
const $ao6 = (input, _path, _exceptionable = true) => undefined === input.crop || ("object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) || $guard(_exceptionable, {
|
|
1865
2017
|
path: _path + ".crop",
|
|
1866
|
-
expected: "(__type.
|
|
2018
|
+
expected: "(__type.o5 | undefined)",
|
|
1867
2019
|
value: input.crop
|
|
1868
|
-
}, errorFactory)) && $
|
|
2020
|
+
}, errorFactory)) && $ao7(input.crop, _path + ".crop", true && _exceptionable) || $guard(_exceptionable, {
|
|
1869
2021
|
path: _path + ".crop",
|
|
1870
|
-
expected: "(__type.
|
|
2022
|
+
expected: "(__type.o5 | undefined)",
|
|
1871
2023
|
value: input.crop
|
|
1872
2024
|
}, errorFactory);
|
|
1873
|
-
const $
|
|
2025
|
+
const $ao7 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || $guard(_exceptionable, {
|
|
1874
2026
|
path: _path + ".x",
|
|
1875
2027
|
expected: "(number | undefined)",
|
|
1876
2028
|
value: input.x
|
|
@@ -1887,7 +2039,7 @@ export const assertGuardRenderSceneObject = (input, errorFactory) => {
|
|
|
1887
2039
|
expected: "(number | undefined)",
|
|
1888
2040
|
value: input.height
|
|
1889
2041
|
}, errorFactory));
|
|
1890
|
-
const $
|
|
2042
|
+
const $ao8 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || $guard(_exceptionable, {
|
|
1891
2043
|
path: _path + ".language",
|
|
1892
2044
|
expected: "(string | undefined)",
|
|
1893
2045
|
value: input.language
|
|
@@ -1924,26 +2076,28 @@ export const stringifyRenderSceneObject = input => {
|
|
|
1924
2076
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && $io3(value);
|
|
1925
2077
|
});
|
|
1926
2078
|
const $io3 = input => (null === input.style || undefined === input.style || "string" === typeof input.style) && (undefined === input.styleOverrides || "object" === typeof input.styleOverrides && null !== input.styleOverrides && false === Array.isArray(input.styleOverrides) && $io4(input.styleOverrides));
|
|
1927
|
-
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding);
|
|
1928
|
-
const $io5 = input => undefined === input.
|
|
1929
|
-
const $io6 = input =>
|
|
1930
|
-
const $io7 = input => (undefined === input.
|
|
2079
|
+
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding) && (undefined === input.previewSettings || "object" === typeof input.previewSettings && null !== input.previewSettings && false === Array.isArray(input.previewSettings) && $io5(input.previewSettings));
|
|
2080
|
+
const $io5 = input => (undefined === input.aspectRatio || "string" === typeof input.aspectRatio) && (undefined === input.backgroundAssetId || "string" === typeof input.backgroundAssetId) && (undefined === input.text || "string" === typeof input.text);
|
|
2081
|
+
const $io6 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && $io7(input.crop);
|
|
2082
|
+
const $io7 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (undefined === input.width || "number" === typeof input.width) && (undefined === input.height || "number" === typeof input.height);
|
|
2083
|
+
const $io8 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem));
|
|
1931
2084
|
const $string = __typia.json.createStringify.string;
|
|
1932
2085
|
const $tail = __typia.json.createStringify.tail;
|
|
1933
|
-
const $so0 = input => `{${$tail(`${undefined === input.id ? "" : `"id":${undefined !== input.id ? $string(input.id) : undefined},`}${undefined === input.preset ? "" : `"preset":${undefined !== input.preset ? $string(input.preset) : undefined},`}${undefined === input.input ? "" : `"input":${undefined !== input.input ? $so1(input.input) : undefined},`}${undefined === input.lang ? "" : `"lang":${undefined !== input.lang ? $string(input.lang) : undefined},`}${undefined === input.subtitle ? "" : `"subtitle":${undefined !== input.subtitle ? $string(input.subtitle) : undefined},`}${undefined === input.subtitleTracks ? "" : `"subtitleTracks":${undefined !== input.subtitleTracks ? $so2(input.subtitleTracks) : undefined},`}${undefined === input.video ? "" : `"video":${undefined !== input.video ? $
|
|
2086
|
+
const $so0 = input => `{${$tail(`${undefined === input.id ? "" : `"id":${undefined !== input.id ? $string(input.id) : undefined},`}${undefined === input.preset ? "" : `"preset":${undefined !== input.preset ? $string(input.preset) : undefined},`}${undefined === input.input ? "" : `"input":${undefined !== input.input ? $so1(input.input) : undefined},`}${undefined === input.lang ? "" : `"lang":${undefined !== input.lang ? $string(input.lang) : undefined},`}${undefined === input.subtitle ? "" : `"subtitle":${undefined !== input.subtitle ? $string(input.subtitle) : undefined},`}${undefined === input.subtitleTracks ? "" : `"subtitleTracks":${undefined !== input.subtitleTracks ? $so2(input.subtitleTracks) : undefined},`}${undefined === input.video ? "" : `"video":${undefined !== input.video ? $so6(input.video) : undefined},`}${undefined === input.start ? "" : `"start":${undefined !== input.start ? input.start : undefined},`}${undefined === input.end ? "" : `"end":${undefined !== input.end ? input.end : undefined},`}${undefined === input.transcribe ? "" : `"transcribe":${undefined !== input.transcribe ? $so8(input.transcribe) : undefined}`}`)}}`;
|
|
1934
2087
|
const $so1 = input => `{${$tail(`${undefined === input.type ? "" : `"type":${undefined !== input.type ? $string(input.type) : undefined},`}${undefined === input.file ? "" : `"file":${undefined !== input.file ? null !== input.file ? $string(input.file) : "null" : undefined}`}`)}}`;
|
|
1935
2088
|
const $so2 = input => `{${Object.entries(input).map(([key, value]) => { if (undefined === value)
|
|
1936
2089
|
return ""; return `${JSON.stringify(key)}:${$so3(value)}`; }).filter(str => "" !== str).join(",")}}`;
|
|
1937
2090
|
const $so3 = input => `{${$tail(`${undefined === input.style ? "" : `"style":${undefined !== input.style ? null !== input.style ? $string(input.style) : "null" : undefined},`}${undefined === input.styleOverrides ? "" : `"styleOverrides":${undefined !== input.styleOverrides ? $so4(input.styleOverrides) : undefined}`}`)}}`;
|
|
1938
|
-
const $so4 = input => `{${$tail(`${undefined === input.name ? "" : `"name":${undefined !== input.name ? $string(input.name) : undefined},`}${undefined === input.fontname ? "" : `"fontname":${undefined !== input.fontname ? $string(input.fontname) : undefined},`}${undefined === input.fontsize ? "" : `"fontsize":${undefined !== input.fontsize ? $string(input.fontsize) : undefined},`}${undefined === input.primaryColour ? "" : `"primaryColour":${undefined !== input.primaryColour ? $string(input.primaryColour) : undefined},`}${undefined === input.secondaryColour ? "" : `"secondaryColour":${undefined !== input.secondaryColour ? $string(input.secondaryColour) : undefined},`}${undefined === input.outlineColour ? "" : `"outlineColour":${undefined !== input.outlineColour ? $string(input.outlineColour) : undefined},`}${undefined === input.backColour ? "" : `"backColour":${undefined !== input.backColour ? $string(input.backColour) : undefined},`}${undefined === input.bold ? "" : `"bold":${undefined !== input.bold ? $string(input.bold) : undefined},`}${undefined === input.italic ? "" : `"italic":${undefined !== input.italic ? $string(input.italic) : undefined},`}${undefined === input.underline ? "" : `"underline":${undefined !== input.underline ? $string(input.underline) : undefined},`}${undefined === input.strikeOut ? "" : `"strikeOut":${undefined !== input.strikeOut ? $string(input.strikeOut) : undefined},`}${undefined === input.scaleX ? "" : `"scaleX":${undefined !== input.scaleX ? $string(input.scaleX) : undefined},`}${undefined === input.scaleY ? "" : `"scaleY":${undefined !== input.scaleY ? $string(input.scaleY) : undefined},`}${undefined === input.spacing ? "" : `"spacing":${undefined !== input.spacing ? $string(input.spacing) : undefined},`}${undefined === input.angle ? "" : `"angle":${undefined !== input.angle ? $string(input.angle) : undefined},`}${undefined === input.borderStyle ? "" : `"borderStyle":${undefined !== input.borderStyle ? $string(input.borderStyle) : undefined},`}${undefined === input.outline ? "" : `"outline":${undefined !== input.outline ? $string(input.outline) : undefined},`}${undefined === input.shadow ? "" : `"shadow":${undefined !== input.shadow ? $string(input.shadow) : undefined},`}${undefined === input.alignment ? "" : `"alignment":${undefined !== input.alignment ? $string(input.alignment) : undefined},`}${undefined === input.marginL ? "" : `"marginL":${undefined !== input.marginL ? $string(input.marginL) : undefined},`}${undefined === input.marginR ? "" : `"marginR":${undefined !== input.marginR ? $string(input.marginR) : undefined},`}${undefined === input.marginV ? "" : `"marginV":${undefined !== input.marginV ? $string(input.marginV) : undefined},`}${undefined === input.encoding ? "" : `"encoding":${undefined !== input.encoding ? $string(input.encoding) : undefined}`}`)}}`;
|
|
1939
|
-
const $so5 = input => `{${$tail(`${undefined === input.
|
|
1940
|
-
const $so6 = input => `{${$tail(`${undefined === input.
|
|
1941
|
-
const $so7 = input => `{${$tail(`${undefined === input.
|
|
2091
|
+
const $so4 = input => `{${$tail(`${undefined === input.name ? "" : `"name":${undefined !== input.name ? $string(input.name) : undefined},`}${undefined === input.fontname ? "" : `"fontname":${undefined !== input.fontname ? $string(input.fontname) : undefined},`}${undefined === input.fontsize ? "" : `"fontsize":${undefined !== input.fontsize ? $string(input.fontsize) : undefined},`}${undefined === input.primaryColour ? "" : `"primaryColour":${undefined !== input.primaryColour ? $string(input.primaryColour) : undefined},`}${undefined === input.secondaryColour ? "" : `"secondaryColour":${undefined !== input.secondaryColour ? $string(input.secondaryColour) : undefined},`}${undefined === input.outlineColour ? "" : `"outlineColour":${undefined !== input.outlineColour ? $string(input.outlineColour) : undefined},`}${undefined === input.backColour ? "" : `"backColour":${undefined !== input.backColour ? $string(input.backColour) : undefined},`}${undefined === input.bold ? "" : `"bold":${undefined !== input.bold ? $string(input.bold) : undefined},`}${undefined === input.italic ? "" : `"italic":${undefined !== input.italic ? $string(input.italic) : undefined},`}${undefined === input.underline ? "" : `"underline":${undefined !== input.underline ? $string(input.underline) : undefined},`}${undefined === input.strikeOut ? "" : `"strikeOut":${undefined !== input.strikeOut ? $string(input.strikeOut) : undefined},`}${undefined === input.scaleX ? "" : `"scaleX":${undefined !== input.scaleX ? $string(input.scaleX) : undefined},`}${undefined === input.scaleY ? "" : `"scaleY":${undefined !== input.scaleY ? $string(input.scaleY) : undefined},`}${undefined === input.spacing ? "" : `"spacing":${undefined !== input.spacing ? $string(input.spacing) : undefined},`}${undefined === input.angle ? "" : `"angle":${undefined !== input.angle ? $string(input.angle) : undefined},`}${undefined === input.borderStyle ? "" : `"borderStyle":${undefined !== input.borderStyle ? $string(input.borderStyle) : undefined},`}${undefined === input.outline ? "" : `"outline":${undefined !== input.outline ? $string(input.outline) : undefined},`}${undefined === input.shadow ? "" : `"shadow":${undefined !== input.shadow ? $string(input.shadow) : undefined},`}${undefined === input.alignment ? "" : `"alignment":${undefined !== input.alignment ? $string(input.alignment) : undefined},`}${undefined === input.marginL ? "" : `"marginL":${undefined !== input.marginL ? $string(input.marginL) : undefined},`}${undefined === input.marginR ? "" : `"marginR":${undefined !== input.marginR ? $string(input.marginR) : undefined},`}${undefined === input.marginV ? "" : `"marginV":${undefined !== input.marginV ? $string(input.marginV) : undefined},`}${undefined === input.encoding ? "" : `"encoding":${undefined !== input.encoding ? $string(input.encoding) : undefined},`}${undefined === input.previewSettings ? "" : `"previewSettings":${undefined !== input.previewSettings ? $so5(input.previewSettings) : undefined}`}`)}}`;
|
|
2092
|
+
const $so5 = input => `{${$tail(`${undefined === input.aspectRatio ? "" : `"aspectRatio":${undefined !== input.aspectRatio ? $string(input.aspectRatio) : undefined},`}${undefined === input.backgroundAssetId ? "" : `"backgroundAssetId":${undefined !== input.backgroundAssetId ? $string(input.backgroundAssetId) : undefined},`}${undefined === input.text ? "" : `"text":${undefined !== input.text ? $string(input.text) : undefined}`}`)}}`;
|
|
2093
|
+
const $so6 = input => `{${$tail(`${undefined === input.crop ? "" : `"crop":${undefined !== input.crop ? $so7(input.crop) : undefined}`}`)}}`;
|
|
2094
|
+
const $so7 = input => `{${$tail(`${undefined === input.x ? "" : `"x":${undefined !== input.x ? input.x : undefined},`}${undefined === input.y ? "" : `"y":${undefined !== input.y ? input.y : undefined},`}${undefined === input.width ? "" : `"width":${undefined !== input.width ? input.width : undefined},`}${undefined === input.height ? "" : `"height":${undefined !== input.height ? input.height : undefined}`}`)}}`;
|
|
2095
|
+
const $so8 = input => `{${$tail(`${undefined === input.language ? "" : `"language":${undefined !== input.language ? $string(input.language) : undefined},`}${undefined === input.pan ? "" : `"pan":${undefined !== input.pan ? `[${input.pan.map(elem => elem).join(",")}]` : undefined}`}`)}}`;
|
|
1942
2096
|
return $so0(input);
|
|
1943
2097
|
};
|
|
1944
2098
|
export const assertStringifyRenderSceneObject = (input, errorFactory) => { const assert = (input, errorFactory) => {
|
|
1945
2099
|
const __is = input => {
|
|
1946
|
-
const $io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && $io1(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && $io2(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && $
|
|
2100
|
+
const $io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && $io1(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && $io2(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && $io6(input.video)) && (undefined === input.start || "number" === typeof input.start && !Number.isNaN(input.start)) && (undefined === input.end || "number" === typeof input.end && !Number.isNaN(input.end)) && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) && $io8(input.transcribe));
|
|
1947
2101
|
const $io1 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file);
|
|
1948
2102
|
const $io2 = input => Object.keys(input).every(key => {
|
|
1949
2103
|
const value = input[key];
|
|
@@ -1952,10 +2106,11 @@ export const assertStringifyRenderSceneObject = (input, errorFactory) => { const
|
|
|
1952
2106
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && $io3(value);
|
|
1953
2107
|
});
|
|
1954
2108
|
const $io3 = input => (null === input.style || undefined === input.style || "string" === typeof input.style) && (undefined === input.styleOverrides || "object" === typeof input.styleOverrides && null !== input.styleOverrides && false === Array.isArray(input.styleOverrides) && $io4(input.styleOverrides));
|
|
1955
|
-
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding);
|
|
1956
|
-
const $io5 = input => undefined === input.
|
|
1957
|
-
const $io6 = input =>
|
|
1958
|
-
const $io7 = input => (undefined === input.
|
|
2109
|
+
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding) && (undefined === input.previewSettings || "object" === typeof input.previewSettings && null !== input.previewSettings && false === Array.isArray(input.previewSettings) && $io5(input.previewSettings));
|
|
2110
|
+
const $io5 = input => (undefined === input.aspectRatio || "string" === typeof input.aspectRatio) && (undefined === input.backgroundAssetId || "string" === typeof input.backgroundAssetId) && (undefined === input.text || "string" === typeof input.text);
|
|
2111
|
+
const $io6 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && $io7(input.crop);
|
|
2112
|
+
const $io7 = input => (undefined === input.x || "number" === typeof input.x && !Number.isNaN(input.x)) && (undefined === input.y || "number" === typeof input.y && !Number.isNaN(input.y)) && (undefined === input.width || "number" === typeof input.width && !Number.isNaN(input.width)) && (undefined === input.height || "number" === typeof input.height && !Number.isNaN(input.height));
|
|
2113
|
+
const $io8 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem && !Number.isNaN(elem)));
|
|
1959
2114
|
return "object" === typeof input && null !== input && false === Array.isArray(input) && $io0(input);
|
|
1960
2115
|
};
|
|
1961
2116
|
if (false === __is(input))
|
|
@@ -1996,11 +2151,11 @@ export const assertStringifyRenderSceneObject = (input, errorFactory) => { const
|
|
|
1996
2151
|
value: input.subtitleTracks
|
|
1997
2152
|
}, errorFactory)) && (undefined === input.video || ("object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) || $guard(_exceptionable, {
|
|
1998
2153
|
path: _path + ".video",
|
|
1999
|
-
expected: "(__type.
|
|
2154
|
+
expected: "(__type.o4 | undefined)",
|
|
2000
2155
|
value: input.video
|
|
2001
|
-
}, errorFactory)) && $
|
|
2156
|
+
}, errorFactory)) && $ao6(input.video, _path + ".video", true && _exceptionable) || $guard(_exceptionable, {
|
|
2002
2157
|
path: _path + ".video",
|
|
2003
|
-
expected: "(__type.
|
|
2158
|
+
expected: "(__type.o4 | undefined)",
|
|
2004
2159
|
value: input.video
|
|
2005
2160
|
}, errorFactory)) && (undefined === input.start || "number" === typeof input.start && !Number.isNaN(input.start) || $guard(_exceptionable, {
|
|
2006
2161
|
path: _path + ".start",
|
|
@@ -2012,11 +2167,11 @@ export const assertStringifyRenderSceneObject = (input, errorFactory) => { const
|
|
|
2012
2167
|
value: input.end
|
|
2013
2168
|
}, errorFactory)) && (undefined === input.transcribe || ("object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) || $guard(_exceptionable, {
|
|
2014
2169
|
path: _path + ".transcribe",
|
|
2015
|
-
expected: "(__type.
|
|
2170
|
+
expected: "(__type.o6 | undefined)",
|
|
2016
2171
|
value: input.transcribe
|
|
2017
|
-
}, errorFactory)) && $
|
|
2172
|
+
}, errorFactory)) && $ao8(input.transcribe, _path + ".transcribe", true && _exceptionable) || $guard(_exceptionable, {
|
|
2018
2173
|
path: _path + ".transcribe",
|
|
2019
|
-
expected: "(__type.
|
|
2174
|
+
expected: "(__type.o6 | undefined)",
|
|
2020
2175
|
value: input.transcribe
|
|
2021
2176
|
}, errorFactory));
|
|
2022
2177
|
const $ao1 = (input, _path, _exceptionable = true) => (undefined === input.type || "string" === typeof input.type || $guard(_exceptionable, {
|
|
@@ -2147,17 +2302,38 @@ export const assertStringifyRenderSceneObject = (input, errorFactory) => { const
|
|
|
2147
2302
|
path: _path + ".encoding",
|
|
2148
2303
|
expected: "(string | undefined)",
|
|
2149
2304
|
value: input.encoding
|
|
2305
|
+
}, errorFactory)) && (undefined === input.previewSettings || ("object" === typeof input.previewSettings && null !== input.previewSettings && false === Array.isArray(input.previewSettings) || $guard(_exceptionable, {
|
|
2306
|
+
path: _path + ".previewSettings",
|
|
2307
|
+
expected: "(__type.o3 | undefined)",
|
|
2308
|
+
value: input.previewSettings
|
|
2309
|
+
}, errorFactory)) && $ao5(input.previewSettings, _path + ".previewSettings", true && _exceptionable) || $guard(_exceptionable, {
|
|
2310
|
+
path: _path + ".previewSettings",
|
|
2311
|
+
expected: "(__type.o3 | undefined)",
|
|
2312
|
+
value: input.previewSettings
|
|
2150
2313
|
}, errorFactory));
|
|
2151
|
-
const $ao5 = (input, _path, _exceptionable = true) => undefined === input.
|
|
2314
|
+
const $ao5 = (input, _path, _exceptionable = true) => (undefined === input.aspectRatio || "string" === typeof input.aspectRatio || $guard(_exceptionable, {
|
|
2315
|
+
path: _path + ".aspectRatio",
|
|
2316
|
+
expected: "(string | undefined)",
|
|
2317
|
+
value: input.aspectRatio
|
|
2318
|
+
}, errorFactory)) && (undefined === input.backgroundAssetId || "string" === typeof input.backgroundAssetId || $guard(_exceptionable, {
|
|
2319
|
+
path: _path + ".backgroundAssetId",
|
|
2320
|
+
expected: "(string | undefined)",
|
|
2321
|
+
value: input.backgroundAssetId
|
|
2322
|
+
}, errorFactory)) && (undefined === input.text || "string" === typeof input.text || $guard(_exceptionable, {
|
|
2323
|
+
path: _path + ".text",
|
|
2324
|
+
expected: "(string | undefined)",
|
|
2325
|
+
value: input.text
|
|
2326
|
+
}, errorFactory));
|
|
2327
|
+
const $ao6 = (input, _path, _exceptionable = true) => undefined === input.crop || ("object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) || $guard(_exceptionable, {
|
|
2152
2328
|
path: _path + ".crop",
|
|
2153
|
-
expected: "(__type.
|
|
2329
|
+
expected: "(__type.o5 | undefined)",
|
|
2154
2330
|
value: input.crop
|
|
2155
|
-
}, errorFactory)) && $
|
|
2331
|
+
}, errorFactory)) && $ao7(input.crop, _path + ".crop", true && _exceptionable) || $guard(_exceptionable, {
|
|
2156
2332
|
path: _path + ".crop",
|
|
2157
|
-
expected: "(__type.
|
|
2333
|
+
expected: "(__type.o5 | undefined)",
|
|
2158
2334
|
value: input.crop
|
|
2159
2335
|
}, errorFactory);
|
|
2160
|
-
const $
|
|
2336
|
+
const $ao7 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x && !Number.isNaN(input.x) || $guard(_exceptionable, {
|
|
2161
2337
|
path: _path + ".x",
|
|
2162
2338
|
expected: "(number | undefined)",
|
|
2163
2339
|
value: input.x
|
|
@@ -2174,7 +2350,7 @@ export const assertStringifyRenderSceneObject = (input, errorFactory) => { const
|
|
|
2174
2350
|
expected: "(number | undefined)",
|
|
2175
2351
|
value: input.height
|
|
2176
2352
|
}, errorFactory));
|
|
2177
|
-
const $
|
|
2353
|
+
const $ao8 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || $guard(_exceptionable, {
|
|
2178
2354
|
path: _path + ".language",
|
|
2179
2355
|
expected: "(string | undefined)",
|
|
2180
2356
|
value: input.language
|
|
@@ -2211,20 +2387,22 @@ export const assertStringifyRenderSceneObject = (input, errorFactory) => { const
|
|
|
2211
2387
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && $io3(value);
|
|
2212
2388
|
});
|
|
2213
2389
|
const $io3 = input => (null === input.style || undefined === input.style || "string" === typeof input.style) && (undefined === input.styleOverrides || "object" === typeof input.styleOverrides && null !== input.styleOverrides && false === Array.isArray(input.styleOverrides) && $io4(input.styleOverrides));
|
|
2214
|
-
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding);
|
|
2215
|
-
const $io5 = input => undefined === input.
|
|
2216
|
-
const $io6 = input =>
|
|
2217
|
-
const $io7 = input => (undefined === input.
|
|
2390
|
+
const $io4 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding) && (undefined === input.previewSettings || "object" === typeof input.previewSettings && null !== input.previewSettings && false === Array.isArray(input.previewSettings) && $io5(input.previewSettings));
|
|
2391
|
+
const $io5 = input => (undefined === input.aspectRatio || "string" === typeof input.aspectRatio) && (undefined === input.backgroundAssetId || "string" === typeof input.backgroundAssetId) && (undefined === input.text || "string" === typeof input.text);
|
|
2392
|
+
const $io6 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && $io7(input.crop);
|
|
2393
|
+
const $io7 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (undefined === input.width || "number" === typeof input.width) && (undefined === input.height || "number" === typeof input.height);
|
|
2394
|
+
const $io8 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem));
|
|
2218
2395
|
const $string = __typia.json.createAssertStringify.string;
|
|
2219
2396
|
const $tail = __typia.json.createAssertStringify.tail;
|
|
2220
|
-
const $so0 = input => `{${$tail(`${undefined === input.id ? "" : `"id":${undefined !== input.id ? $string(input.id) : undefined},`}${undefined === input.preset ? "" : `"preset":${undefined !== input.preset ? $string(input.preset) : undefined},`}${undefined === input.input ? "" : `"input":${undefined !== input.input ? $so1(input.input) : undefined},`}${undefined === input.lang ? "" : `"lang":${undefined !== input.lang ? $string(input.lang) : undefined},`}${undefined === input.subtitle ? "" : `"subtitle":${undefined !== input.subtitle ? $string(input.subtitle) : undefined},`}${undefined === input.subtitleTracks ? "" : `"subtitleTracks":${undefined !== input.subtitleTracks ? $so2(input.subtitleTracks) : undefined},`}${undefined === input.video ? "" : `"video":${undefined !== input.video ? $
|
|
2397
|
+
const $so0 = input => `{${$tail(`${undefined === input.id ? "" : `"id":${undefined !== input.id ? $string(input.id) : undefined},`}${undefined === input.preset ? "" : `"preset":${undefined !== input.preset ? $string(input.preset) : undefined},`}${undefined === input.input ? "" : `"input":${undefined !== input.input ? $so1(input.input) : undefined},`}${undefined === input.lang ? "" : `"lang":${undefined !== input.lang ? $string(input.lang) : undefined},`}${undefined === input.subtitle ? "" : `"subtitle":${undefined !== input.subtitle ? $string(input.subtitle) : undefined},`}${undefined === input.subtitleTracks ? "" : `"subtitleTracks":${undefined !== input.subtitleTracks ? $so2(input.subtitleTracks) : undefined},`}${undefined === input.video ? "" : `"video":${undefined !== input.video ? $so6(input.video) : undefined},`}${undefined === input.start ? "" : `"start":${undefined !== input.start ? input.start : undefined},`}${undefined === input.end ? "" : `"end":${undefined !== input.end ? input.end : undefined},`}${undefined === input.transcribe ? "" : `"transcribe":${undefined !== input.transcribe ? $so8(input.transcribe) : undefined}`}`)}}`;
|
|
2221
2398
|
const $so1 = input => `{${$tail(`${undefined === input.type ? "" : `"type":${undefined !== input.type ? $string(input.type) : undefined},`}${undefined === input.file ? "" : `"file":${undefined !== input.file ? null !== input.file ? $string(input.file) : "null" : undefined}`}`)}}`;
|
|
2222
2399
|
const $so2 = input => `{${Object.entries(input).map(([key, value]) => { if (undefined === value)
|
|
2223
2400
|
return ""; return `${JSON.stringify(key)}:${$so3(value)}`; }).filter(str => "" !== str).join(",")}}`;
|
|
2224
2401
|
const $so3 = input => `{${$tail(`${undefined === input.style ? "" : `"style":${undefined !== input.style ? null !== input.style ? $string(input.style) : "null" : undefined},`}${undefined === input.styleOverrides ? "" : `"styleOverrides":${undefined !== input.styleOverrides ? $so4(input.styleOverrides) : undefined}`}`)}}`;
|
|
2225
|
-
const $so4 = input => `{${$tail(`${undefined === input.name ? "" : `"name":${undefined !== input.name ? $string(input.name) : undefined},`}${undefined === input.fontname ? "" : `"fontname":${undefined !== input.fontname ? $string(input.fontname) : undefined},`}${undefined === input.fontsize ? "" : `"fontsize":${undefined !== input.fontsize ? $string(input.fontsize) : undefined},`}${undefined === input.primaryColour ? "" : `"primaryColour":${undefined !== input.primaryColour ? $string(input.primaryColour) : undefined},`}${undefined === input.secondaryColour ? "" : `"secondaryColour":${undefined !== input.secondaryColour ? $string(input.secondaryColour) : undefined},`}${undefined === input.outlineColour ? "" : `"outlineColour":${undefined !== input.outlineColour ? $string(input.outlineColour) : undefined},`}${undefined === input.backColour ? "" : `"backColour":${undefined !== input.backColour ? $string(input.backColour) : undefined},`}${undefined === input.bold ? "" : `"bold":${undefined !== input.bold ? $string(input.bold) : undefined},`}${undefined === input.italic ? "" : `"italic":${undefined !== input.italic ? $string(input.italic) : undefined},`}${undefined === input.underline ? "" : `"underline":${undefined !== input.underline ? $string(input.underline) : undefined},`}${undefined === input.strikeOut ? "" : `"strikeOut":${undefined !== input.strikeOut ? $string(input.strikeOut) : undefined},`}${undefined === input.scaleX ? "" : `"scaleX":${undefined !== input.scaleX ? $string(input.scaleX) : undefined},`}${undefined === input.scaleY ? "" : `"scaleY":${undefined !== input.scaleY ? $string(input.scaleY) : undefined},`}${undefined === input.spacing ? "" : `"spacing":${undefined !== input.spacing ? $string(input.spacing) : undefined},`}${undefined === input.angle ? "" : `"angle":${undefined !== input.angle ? $string(input.angle) : undefined},`}${undefined === input.borderStyle ? "" : `"borderStyle":${undefined !== input.borderStyle ? $string(input.borderStyle) : undefined},`}${undefined === input.outline ? "" : `"outline":${undefined !== input.outline ? $string(input.outline) : undefined},`}${undefined === input.shadow ? "" : `"shadow":${undefined !== input.shadow ? $string(input.shadow) : undefined},`}${undefined === input.alignment ? "" : `"alignment":${undefined !== input.alignment ? $string(input.alignment) : undefined},`}${undefined === input.marginL ? "" : `"marginL":${undefined !== input.marginL ? $string(input.marginL) : undefined},`}${undefined === input.marginR ? "" : `"marginR":${undefined !== input.marginR ? $string(input.marginR) : undefined},`}${undefined === input.marginV ? "" : `"marginV":${undefined !== input.marginV ? $string(input.marginV) : undefined},`}${undefined === input.encoding ? "" : `"encoding":${undefined !== input.encoding ? $string(input.encoding) : undefined}`}`)}}`;
|
|
2226
|
-
const $so5 = input => `{${$tail(`${undefined === input.
|
|
2227
|
-
const $so6 = input => `{${$tail(`${undefined === input.
|
|
2228
|
-
const $so7 = input => `{${$tail(`${undefined === input.
|
|
2402
|
+
const $so4 = input => `{${$tail(`${undefined === input.name ? "" : `"name":${undefined !== input.name ? $string(input.name) : undefined},`}${undefined === input.fontname ? "" : `"fontname":${undefined !== input.fontname ? $string(input.fontname) : undefined},`}${undefined === input.fontsize ? "" : `"fontsize":${undefined !== input.fontsize ? $string(input.fontsize) : undefined},`}${undefined === input.primaryColour ? "" : `"primaryColour":${undefined !== input.primaryColour ? $string(input.primaryColour) : undefined},`}${undefined === input.secondaryColour ? "" : `"secondaryColour":${undefined !== input.secondaryColour ? $string(input.secondaryColour) : undefined},`}${undefined === input.outlineColour ? "" : `"outlineColour":${undefined !== input.outlineColour ? $string(input.outlineColour) : undefined},`}${undefined === input.backColour ? "" : `"backColour":${undefined !== input.backColour ? $string(input.backColour) : undefined},`}${undefined === input.bold ? "" : `"bold":${undefined !== input.bold ? $string(input.bold) : undefined},`}${undefined === input.italic ? "" : `"italic":${undefined !== input.italic ? $string(input.italic) : undefined},`}${undefined === input.underline ? "" : `"underline":${undefined !== input.underline ? $string(input.underline) : undefined},`}${undefined === input.strikeOut ? "" : `"strikeOut":${undefined !== input.strikeOut ? $string(input.strikeOut) : undefined},`}${undefined === input.scaleX ? "" : `"scaleX":${undefined !== input.scaleX ? $string(input.scaleX) : undefined},`}${undefined === input.scaleY ? "" : `"scaleY":${undefined !== input.scaleY ? $string(input.scaleY) : undefined},`}${undefined === input.spacing ? "" : `"spacing":${undefined !== input.spacing ? $string(input.spacing) : undefined},`}${undefined === input.angle ? "" : `"angle":${undefined !== input.angle ? $string(input.angle) : undefined},`}${undefined === input.borderStyle ? "" : `"borderStyle":${undefined !== input.borderStyle ? $string(input.borderStyle) : undefined},`}${undefined === input.outline ? "" : `"outline":${undefined !== input.outline ? $string(input.outline) : undefined},`}${undefined === input.shadow ? "" : `"shadow":${undefined !== input.shadow ? $string(input.shadow) : undefined},`}${undefined === input.alignment ? "" : `"alignment":${undefined !== input.alignment ? $string(input.alignment) : undefined},`}${undefined === input.marginL ? "" : `"marginL":${undefined !== input.marginL ? $string(input.marginL) : undefined},`}${undefined === input.marginR ? "" : `"marginR":${undefined !== input.marginR ? $string(input.marginR) : undefined},`}${undefined === input.marginV ? "" : `"marginV":${undefined !== input.marginV ? $string(input.marginV) : undefined},`}${undefined === input.encoding ? "" : `"encoding":${undefined !== input.encoding ? $string(input.encoding) : undefined},`}${undefined === input.previewSettings ? "" : `"previewSettings":${undefined !== input.previewSettings ? $so5(input.previewSettings) : undefined}`}`)}}`;
|
|
2403
|
+
const $so5 = input => `{${$tail(`${undefined === input.aspectRatio ? "" : `"aspectRatio":${undefined !== input.aspectRatio ? $string(input.aspectRatio) : undefined},`}${undefined === input.backgroundAssetId ? "" : `"backgroundAssetId":${undefined !== input.backgroundAssetId ? $string(input.backgroundAssetId) : undefined},`}${undefined === input.text ? "" : `"text":${undefined !== input.text ? $string(input.text) : undefined}`}`)}}`;
|
|
2404
|
+
const $so6 = input => `{${$tail(`${undefined === input.crop ? "" : `"crop":${undefined !== input.crop ? $so7(input.crop) : undefined}`}`)}}`;
|
|
2405
|
+
const $so7 = input => `{${$tail(`${undefined === input.x ? "" : `"x":${undefined !== input.x ? input.x : undefined},`}${undefined === input.y ? "" : `"y":${undefined !== input.y ? input.y : undefined},`}${undefined === input.width ? "" : `"width":${undefined !== input.width ? input.width : undefined},`}${undefined === input.height ? "" : `"height":${undefined !== input.height ? input.height : undefined}`}`)}}`;
|
|
2406
|
+
const $so8 = input => `{${$tail(`${undefined === input.language ? "" : `"language":${undefined !== input.language ? $string(input.language) : undefined},`}${undefined === input.pan ? "" : `"pan":${undefined !== input.pan ? `[${input.pan.map(elem => elem).join(",")}]` : undefined}`}`)}}`;
|
|
2229
2407
|
return $so0(input);
|
|
2230
2408
|
}; return stringify(assert(input, errorFactory)); };
|