@nxtedition/types 23.1.4 → 23.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common/block.d.ts +1 -0
- package/dist/common/block.js +31 -13
- package/dist/common/file.js +9 -8
- package/dist/common/location.js +1 -1
- package/dist/common/render-scene.d.ts +5 -0
- package/dist/common/rule.js +2 -2
- package/dist/nxtpression.d.ts +120 -163
- package/dist/records/domains/event.d.ts +14 -0
- package/dist/records/validate/assert-guard.js +333 -162
- package/dist/records/validate/assert.js +335 -162
- package/dist/records/validate/is.js +32 -26
- package/dist/records/validate/schemas.js +160 -4
- package/dist/records/validate/stringify.js +269 -262
- package/dist/records/validate/utils.js +1 -1
- package/dist/records/validate/validate-equals.js +567 -238
- package/dist/records/validate/validate.js +330 -162
- package/dist/rpc.js +2 -2
- package/dist/tsdoc-metadata.json +1 -1
- package/package.json +13 -14
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import * as __typia_transform__assertGuard from "typia/lib/internal/_assertGuard
|
|
2
|
-
import * as __typia_transform__accessExpressionAsString from "typia/lib/internal/_accessExpressionAsString
|
|
3
|
-
import * as __typia_transform__isTypeUint64 from "typia/lib/internal/_isTypeUint64
|
|
1
|
+
import * as __typia_transform__assertGuard from "typia/lib/internal/_assertGuard";
|
|
2
|
+
import * as __typia_transform__accessExpressionAsString from "typia/lib/internal/_accessExpressionAsString";
|
|
3
|
+
import * as __typia_transform__isTypeUint64 from "typia/lib/internal/_isTypeUint64";
|
|
4
4
|
import { isEmptyRecord, parseRecordName } from "./utils.js";
|
|
5
5
|
import typia from 'typia';
|
|
6
6
|
export function assertRecord(name, input) {
|
|
@@ -9484,6 +9484,79 @@ function _assertDomainRecord(domain, input) {
|
|
|
9484
9484
|
return input;
|
|
9485
9485
|
}; })()(input);
|
|
9486
9486
|
}
|
|
9487
|
+
case ":event.readDuration?": {
|
|
9488
|
+
return (() => { const _io0 = input => (undefined === input.numChars || "number" === typeof input.numChars) && (undefined === input.numWords || "number" === typeof input.numWords) && (undefined === input.readRate || "number" === typeof input.readRate) && (undefined === input.readDuration || "number" === typeof input.readDuration) && (undefined === input.readType || "characters" === input.readType || "words" === input.readType || "wordsPerMinute" === input.readType); const _ao0 = (input, _path, _exceptionable = true) => (undefined === input.numChars || "number" === typeof input.numChars || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9489
|
+
method: "typia.assert",
|
|
9490
|
+
path: _path + ".numChars",
|
|
9491
|
+
expected: "(number | undefined)",
|
|
9492
|
+
value: input.numChars
|
|
9493
|
+
}, _errorFactory)) && (undefined === input.numWords || "number" === typeof input.numWords || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9494
|
+
method: "typia.assert",
|
|
9495
|
+
path: _path + ".numWords",
|
|
9496
|
+
expected: "(number | undefined)",
|
|
9497
|
+
value: input.numWords
|
|
9498
|
+
}, _errorFactory)) && (undefined === input.readRate || "number" === typeof input.readRate || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9499
|
+
method: "typia.assert",
|
|
9500
|
+
path: _path + ".readRate",
|
|
9501
|
+
expected: "(number | undefined)",
|
|
9502
|
+
value: input.readRate
|
|
9503
|
+
}, _errorFactory)) && (undefined === input.readDuration || "number" === typeof input.readDuration || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9504
|
+
method: "typia.assert",
|
|
9505
|
+
path: _path + ".readDuration",
|
|
9506
|
+
expected: "(number | undefined)",
|
|
9507
|
+
value: input.readDuration
|
|
9508
|
+
}, _errorFactory)) && (undefined === input.readType || "characters" === input.readType || "words" === input.readType || "wordsPerMinute" === input.readType || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9509
|
+
method: "typia.assert",
|
|
9510
|
+
path: _path + ".readType",
|
|
9511
|
+
expected: "(\"characters\" | \"words\" | \"wordsPerMinute\" | undefined)",
|
|
9512
|
+
value: input.readType
|
|
9513
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
9514
|
+
if (false === __is(input)) {
|
|
9515
|
+
_errorFactory = errorFactory;
|
|
9516
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
9517
|
+
method: "typia.assert",
|
|
9518
|
+
path: _path + "",
|
|
9519
|
+
expected: "EventReadDurationRecord",
|
|
9520
|
+
value: input
|
|
9521
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
9522
|
+
method: "typia.assert",
|
|
9523
|
+
path: _path + "",
|
|
9524
|
+
expected: "EventReadDurationRecord",
|
|
9525
|
+
value: input
|
|
9526
|
+
}, _errorFactory))(input, "$input", true);
|
|
9527
|
+
}
|
|
9528
|
+
return input;
|
|
9529
|
+
}; })()(input);
|
|
9530
|
+
}
|
|
9531
|
+
case ":event.readRate?": {
|
|
9532
|
+
return (() => { const _io0 = input => (undefined === input.readRate || "number" === typeof input.readRate) && (undefined === input.readType || "characters" === input.readType || "words" === input.readType || "wordsPerMinute" === input.readType); const _ao0 = (input, _path, _exceptionable = true) => (undefined === input.readRate || "number" === typeof input.readRate || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9533
|
+
method: "typia.assert",
|
|
9534
|
+
path: _path + ".readRate",
|
|
9535
|
+
expected: "(number | undefined)",
|
|
9536
|
+
value: input.readRate
|
|
9537
|
+
}, _errorFactory)) && (undefined === input.readType || "characters" === input.readType || "words" === input.readType || "wordsPerMinute" === input.readType || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9538
|
+
method: "typia.assert",
|
|
9539
|
+
path: _path + ".readType",
|
|
9540
|
+
expected: "(\"characters\" | \"words\" | \"wordsPerMinute\" | undefined)",
|
|
9541
|
+
value: input.readType
|
|
9542
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
9543
|
+
if (false === __is(input)) {
|
|
9544
|
+
_errorFactory = errorFactory;
|
|
9545
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
9546
|
+
method: "typia.assert",
|
|
9547
|
+
path: _path + "",
|
|
9548
|
+
expected: "EventReadRateRecord",
|
|
9549
|
+
value: input
|
|
9550
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
9551
|
+
method: "typia.assert",
|
|
9552
|
+
path: _path + "",
|
|
9553
|
+
expected: "EventReadRateRecord",
|
|
9554
|
+
value: input
|
|
9555
|
+
}, _errorFactory))(input, "$input", true);
|
|
9556
|
+
}
|
|
9557
|
+
return input;
|
|
9558
|
+
}; })()(input);
|
|
9559
|
+
}
|
|
9487
9560
|
case ":file.replicate": {
|
|
9488
9561
|
return (() => { const _io0 = input => Array.isArray(input.replicas) && input.replicas.every(elem => "string" === typeof elem) && (null === input.error || "object" === typeof input.error && null !== input.error && _io1(input.error)); const _io1 = input => "string" === typeof input.message && (undefined === input.type || "string" === typeof input.type) && (undefined === input.code || "string" === typeof input.code) && (undefined === input.exitCode || "number" === typeof input.exitCode) && (undefined === input.signalCode || "number" === typeof input.signalCode) && (undefined === input.statusCode || "number" === typeof input.statusCode) && (undefined === input.headers || "object" === typeof input.headers && null !== input.headers && false === Array.isArray(input.headers) && _io2(input.headers)) && (undefined === input.data || "object" === typeof input.data && null !== input.data && false === Array.isArray(input.data) && _io3(input.data)) && (null === input.cause || undefined === input.cause || "object" === typeof input.cause && null !== input.cause && _io1(input.cause)) && (null === input.errors || undefined === input.errors || Array.isArray(input.errors) && input.errors.every(elem => "object" === typeof elem && null !== elem && _io1(elem))); const _io2 = input => Object.keys(input).every(key => {
|
|
9489
9562
|
const value = input[key];
|
|
@@ -10868,12 +10941,12 @@ function _assertDomainRecord(domain, input) {
|
|
|
10868
10941
|
}; })()(input);
|
|
10869
10942
|
}
|
|
10870
10943
|
case ":media.source": {
|
|
10871
|
-
return (() => { const _io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (null === input.input || 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.graphics || "string" === typeof input.graphics) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && _io3(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io6(input.video)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) &&
|
|
10944
|
+
return (() => { const _io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (null === input.input || 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.graphics || "string" === typeof input.graphics) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && _io3(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io6(input.video)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io13(input.audio)) && (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) && _io14(input.transcribe)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io11(input.crop)) && (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io7(input.filters)) && (undefined === input.orientation || "number" === typeof input.orientation) && (undefined === input.rotate || "number" === typeof input.rotate) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced) && (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha); const _io1 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io2(input.video)) && (null === input.proxy || undefined === input.proxy || "string" === typeof input.proxy) && (null === input.proxyManifest || undefined === input.proxyManifest || "string" === typeof input.proxyManifest) && (null === input.proxyFile || undefined === input.proxyFile || "string" === typeof input.proxyFile) && (null === input.manifest || undefined === input.manifest || "string" === typeof input.manifest); const _io2 = input => (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced); const _io3 = input => Object.keys(input).every(key => {
|
|
10872
10945
|
const value = input[key];
|
|
10873
10946
|
if (undefined === value)
|
|
10874
10947
|
return true;
|
|
10875
10948
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io4(value);
|
|
10876
|
-
}); const _io4 = 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) && _io5(input.styleOverrides)); const _io5 = 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.lineSpacing || "string" === typeof input.lineSpacing) && (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); const _io6 = input => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io7(input.filters)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io11(input.crop)) && (undefined === input.orientation || "number" === typeof input.orientation) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced) && (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha); const _io7 = input => (undefined === input.eq || "object" === typeof input.eq && null !== input.eq && false === Array.isArray(input.eq) && _io8(input.eq)) && (undefined === input.hue || "object" === typeof input.hue && null !== input.hue && false === Array.isArray(input.hue) && _io9(input.hue)) && (undefined === input.colorbalance || "object" === typeof input.colorbalance && null !== input.colorbalance && false === Array.isArray(input.colorbalance) && _io10(input.colorbalance)); const _io8 = input => (undefined === input.brightness || "number" === typeof input.brightness) && (undefined === input.contrast || "number" === typeof input.contrast) && (undefined === input.gamma || "number" === typeof input.gamma) && (undefined === input.saturation || "number" === typeof input.saturation); const _io9 = input => (undefined === input.h || "number" === typeof input.h) && (undefined === input.s || "number" === typeof input.s) && (undefined === input.b || "number" === typeof input.b); const _io10 = input => (undefined === input.rs || "number" === typeof input.rs) && (undefined === input.gs || "number" === typeof input.gs) && (undefined === input.bs || "number" === typeof input.bs) && (undefined === input.rm || "number" === typeof input.rm) && (undefined === input.gm || "number" === typeof input.gm) && (undefined === input.bm || "number" === typeof input.bm) && (undefined === input.rh || "number" === typeof input.rh) && (undefined === input.gh || "number" === typeof input.gh) && (undefined === input.bh || "number" === typeof input.bh); const _io11 = 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); const _io12 = input => undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => Array.isArray(elem) && elem.every(elem => "number" === typeof elem)); const
|
|
10949
|
+
}); const _io4 = 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) && _io5(input.styleOverrides)); const _io5 = 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.lineSpacing || "string" === typeof input.lineSpacing) && (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); const _io6 = input => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io7(input.filters)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io11(input.crop)) && (undefined === input.focus || "object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) && _io12(input.focus)) && (undefined === input.orientation || "number" === typeof input.orientation) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced) && (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha); const _io7 = input => (undefined === input.eq || "object" === typeof input.eq && null !== input.eq && false === Array.isArray(input.eq) && _io8(input.eq)) && (undefined === input.hue || "object" === typeof input.hue && null !== input.hue && false === Array.isArray(input.hue) && _io9(input.hue)) && (undefined === input.colorbalance || "object" === typeof input.colorbalance && null !== input.colorbalance && false === Array.isArray(input.colorbalance) && _io10(input.colorbalance)); const _io8 = input => (undefined === input.brightness || "number" === typeof input.brightness) && (undefined === input.contrast || "number" === typeof input.contrast) && (undefined === input.gamma || "number" === typeof input.gamma) && (undefined === input.saturation || "number" === typeof input.saturation); const _io9 = input => (undefined === input.h || "number" === typeof input.h) && (undefined === input.s || "number" === typeof input.s) && (undefined === input.b || "number" === typeof input.b); const _io10 = input => (undefined === input.rs || "number" === typeof input.rs) && (undefined === input.gs || "number" === typeof input.gs) && (undefined === input.bs || "number" === typeof input.bs) && (undefined === input.rm || "number" === typeof input.rm) && (undefined === input.gm || "number" === typeof input.gm) && (undefined === input.bm || "number" === typeof input.bm) && (undefined === input.rh || "number" === typeof input.rh) && (undefined === input.gh || "number" === typeof input.gh) && (undefined === input.bh || "number" === typeof input.bh); const _io11 = 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); const _io12 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y); const _io13 = input => undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => Array.isArray(elem) && elem.every(elem => "number" === typeof elem)); const _io14 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem)) && (undefined === input.diarization || "boolean" === typeof input.diarization); const _ao0 = (input, _path, _exceptionable = true) => (undefined === input.id || "string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10877
10950
|
method: "typia.assert",
|
|
10878
10951
|
path: _path + ".id",
|
|
10879
10952
|
expected: "(string | undefined)",
|
|
@@ -10933,7 +11006,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
10933
11006
|
path: _path + ".audio",
|
|
10934
11007
|
expected: "(__type.o6 | undefined)",
|
|
10935
11008
|
value: input.audio
|
|
10936
|
-
}, _errorFactory)) &&
|
|
11009
|
+
}, _errorFactory)) && _ao13(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10937
11010
|
method: "typia.assert",
|
|
10938
11011
|
path: _path + ".audio",
|
|
10939
11012
|
expected: "(__type.o6 | undefined)",
|
|
@@ -10953,7 +11026,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
10953
11026
|
path: _path + ".transcribe",
|
|
10954
11027
|
expected: "(__type.o7 | undefined)",
|
|
10955
11028
|
value: input.transcribe
|
|
10956
|
-
}, _errorFactory)) &&
|
|
11029
|
+
}, _errorFactory)) && _ao14(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10957
11030
|
method: "typia.assert",
|
|
10958
11031
|
path: _path + ".transcribe",
|
|
10959
11032
|
expected: "(__type.o7 | undefined)",
|
|
@@ -11218,6 +11291,16 @@ function _assertDomainRecord(domain, input) {
|
|
|
11218
11291
|
path: _path + ".crop",
|
|
11219
11292
|
expected: "(RenderSceneCrop | undefined)",
|
|
11220
11293
|
value: input.crop
|
|
11294
|
+
}, _errorFactory)) && (undefined === input.focus || ("object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11295
|
+
method: "typia.assert",
|
|
11296
|
+
path: _path + ".focus",
|
|
11297
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
11298
|
+
value: input.focus
|
|
11299
|
+
}, _errorFactory)) && _ao12(input.focus, _path + ".focus", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11300
|
+
method: "typia.assert",
|
|
11301
|
+
path: _path + ".focus",
|
|
11302
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
11303
|
+
value: input.focus
|
|
11221
11304
|
}, _errorFactory)) && (undefined === input.orientation || "number" === typeof input.orientation || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11222
11305
|
method: "typia.assert",
|
|
11223
11306
|
path: _path + ".orientation",
|
|
@@ -11363,7 +11446,17 @@ function _assertDomainRecord(domain, input) {
|
|
|
11363
11446
|
path: _path + ".height",
|
|
11364
11447
|
expected: "(number | undefined)",
|
|
11365
11448
|
value: input.height
|
|
11366
|
-
}, _errorFactory)); const _ao12 = (input, _path, _exceptionable = true) => undefined === input.
|
|
11449
|
+
}, _errorFactory)); const _ao12 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11450
|
+
method: "typia.assert",
|
|
11451
|
+
path: _path + ".x",
|
|
11452
|
+
expected: "(number | undefined)",
|
|
11453
|
+
value: input.x
|
|
11454
|
+
}, _errorFactory)) && (undefined === input.y || "number" === typeof input.y || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11455
|
+
method: "typia.assert",
|
|
11456
|
+
path: _path + ".y",
|
|
11457
|
+
expected: "(number | undefined)",
|
|
11458
|
+
value: input.y
|
|
11459
|
+
}, _errorFactory)); const _ao13 = (input, _path, _exceptionable = true) => undefined === input.pan || (Array.isArray(input.pan) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11367
11460
|
method: "typia.assert",
|
|
11368
11461
|
path: _path + ".pan",
|
|
11369
11462
|
expected: "(Array<Array<number>> | undefined)",
|
|
@@ -11388,7 +11481,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
11388
11481
|
path: _path + ".pan",
|
|
11389
11482
|
expected: "(Array<Array<number>> | undefined)",
|
|
11390
11483
|
value: input.pan
|
|
11391
|
-
}, _errorFactory); const
|
|
11484
|
+
}, _errorFactory); const _ao14 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11392
11485
|
method: "typia.assert",
|
|
11393
11486
|
path: _path + ".language",
|
|
11394
11487
|
expected: "(string | undefined)",
|
|
@@ -12233,12 +12326,12 @@ function _assertDomainRecord(domain, input) {
|
|
|
12233
12326
|
if (undefined === value)
|
|
12234
12327
|
return true;
|
|
12235
12328
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io1(value);
|
|
12236
|
-
}); const _io1 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (null === input.input || undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && _io2(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.graphics || "string" === typeof input.graphics) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && _io4(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io7(input.video)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) &&
|
|
12329
|
+
}); const _io1 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (null === input.input || undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && _io2(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.graphics || "string" === typeof input.graphics) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && _io4(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io7(input.video)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io14(input.audio)) && (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) && _io15(input.transcribe)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io12(input.crop)) && (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io8(input.filters)) && (undefined === input.orientation || "number" === typeof input.orientation) && (undefined === input.rotate || "number" === typeof input.rotate) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced) && (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha); const _io2 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io3(input.video)) && (null === input.proxy || undefined === input.proxy || "string" === typeof input.proxy) && (null === input.proxyManifest || undefined === input.proxyManifest || "string" === typeof input.proxyManifest) && (null === input.proxyFile || undefined === input.proxyFile || "string" === typeof input.proxyFile) && (null === input.manifest || undefined === input.manifest || "string" === typeof input.manifest); const _io3 = input => (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced); const _io4 = input => Object.keys(input).every(key => {
|
|
12237
12330
|
const value = input[key];
|
|
12238
12331
|
if (undefined === value)
|
|
12239
12332
|
return true;
|
|
12240
12333
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io5(value);
|
|
12241
|
-
}); const _io5 = 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) && _io6(input.styleOverrides)); const _io6 = 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.lineSpacing || "string" === typeof input.lineSpacing) && (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); const _io7 = input => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io8(input.filters)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io12(input.crop)) && (undefined === input.orientation || "number" === typeof input.orientation) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced) && (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha); const _io8 = input => (undefined === input.eq || "object" === typeof input.eq && null !== input.eq && false === Array.isArray(input.eq) && _io9(input.eq)) && (undefined === input.hue || "object" === typeof input.hue && null !== input.hue && false === Array.isArray(input.hue) && _io10(input.hue)) && (undefined === input.colorbalance || "object" === typeof input.colorbalance && null !== input.colorbalance && false === Array.isArray(input.colorbalance) && _io11(input.colorbalance)); const _io9 = input => (undefined === input.brightness || "number" === typeof input.brightness) && (undefined === input.contrast || "number" === typeof input.contrast) && (undefined === input.gamma || "number" === typeof input.gamma) && (undefined === input.saturation || "number" === typeof input.saturation); const _io10 = input => (undefined === input.h || "number" === typeof input.h) && (undefined === input.s || "number" === typeof input.s) && (undefined === input.b || "number" === typeof input.b); const _io11 = input => (undefined === input.rs || "number" === typeof input.rs) && (undefined === input.gs || "number" === typeof input.gs) && (undefined === input.bs || "number" === typeof input.bs) && (undefined === input.rm || "number" === typeof input.rm) && (undefined === input.gm || "number" === typeof input.gm) && (undefined === input.bm || "number" === typeof input.bm) && (undefined === input.rh || "number" === typeof input.rh) && (undefined === input.gh || "number" === typeof input.gh) && (undefined === input.bh || "number" === typeof input.bh); const _io12 = 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); const _io13 = input => undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => Array.isArray(elem) && elem.every(elem => "number" === typeof elem)); const
|
|
12334
|
+
}); const _io5 = 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) && _io6(input.styleOverrides)); const _io6 = 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.lineSpacing || "string" === typeof input.lineSpacing) && (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); const _io7 = input => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io8(input.filters)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io12(input.crop)) && (undefined === input.focus || "object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) && _io13(input.focus)) && (undefined === input.orientation || "number" === typeof input.orientation) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced) && (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha); const _io8 = input => (undefined === input.eq || "object" === typeof input.eq && null !== input.eq && false === Array.isArray(input.eq) && _io9(input.eq)) && (undefined === input.hue || "object" === typeof input.hue && null !== input.hue && false === Array.isArray(input.hue) && _io10(input.hue)) && (undefined === input.colorbalance || "object" === typeof input.colorbalance && null !== input.colorbalance && false === Array.isArray(input.colorbalance) && _io11(input.colorbalance)); const _io9 = input => (undefined === input.brightness || "number" === typeof input.brightness) && (undefined === input.contrast || "number" === typeof input.contrast) && (undefined === input.gamma || "number" === typeof input.gamma) && (undefined === input.saturation || "number" === typeof input.saturation); const _io10 = input => (undefined === input.h || "number" === typeof input.h) && (undefined === input.s || "number" === typeof input.s) && (undefined === input.b || "number" === typeof input.b); const _io11 = input => (undefined === input.rs || "number" === typeof input.rs) && (undefined === input.gs || "number" === typeof input.gs) && (undefined === input.bs || "number" === typeof input.bs) && (undefined === input.rm || "number" === typeof input.rm) && (undefined === input.gm || "number" === typeof input.gm) && (undefined === input.bm || "number" === typeof input.bm) && (undefined === input.rh || "number" === typeof input.rh) && (undefined === input.gh || "number" === typeof input.gh) && (undefined === input.bh || "number" === typeof input.bh); const _io12 = 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); const _io13 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y); const _io14 = input => undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => Array.isArray(elem) && elem.every(elem => "number" === typeof elem)); const _io15 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem)) && (undefined === input.diarization || "boolean" === typeof input.diarization); const _ao0 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
12242
12335
|
const value = input[key];
|
|
12243
12336
|
if (undefined === value)
|
|
12244
12337
|
return true;
|
|
@@ -12313,7 +12406,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
12313
12406
|
path: _path + ".audio",
|
|
12314
12407
|
expected: "(__type.o6 | undefined)",
|
|
12315
12408
|
value: input.audio
|
|
12316
|
-
}, _errorFactory)) &&
|
|
12409
|
+
}, _errorFactory)) && _ao14(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12317
12410
|
method: "typia.assert",
|
|
12318
12411
|
path: _path + ".audio",
|
|
12319
12412
|
expected: "(__type.o6 | undefined)",
|
|
@@ -12333,7 +12426,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
12333
12426
|
path: _path + ".transcribe",
|
|
12334
12427
|
expected: "(__type.o7 | undefined)",
|
|
12335
12428
|
value: input.transcribe
|
|
12336
|
-
}, _errorFactory)) &&
|
|
12429
|
+
}, _errorFactory)) && _ao15(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12337
12430
|
method: "typia.assert",
|
|
12338
12431
|
path: _path + ".transcribe",
|
|
12339
12432
|
expected: "(__type.o7 | undefined)",
|
|
@@ -12598,6 +12691,16 @@ function _assertDomainRecord(domain, input) {
|
|
|
12598
12691
|
path: _path + ".crop",
|
|
12599
12692
|
expected: "(RenderSceneCrop | undefined)",
|
|
12600
12693
|
value: input.crop
|
|
12694
|
+
}, _errorFactory)) && (undefined === input.focus || ("object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12695
|
+
method: "typia.assert",
|
|
12696
|
+
path: _path + ".focus",
|
|
12697
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
12698
|
+
value: input.focus
|
|
12699
|
+
}, _errorFactory)) && _ao13(input.focus, _path + ".focus", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12700
|
+
method: "typia.assert",
|
|
12701
|
+
path: _path + ".focus",
|
|
12702
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
12703
|
+
value: input.focus
|
|
12601
12704
|
}, _errorFactory)) && (undefined === input.orientation || "number" === typeof input.orientation || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12602
12705
|
method: "typia.assert",
|
|
12603
12706
|
path: _path + ".orientation",
|
|
@@ -12743,7 +12846,17 @@ function _assertDomainRecord(domain, input) {
|
|
|
12743
12846
|
path: _path + ".height",
|
|
12744
12847
|
expected: "(number | undefined)",
|
|
12745
12848
|
value: input.height
|
|
12746
|
-
}, _errorFactory)); const _ao13 = (input, _path, _exceptionable = true) => undefined === input.
|
|
12849
|
+
}, _errorFactory)); const _ao13 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12850
|
+
method: "typia.assert",
|
|
12851
|
+
path: _path + ".x",
|
|
12852
|
+
expected: "(number | undefined)",
|
|
12853
|
+
value: input.x
|
|
12854
|
+
}, _errorFactory)) && (undefined === input.y || "number" === typeof input.y || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12855
|
+
method: "typia.assert",
|
|
12856
|
+
path: _path + ".y",
|
|
12857
|
+
expected: "(number | undefined)",
|
|
12858
|
+
value: input.y
|
|
12859
|
+
}, _errorFactory)); const _ao14 = (input, _path, _exceptionable = true) => undefined === input.pan || (Array.isArray(input.pan) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12747
12860
|
method: "typia.assert",
|
|
12748
12861
|
path: _path + ".pan",
|
|
12749
12862
|
expected: "(Array<Array<number>> | undefined)",
|
|
@@ -12768,7 +12881,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
12768
12881
|
path: _path + ".pan",
|
|
12769
12882
|
expected: "(Array<Array<number>> | undefined)",
|
|
12770
12883
|
value: input.pan
|
|
12771
|
-
}, _errorFactory); const
|
|
12884
|
+
}, _errorFactory); const _ao15 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12772
12885
|
method: "typia.assert",
|
|
12773
12886
|
path: _path + ".language",
|
|
12774
12887
|
expected: "(string | undefined)",
|
|
@@ -14832,46 +14945,46 @@ function _assertDomainRecord(domain, input) {
|
|
|
14832
14945
|
}; })()(input);
|
|
14833
14946
|
}
|
|
14834
14947
|
case ":publish": {
|
|
14835
|
-
return (() => { const _io0 = input => (null === input.type || undefined === input.type) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset) && (undefined === input.connection || "string" === typeof input.connection) && (undefined === input.render || "object" === typeof input.render && null !== input.render && _io1(input.render)) && true && true && true && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error &&
|
|
14948
|
+
return (() => { const _io0 = input => (null === input.type || undefined === input.type) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset) && (undefined === input.connection || "string" === typeof input.connection) && (undefined === input.render || "object" === typeof input.render && null !== input.render && _io1(input.render)) && true && true && true && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io24(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io25(elem))); const _io1 = input => (undefined === input.preset || "string" === typeof input.preset) && "string" === typeof input.type && (undefined === input.scene || "object" === typeof input.scene && null !== input.scene && false === Array.isArray(input.scene) && _io2(input.scene)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io17(input.profile)); const _io2 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (null === input.input || undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && _io3(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.graphics || "string" === typeof input.graphics) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && _io5(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io8(input.video)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io15(input.audio)) && (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) && _io16(input.transcribe)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io13(input.crop)) && (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io9(input.filters)) && (undefined === input.orientation || "number" === typeof input.orientation) && (undefined === input.rotate || "number" === typeof input.rotate) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced) && (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha); const _io3 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io4(input.video)) && (null === input.proxy || undefined === input.proxy || "string" === typeof input.proxy) && (null === input.proxyManifest || undefined === input.proxyManifest || "string" === typeof input.proxyManifest) && (null === input.proxyFile || undefined === input.proxyFile || "string" === typeof input.proxyFile) && (null === input.manifest || undefined === input.manifest || "string" === typeof input.manifest); const _io4 = input => (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced); const _io5 = input => Object.keys(input).every(key => {
|
|
14836
14949
|
const value = input[key];
|
|
14837
14950
|
if (undefined === value)
|
|
14838
14951
|
return true;
|
|
14839
14952
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io6(value);
|
|
14840
|
-
}); const _io6 = 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) && _io7(input.styleOverrides)); const _io7 = 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.lineSpacing || "string" === typeof input.lineSpacing) && (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); const _io8 = input => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io9(input.filters)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io13(input.crop)) && (undefined === input.orientation || "number" === typeof input.orientation) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced) && (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha); const _io9 = input => (undefined === input.eq || "object" === typeof input.eq && null !== input.eq && false === Array.isArray(input.eq) && _io10(input.eq)) && (undefined === input.hue || "object" === typeof input.hue && null !== input.hue && false === Array.isArray(input.hue) && _io11(input.hue)) && (undefined === input.colorbalance || "object" === typeof input.colorbalance && null !== input.colorbalance && false === Array.isArray(input.colorbalance) && _io12(input.colorbalance)); const _io10 = input => (undefined === input.brightness || "number" === typeof input.brightness) && (undefined === input.contrast || "number" === typeof input.contrast) && (undefined === input.gamma || "number" === typeof input.gamma) && (undefined === input.saturation || "number" === typeof input.saturation); const _io11 = input => (undefined === input.h || "number" === typeof input.h) && (undefined === input.s || "number" === typeof input.s) && (undefined === input.b || "number" === typeof input.b); const _io12 = input => (undefined === input.rs || "number" === typeof input.rs) && (undefined === input.gs || "number" === typeof input.gs) && (undefined === input.bs || "number" === typeof input.bs) && (undefined === input.rm || "number" === typeof input.rm) && (undefined === input.gm || "number" === typeof input.gm) && (undefined === input.bm || "number" === typeof input.bm) && (undefined === input.rh || "number" === typeof input.rh) && (undefined === input.gh || "number" === typeof input.gh) && (undefined === input.bh || "number" === typeof input.bh); const _io13 = 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); const _io14 = input => undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => Array.isArray(elem) && elem.every(elem => "number" === typeof elem)); const
|
|
14953
|
+
}); const _io6 = 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) && _io7(input.styleOverrides)); const _io7 = 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.lineSpacing || "string" === typeof input.lineSpacing) && (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); const _io8 = input => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io9(input.filters)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io13(input.crop)) && (undefined === input.focus || "object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) && _io14(input.focus)) && (undefined === input.orientation || "number" === typeof input.orientation) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced) && (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha); const _io9 = input => (undefined === input.eq || "object" === typeof input.eq && null !== input.eq && false === Array.isArray(input.eq) && _io10(input.eq)) && (undefined === input.hue || "object" === typeof input.hue && null !== input.hue && false === Array.isArray(input.hue) && _io11(input.hue)) && (undefined === input.colorbalance || "object" === typeof input.colorbalance && null !== input.colorbalance && false === Array.isArray(input.colorbalance) && _io12(input.colorbalance)); const _io10 = input => (undefined === input.brightness || "number" === typeof input.brightness) && (undefined === input.contrast || "number" === typeof input.contrast) && (undefined === input.gamma || "number" === typeof input.gamma) && (undefined === input.saturation || "number" === typeof input.saturation); const _io11 = input => (undefined === input.h || "number" === typeof input.h) && (undefined === input.s || "number" === typeof input.s) && (undefined === input.b || "number" === typeof input.b); const _io12 = input => (undefined === input.rs || "number" === typeof input.rs) && (undefined === input.gs || "number" === typeof input.gs) && (undefined === input.bs || "number" === typeof input.bs) && (undefined === input.rm || "number" === typeof input.rm) && (undefined === input.gm || "number" === typeof input.gm) && (undefined === input.bm || "number" === typeof input.bm) && (undefined === input.rh || "number" === typeof input.rh) && (undefined === input.gh || "number" === typeof input.gh) && (undefined === input.bh || "number" === typeof input.bh); const _io13 = 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); const _io14 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y); const _io15 = input => undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => Array.isArray(elem) && elem.every(elem => "number" === typeof elem)); const _io16 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem)) && (undefined === input.diarization || "boolean" === typeof input.diarization); const _io17 = input => "string" === typeof input.format && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && _io18(input.transcribe)) && (undefined === input.translate || "object" === typeof input.translate && null !== input.translate && _io19(input.translate)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io20(input.audio)) && true && (undefined === input.pick || Array.isArray(input.pick) && input.pick.every(elem => "string" === typeof elem)) && (null !== input.subtitle && (undefined === input.subtitle || "string" === typeof input.subtitle || "object" === typeof input.subtitle && null !== input.subtitle && false === Array.isArray(input.subtitle) && _io21(input.subtitle))); const _io18 = input => "string" === typeof input.engine; const _io19 = input => "string" === typeof input.language; const _io20 = input => (undefined === input.codec || "string" === typeof input.codec) && (undefined === input.pan || "string" === typeof input.pan) && (undefined === input.samplerate || "number" === typeof input.samplerate) && (undefined === input.split || "boolean" === typeof input.split); const _io21 = input => (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.style || "string" === typeof input.style) && (undefined === input.ccconverter || "object" === typeof input.ccconverter && null !== input.ccconverter && false === Array.isArray(input.ccconverter) && _io22(input.ccconverter)) && (undefined === input.ass || "object" === typeof input.ass && null !== input.ass && false === Array.isArray(input.ass) && _io23(input.ass)); const _io22 = input => undefined === input.preset || "string" === typeof input.preset; const _io23 = input => (undefined === input.futureWordWrapping || "boolean" === typeof input.futureWordWrapping) && (undefined === input.scaledBorderAndShadow || "boolean" === typeof input.scaledBorderAndShadow) && (undefined === input.enableUnsafeLineSpacingHack || "boolean" === typeof input.enableUnsafeLineSpacingHack); const _io24 = input => "string" === typeof input.method; const _io25 = input => "number" === typeof input.level && "string" === typeof input.code && "string" === typeof input.msg; const _io26 = input => (undefined === input.type || "facebook" === input.type) && (undefined === input.pageId || "string" === typeof input.pageId) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset) && (undefined === input.connection || "string" === typeof input.connection) && (undefined === input.render || "object" === typeof input.render && null !== input.render && _io1(input.render)) && true && true && true && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io24(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io25(elem))); const _io27 = input => (undefined === input.type || "file" === input.type) && (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && (undefined === input.renders || "object" === typeof input.renders && null !== input.renders && false === Array.isArray(input.renders) && _io28(input.renders)) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io32(input.draft)) && (undefined === input.remote || "object" === typeof input.remote && null !== input.remote && false === Array.isArray(input.remote) && _io33(input.remote)) && (undefined === input.published || "object" === typeof input.published && null !== input.published && _io36(input.published)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset) && (undefined === input.connection || "string" === typeof input.connection) && (undefined === input.render || "object" === typeof input.render && null !== input.render && _io1(input.render)) && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io24(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io25(elem))); const _io28 = input => Object.keys(input).every(key => {
|
|
14841
14954
|
const value = input[key];
|
|
14842
14955
|
if (undefined === value)
|
|
14843
14956
|
return true;
|
|
14844
14957
|
return null !== value && undefined !== value && ("string" === typeof value || "object" === typeof value && null !== value && _iu0(value));
|
|
14845
|
-
}); const
|
|
14958
|
+
}); const _io29 = input => (undefined === input.name || "string" === typeof input.name) && "string" === typeof input.path && (undefined === input.collisionStrategy || "overwrite" === input.collisionStrategy || "skip" === input.collisionStrategy) && (undefined === input.ignoreEmptyScene || "boolean" === typeof input.ignoreEmptyScene) && (undefined === input.preset || "string" === typeof input.preset) && "string" === typeof input.type && (undefined === input.scene || "object" === typeof input.scene && null !== input.scene && false === Array.isArray(input.scene) && _io2(input.scene)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io17(input.profile)); const _io30 = input => "object" === typeof input.__context && null !== input.__context && _io31(input.__context) && ("object" === typeof input.__returnValue && null !== input.__returnValue && _io29(input.__returnValue)); const _io31 = input => "object" === typeof input.publish && null !== input.publish && false === Array.isArray(input.publish) && _io27(input.publish) && "string" === typeof input.directory && "string" === typeof input.name; const _io32 = input => (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename); const _io33 = input => (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && (undefined === input.renders || "object" === typeof input.renders && null !== input.renders && false === Array.isArray(input.renders) && _io34(input.renders)); const _io34 = input => Object.keys(input).every(key => {
|
|
14846
14959
|
const value = input[key];
|
|
14847
14960
|
if (undefined === value)
|
|
14848
14961
|
return true;
|
|
14849
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
14850
|
-
}); const
|
|
14962
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io35(value);
|
|
14963
|
+
}); const _io35 = input => (undefined === input.path || "string" === typeof input.path) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io25(elem))) && true && (undefined === input.size || "number" === typeof input.size) && (undefined === input.hash || "string" === typeof input.hash) && (undefined === input.source || "string" === typeof input.source); const _io36 = input => (undefined === input.directory || "string" === typeof input.directory) && "string" === typeof input.filename; const _io37 = input => (undefined === input.type || "file" === input.type) && (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io32(input.draft)) && (undefined === input.remote || "object" === typeof input.remote && null !== input.remote && _io38(input.remote)) && (undefined === input.published || "object" === typeof input.published && null !== input.published && _io36(input.published)) && (null !== input.renders && undefined === input.renders) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset) && (undefined === input.connection || "string" === typeof input.connection) && (undefined === input.render || "object" === typeof input.render && null !== input.render && _io1(input.render)) && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io24(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io25(elem))); const _io38 = input => (undefined === input.id || "string" === typeof input.id) && "string" === typeof input.path && "string" === typeof input.filename && (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.subtitle || "object" === typeof input.subtitle && null !== input.subtitle && _io39(input.subtitle)) && (undefined === input.metafile || "object" === typeof input.metafile && null !== input.metafile && _io40(input.metafile)) && Object.keys(input).every(key => {
|
|
14851
14964
|
if (["id", "path", "filename", "directory", "subtitle", "metafile"].some(prop => key === prop))
|
|
14852
14965
|
return true;
|
|
14853
14966
|
const value = input[key];
|
|
14854
14967
|
if (undefined === value)
|
|
14855
14968
|
return true;
|
|
14856
14969
|
return true;
|
|
14857
|
-
}); const
|
|
14970
|
+
}); const _io39 = input => "string" === typeof input.path; const _io40 = input => "string" === typeof input.path; const _io41 = input => (undefined === input.type || "youtube" === input.type) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io42(input.draft)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset) && (undefined === input.connection || "string" === typeof input.connection) && (undefined === input.render || "object" === typeof input.render && null !== input.render && _io1(input.render)) && true && true && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io24(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io25(elem))); const _io42 = input => undefined === input.snippet || "object" === typeof input.snippet && null !== input.snippet && false === Array.isArray(input.snippet) && _io43(input.snippet); const _io43 = input => (undefined === input.title || "string" === typeof input.title) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.description || "string" === typeof input.description); const _iu0 = input => (() => {
|
|
14858
14971
|
if (undefined !== input.path)
|
|
14859
|
-
return _io28(input);
|
|
14860
|
-
else if (undefined !== input.__context)
|
|
14861
14972
|
return _io29(input);
|
|
14973
|
+
else if (undefined !== input.__context)
|
|
14974
|
+
return _io30(input);
|
|
14862
14975
|
else
|
|
14863
14976
|
return false;
|
|
14864
14977
|
})(); const _iu1 = input => (() => {
|
|
14865
14978
|
if (_io0(input))
|
|
14866
14979
|
return _io0(input);
|
|
14867
|
-
if (_io25(input))
|
|
14868
|
-
return _io25(input);
|
|
14869
|
-
if (_io36(input))
|
|
14870
|
-
return _io36(input);
|
|
14871
14980
|
if (_io26(input))
|
|
14872
14981
|
return _io26(input);
|
|
14873
|
-
if (
|
|
14874
|
-
return
|
|
14982
|
+
if (_io37(input))
|
|
14983
|
+
return _io37(input);
|
|
14984
|
+
if (_io27(input))
|
|
14985
|
+
return _io27(input);
|
|
14986
|
+
if (_io41(input))
|
|
14987
|
+
return _io41(input);
|
|
14875
14988
|
return false;
|
|
14876
14989
|
})(); const _ao0 = (input, _path, _exceptionable = true) => (null === input.type || undefined === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14877
14990
|
method: "typia.assert",
|
|
@@ -14903,7 +15016,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
14903
15016
|
path: _path + ".error",
|
|
14904
15017
|
expected: "(__type.o13 | null | undefined)",
|
|
14905
15018
|
value: input.error
|
|
14906
|
-
}, _errorFactory)) &&
|
|
15019
|
+
}, _errorFactory)) && _ao24(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14907
15020
|
method: "typia.assert",
|
|
14908
15021
|
path: _path + ".error",
|
|
14909
15022
|
expected: "(__type.o13 | null | undefined)",
|
|
@@ -14918,7 +15031,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
14918
15031
|
path: _path + ".messages[" + _index12 + "]",
|
|
14919
15032
|
expected: "Message",
|
|
14920
15033
|
value: elem
|
|
14921
|
-
}, _errorFactory)) &&
|
|
15034
|
+
}, _errorFactory)) && _ao25(elem, _path + ".messages[" + _index12 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14922
15035
|
method: "typia.assert",
|
|
14923
15036
|
path: _path + ".messages[" + _index12 + "]",
|
|
14924
15037
|
expected: "Message",
|
|
@@ -14953,7 +15066,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
14953
15066
|
path: _path + ".profile",
|
|
14954
15067
|
expected: "(RenderProfileObject | undefined)",
|
|
14955
15068
|
value: input.profile
|
|
14956
|
-
}, _errorFactory)) &&
|
|
15069
|
+
}, _errorFactory)) && _ao17(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14957
15070
|
method: "typia.assert",
|
|
14958
15071
|
path: _path + ".profile",
|
|
14959
15072
|
expected: "(RenderProfileObject | undefined)",
|
|
@@ -15018,7 +15131,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15018
15131
|
path: _path + ".audio",
|
|
15019
15132
|
expected: "(__type.o6 | undefined)",
|
|
15020
15133
|
value: input.audio
|
|
15021
|
-
}, _errorFactory)) &&
|
|
15134
|
+
}, _errorFactory)) && _ao15(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15022
15135
|
method: "typia.assert",
|
|
15023
15136
|
path: _path + ".audio",
|
|
15024
15137
|
expected: "(__type.o6 | undefined)",
|
|
@@ -15038,7 +15151,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15038
15151
|
path: _path + ".transcribe",
|
|
15039
15152
|
expected: "(__type.o7 | undefined)",
|
|
15040
15153
|
value: input.transcribe
|
|
15041
|
-
}, _errorFactory)) &&
|
|
15154
|
+
}, _errorFactory)) && _ao16(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15042
15155
|
method: "typia.assert",
|
|
15043
15156
|
path: _path + ".transcribe",
|
|
15044
15157
|
expected: "(__type.o7 | undefined)",
|
|
@@ -15303,6 +15416,16 @@ function _assertDomainRecord(domain, input) {
|
|
|
15303
15416
|
path: _path + ".crop",
|
|
15304
15417
|
expected: "(RenderSceneCrop | undefined)",
|
|
15305
15418
|
value: input.crop
|
|
15419
|
+
}, _errorFactory)) && (undefined === input.focus || ("object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15420
|
+
method: "typia.assert",
|
|
15421
|
+
path: _path + ".focus",
|
|
15422
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
15423
|
+
value: input.focus
|
|
15424
|
+
}, _errorFactory)) && _ao14(input.focus, _path + ".focus", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15425
|
+
method: "typia.assert",
|
|
15426
|
+
path: _path + ".focus",
|
|
15427
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
15428
|
+
value: input.focus
|
|
15306
15429
|
}, _errorFactory)) && (undefined === input.orientation || "number" === typeof input.orientation || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15307
15430
|
method: "typia.assert",
|
|
15308
15431
|
path: _path + ".orientation",
|
|
@@ -15448,7 +15571,17 @@ function _assertDomainRecord(domain, input) {
|
|
|
15448
15571
|
path: _path + ".height",
|
|
15449
15572
|
expected: "(number | undefined)",
|
|
15450
15573
|
value: input.height
|
|
15451
|
-
}, _errorFactory)); const _ao14 = (input, _path, _exceptionable = true) => undefined === input.
|
|
15574
|
+
}, _errorFactory)); const _ao14 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15575
|
+
method: "typia.assert",
|
|
15576
|
+
path: _path + ".x",
|
|
15577
|
+
expected: "(number | undefined)",
|
|
15578
|
+
value: input.x
|
|
15579
|
+
}, _errorFactory)) && (undefined === input.y || "number" === typeof input.y || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15580
|
+
method: "typia.assert",
|
|
15581
|
+
path: _path + ".y",
|
|
15582
|
+
expected: "(number | undefined)",
|
|
15583
|
+
value: input.y
|
|
15584
|
+
}, _errorFactory)); const _ao15 = (input, _path, _exceptionable = true) => undefined === input.pan || (Array.isArray(input.pan) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15452
15585
|
method: "typia.assert",
|
|
15453
15586
|
path: _path + ".pan",
|
|
15454
15587
|
expected: "(Array<Array<number>> | undefined)",
|
|
@@ -15473,7 +15606,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15473
15606
|
path: _path + ".pan",
|
|
15474
15607
|
expected: "(Array<Array<number>> | undefined)",
|
|
15475
15608
|
value: input.pan
|
|
15476
|
-
}, _errorFactory); const
|
|
15609
|
+
}, _errorFactory); const _ao16 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15477
15610
|
method: "typia.assert",
|
|
15478
15611
|
path: _path + ".language",
|
|
15479
15612
|
expected: "(string | undefined)",
|
|
@@ -15498,7 +15631,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15498
15631
|
path: _path + ".diarization",
|
|
15499
15632
|
expected: "(boolean | undefined)",
|
|
15500
15633
|
value: input.diarization
|
|
15501
|
-
}, _errorFactory)); const
|
|
15634
|
+
}, _errorFactory)); const _ao17 = (input, _path, _exceptionable = true) => ("string" === typeof input.format || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15502
15635
|
method: "typia.assert",
|
|
15503
15636
|
path: _path + ".format",
|
|
15504
15637
|
expected: "string",
|
|
@@ -15508,7 +15641,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15508
15641
|
path: _path + ".transcribe",
|
|
15509
15642
|
expected: "(__type.o8 | undefined)",
|
|
15510
15643
|
value: input.transcribe
|
|
15511
|
-
}, _errorFactory)) &&
|
|
15644
|
+
}, _errorFactory)) && _ao18(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15512
15645
|
method: "typia.assert",
|
|
15513
15646
|
path: _path + ".transcribe",
|
|
15514
15647
|
expected: "(__type.o8 | undefined)",
|
|
@@ -15518,7 +15651,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15518
15651
|
path: _path + ".translate",
|
|
15519
15652
|
expected: "(__type.o9 | undefined)",
|
|
15520
15653
|
value: input.translate
|
|
15521
|
-
}, _errorFactory)) &&
|
|
15654
|
+
}, _errorFactory)) && _ao19(input.translate, _path + ".translate", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15522
15655
|
method: "typia.assert",
|
|
15523
15656
|
path: _path + ".translate",
|
|
15524
15657
|
expected: "(__type.o9 | undefined)",
|
|
@@ -15528,7 +15661,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15528
15661
|
path: _path + ".audio",
|
|
15529
15662
|
expected: "(__type.o10 | undefined)",
|
|
15530
15663
|
value: input.audio
|
|
15531
|
-
}, _errorFactory)) &&
|
|
15664
|
+
}, _errorFactory)) && _ao20(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15532
15665
|
method: "typia.assert",
|
|
15533
15666
|
path: _path + ".audio",
|
|
15534
15667
|
expected: "(__type.o10 | undefined)",
|
|
@@ -15558,22 +15691,22 @@ function _assertDomainRecord(domain, input) {
|
|
|
15558
15691
|
path: _path + ".subtitle",
|
|
15559
15692
|
expected: "(SubtitleProfile | string | undefined)",
|
|
15560
15693
|
value: input.subtitle
|
|
15561
|
-
}, _errorFactory)) &&
|
|
15694
|
+
}, _errorFactory)) && _ao21(input.subtitle, _path + ".subtitle", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15562
15695
|
method: "typia.assert",
|
|
15563
15696
|
path: _path + ".subtitle",
|
|
15564
15697
|
expected: "(SubtitleProfile | string | undefined)",
|
|
15565
15698
|
value: input.subtitle
|
|
15566
|
-
}, _errorFactory))); const
|
|
15699
|
+
}, _errorFactory))); const _ao18 = (input, _path, _exceptionable = true) => "string" === typeof input.engine || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15567
15700
|
method: "typia.assert",
|
|
15568
15701
|
path: _path + ".engine",
|
|
15569
15702
|
expected: "string",
|
|
15570
15703
|
value: input.engine
|
|
15571
|
-
}, _errorFactory); const
|
|
15704
|
+
}, _errorFactory); const _ao19 = (input, _path, _exceptionable = true) => "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15572
15705
|
method: "typia.assert",
|
|
15573
15706
|
path: _path + ".language",
|
|
15574
15707
|
expected: "string",
|
|
15575
15708
|
value: input.language
|
|
15576
|
-
}, _errorFactory); const
|
|
15709
|
+
}, _errorFactory); const _ao20 = (input, _path, _exceptionable = true) => (undefined === input.codec || "string" === typeof input.codec || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15577
15710
|
method: "typia.assert",
|
|
15578
15711
|
path: _path + ".codec",
|
|
15579
15712
|
expected: "(string | undefined)",
|
|
@@ -15593,7 +15726,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15593
15726
|
path: _path + ".split",
|
|
15594
15727
|
expected: "(boolean | undefined)",
|
|
15595
15728
|
value: input.split
|
|
15596
|
-
}, _errorFactory)); const
|
|
15729
|
+
}, _errorFactory)); const _ao21 = (input, _path, _exceptionable = true) => (undefined === input.lang || "string" === typeof input.lang || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15597
15730
|
method: "typia.assert",
|
|
15598
15731
|
path: _path + ".lang",
|
|
15599
15732
|
expected: "(string | undefined)",
|
|
@@ -15608,7 +15741,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15608
15741
|
path: _path + ".ccconverter",
|
|
15609
15742
|
expected: "(__type.o11 | undefined)",
|
|
15610
15743
|
value: input.ccconverter
|
|
15611
|
-
}, _errorFactory)) &&
|
|
15744
|
+
}, _errorFactory)) && _ao22(input.ccconverter, _path + ".ccconverter", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15612
15745
|
method: "typia.assert",
|
|
15613
15746
|
path: _path + ".ccconverter",
|
|
15614
15747
|
expected: "(__type.o11 | undefined)",
|
|
@@ -15618,17 +15751,17 @@ function _assertDomainRecord(domain, input) {
|
|
|
15618
15751
|
path: _path + ".ass",
|
|
15619
15752
|
expected: "(__type.o12 | undefined)",
|
|
15620
15753
|
value: input.ass
|
|
15621
|
-
}, _errorFactory)) &&
|
|
15754
|
+
}, _errorFactory)) && _ao23(input.ass, _path + ".ass", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15622
15755
|
method: "typia.assert",
|
|
15623
15756
|
path: _path + ".ass",
|
|
15624
15757
|
expected: "(__type.o12 | undefined)",
|
|
15625
15758
|
value: input.ass
|
|
15626
|
-
}, _errorFactory)); const
|
|
15759
|
+
}, _errorFactory)); const _ao22 = (input, _path, _exceptionable = true) => undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15627
15760
|
method: "typia.assert",
|
|
15628
15761
|
path: _path + ".preset",
|
|
15629
15762
|
expected: "(string | undefined)",
|
|
15630
15763
|
value: input.preset
|
|
15631
|
-
}, _errorFactory); const
|
|
15764
|
+
}, _errorFactory); const _ao23 = (input, _path, _exceptionable = true) => (undefined === input.futureWordWrapping || "boolean" === typeof input.futureWordWrapping || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15632
15765
|
method: "typia.assert",
|
|
15633
15766
|
path: _path + ".futureWordWrapping",
|
|
15634
15767
|
expected: "(boolean | undefined)",
|
|
@@ -15643,12 +15776,12 @@ function _assertDomainRecord(domain, input) {
|
|
|
15643
15776
|
path: _path + ".enableUnsafeLineSpacingHack",
|
|
15644
15777
|
expected: "(boolean | undefined)",
|
|
15645
15778
|
value: input.enableUnsafeLineSpacingHack
|
|
15646
|
-
}, _errorFactory)); const
|
|
15779
|
+
}, _errorFactory)); const _ao24 = (input, _path, _exceptionable = true) => "string" === typeof input.method || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15647
15780
|
method: "typia.assert",
|
|
15648
15781
|
path: _path + ".method",
|
|
15649
15782
|
expected: "string",
|
|
15650
15783
|
value: input.method
|
|
15651
|
-
}, _errorFactory); const
|
|
15784
|
+
}, _errorFactory); const _ao25 = (input, _path, _exceptionable = true) => ("number" === typeof input.level || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15652
15785
|
method: "typia.assert",
|
|
15653
15786
|
path: _path + ".level",
|
|
15654
15787
|
expected: "number",
|
|
@@ -15663,7 +15796,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15663
15796
|
path: _path + ".msg",
|
|
15664
15797
|
expected: "string",
|
|
15665
15798
|
value: input.msg
|
|
15666
|
-
}, _errorFactory)); const
|
|
15799
|
+
}, _errorFactory)); const _ao26 = (input, _path, _exceptionable = true) => (undefined === input.type || "facebook" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15667
15800
|
method: "typia.assert",
|
|
15668
15801
|
path: _path + ".type",
|
|
15669
15802
|
expected: "(\"facebook\" | undefined)",
|
|
@@ -15698,7 +15831,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15698
15831
|
path: _path + ".error",
|
|
15699
15832
|
expected: "(__type.o13 | null | undefined)",
|
|
15700
15833
|
value: input.error
|
|
15701
|
-
}, _errorFactory)) &&
|
|
15834
|
+
}, _errorFactory)) && _ao24(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15702
15835
|
method: "typia.assert",
|
|
15703
15836
|
path: _path + ".error",
|
|
15704
15837
|
expected: "(__type.o13 | null | undefined)",
|
|
@@ -15713,7 +15846,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15713
15846
|
path: _path + ".messages[" + _index17 + "]",
|
|
15714
15847
|
expected: "Message",
|
|
15715
15848
|
value: elem
|
|
15716
|
-
}, _errorFactory)) &&
|
|
15849
|
+
}, _errorFactory)) && _ao25(elem, _path + ".messages[" + _index17 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15717
15850
|
method: "typia.assert",
|
|
15718
15851
|
path: _path + ".messages[" + _index17 + "]",
|
|
15719
15852
|
expected: "Message",
|
|
@@ -15723,7 +15856,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15723
15856
|
path: _path + ".messages",
|
|
15724
15857
|
expected: "(Array<Message> | undefined)",
|
|
15725
15858
|
value: input.messages
|
|
15726
|
-
}, _errorFactory)); const
|
|
15859
|
+
}, _errorFactory)); const _ao27 = (input, _path, _exceptionable = true) => (undefined === input.type || "file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15727
15860
|
method: "typia.assert",
|
|
15728
15861
|
path: _path + ".type",
|
|
15729
15862
|
expected: "(\"file\" | undefined)",
|
|
@@ -15743,7 +15876,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15743
15876
|
path: _path + ".renders",
|
|
15744
15877
|
expected: "(Record<string, FilePublishRender> | undefined)",
|
|
15745
15878
|
value: input.renders
|
|
15746
|
-
}, _errorFactory)) &&
|
|
15879
|
+
}, _errorFactory)) && _ao28(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15747
15880
|
method: "typia.assert",
|
|
15748
15881
|
path: _path + ".renders",
|
|
15749
15882
|
expected: "(Record<string, FilePublishRender> | undefined)",
|
|
@@ -15753,7 +15886,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15753
15886
|
path: _path + ".draft",
|
|
15754
15887
|
expected: "(FilePublishDraft | undefined)",
|
|
15755
15888
|
value: input.draft
|
|
15756
|
-
}, _errorFactory)) &&
|
|
15889
|
+
}, _errorFactory)) && _ao32(input.draft, _path + ".draft", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15757
15890
|
method: "typia.assert",
|
|
15758
15891
|
path: _path + ".draft",
|
|
15759
15892
|
expected: "(FilePublishDraft | undefined)",
|
|
@@ -15763,7 +15896,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15763
15896
|
path: _path + ".remote",
|
|
15764
15897
|
expected: "(FilePublishRemote | undefined)",
|
|
15765
15898
|
value: input.remote
|
|
15766
|
-
}, _errorFactory)) &&
|
|
15899
|
+
}, _errorFactory)) && _ao33(input.remote, _path + ".remote", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15767
15900
|
method: "typia.assert",
|
|
15768
15901
|
path: _path + ".remote",
|
|
15769
15902
|
expected: "(FilePublishRemote | undefined)",
|
|
@@ -15773,7 +15906,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15773
15906
|
path: _path + ".published",
|
|
15774
15907
|
expected: "(FilePublishPublished | undefined)",
|
|
15775
15908
|
value: input.published
|
|
15776
|
-
}, _errorFactory)) &&
|
|
15909
|
+
}, _errorFactory)) && _ao36(input.published, _path + ".published", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15777
15910
|
method: "typia.assert",
|
|
15778
15911
|
path: _path + ".published",
|
|
15779
15912
|
expected: "(FilePublishPublished | undefined)",
|
|
@@ -15803,7 +15936,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15803
15936
|
path: _path + ".error",
|
|
15804
15937
|
expected: "(__type.o13 | null | undefined)",
|
|
15805
15938
|
value: input.error
|
|
15806
|
-
}, _errorFactory)) &&
|
|
15939
|
+
}, _errorFactory)) && _ao24(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15807
15940
|
method: "typia.assert",
|
|
15808
15941
|
path: _path + ".error",
|
|
15809
15942
|
expected: "(__type.o13 | null | undefined)",
|
|
@@ -15818,7 +15951,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15818
15951
|
path: _path + ".messages[" + _index18 + "]",
|
|
15819
15952
|
expected: "Message",
|
|
15820
15953
|
value: elem
|
|
15821
|
-
}, _errorFactory)) &&
|
|
15954
|
+
}, _errorFactory)) && _ao25(elem, _path + ".messages[" + _index18 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15822
15955
|
method: "typia.assert",
|
|
15823
15956
|
path: _path + ".messages[" + _index18 + "]",
|
|
15824
15957
|
expected: "Message",
|
|
@@ -15828,7 +15961,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15828
15961
|
path: _path + ".messages",
|
|
15829
15962
|
expected: "(Array<Message> | undefined)",
|
|
15830
15963
|
value: input.messages
|
|
15831
|
-
}, _errorFactory)); const
|
|
15964
|
+
}, _errorFactory)); const _ao28 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
15832
15965
|
const value = input[key];
|
|
15833
15966
|
if (undefined === value)
|
|
15834
15967
|
return true;
|
|
@@ -15853,7 +15986,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15853
15986
|
expected: "(ResolvedFilePublishRender | __type.o14 | string)",
|
|
15854
15987
|
value: value
|
|
15855
15988
|
}, _errorFactory));
|
|
15856
|
-
}); const
|
|
15989
|
+
}); const _ao29 = (input, _path, _exceptionable = true) => (undefined === input.name || "string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15857
15990
|
method: "typia.assert",
|
|
15858
15991
|
path: _path + ".name",
|
|
15859
15992
|
expected: "(string | undefined)",
|
|
@@ -15898,17 +16031,17 @@ function _assertDomainRecord(domain, input) {
|
|
|
15898
16031
|
path: _path + ".profile",
|
|
15899
16032
|
expected: "(RenderProfileObject | undefined)",
|
|
15900
16033
|
value: input.profile
|
|
15901
|
-
}, _errorFactory)) &&
|
|
16034
|
+
}, _errorFactory)) && _ao17(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15902
16035
|
method: "typia.assert",
|
|
15903
16036
|
path: _path + ".profile",
|
|
15904
16037
|
expected: "(RenderProfileObject | undefined)",
|
|
15905
16038
|
value: input.profile
|
|
15906
|
-
}, _errorFactory)); const
|
|
16039
|
+
}, _errorFactory)); const _ao30 = (input, _path, _exceptionable = true) => (("object" === typeof input.__context && null !== input.__context || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15907
16040
|
method: "typia.assert",
|
|
15908
16041
|
path: _path + ".__context",
|
|
15909
16042
|
expected: "__type.o15",
|
|
15910
16043
|
value: input.__context
|
|
15911
|
-
}, _errorFactory)) &&
|
|
16044
|
+
}, _errorFactory)) && _ao31(input.__context, _path + ".__context", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15912
16045
|
method: "typia.assert",
|
|
15913
16046
|
path: _path + ".__context",
|
|
15914
16047
|
expected: "__type.o15",
|
|
@@ -15918,17 +16051,17 @@ function _assertDomainRecord(domain, input) {
|
|
|
15918
16051
|
path: _path + ".__returnValue",
|
|
15919
16052
|
expected: "ResolvedFilePublishRender",
|
|
15920
16053
|
value: input.__returnValue
|
|
15921
|
-
}, _errorFactory)) &&
|
|
16054
|
+
}, _errorFactory)) && _ao29(input.__returnValue, _path + ".__returnValue", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15922
16055
|
method: "typia.assert",
|
|
15923
16056
|
path: _path + ".__returnValue",
|
|
15924
16057
|
expected: "ResolvedFilePublishRender",
|
|
15925
16058
|
value: input.__returnValue
|
|
15926
|
-
}, _errorFactory)); const
|
|
16059
|
+
}, _errorFactory)); const _ao31 = (input, _path, _exceptionable = true) => (("object" === typeof input.publish && null !== input.publish && false === Array.isArray(input.publish) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15927
16060
|
method: "typia.assert",
|
|
15928
16061
|
path: _path + ".publish",
|
|
15929
16062
|
expected: "FilePublishRecord",
|
|
15930
16063
|
value: input.publish
|
|
15931
|
-
}, _errorFactory)) &&
|
|
16064
|
+
}, _errorFactory)) && _ao27(input.publish, _path + ".publish", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15932
16065
|
method: "typia.assert",
|
|
15933
16066
|
path: _path + ".publish",
|
|
15934
16067
|
expected: "FilePublishRecord",
|
|
@@ -15943,7 +16076,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15943
16076
|
path: _path + ".name",
|
|
15944
16077
|
expected: "string",
|
|
15945
16078
|
value: input.name
|
|
15946
|
-
}, _errorFactory)); const
|
|
16079
|
+
}, _errorFactory)); const _ao32 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15947
16080
|
method: "typia.assert",
|
|
15948
16081
|
path: _path + ".directory",
|
|
15949
16082
|
expected: "(string | undefined)",
|
|
@@ -15953,7 +16086,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15953
16086
|
path: _path + ".filename",
|
|
15954
16087
|
expected: "(string | undefined)",
|
|
15955
16088
|
value: input.filename
|
|
15956
|
-
}, _errorFactory)); const
|
|
16089
|
+
}, _errorFactory)); const _ao33 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15957
16090
|
method: "typia.assert",
|
|
15958
16091
|
path: _path + ".directory",
|
|
15959
16092
|
expected: "(string | undefined)",
|
|
@@ -15968,12 +16101,12 @@ function _assertDomainRecord(domain, input) {
|
|
|
15968
16101
|
path: _path + ".renders",
|
|
15969
16102
|
expected: "(Record<string, FilePublishRemoteRender> | undefined)",
|
|
15970
16103
|
value: input.renders
|
|
15971
|
-
}, _errorFactory)) &&
|
|
16104
|
+
}, _errorFactory)) && _ao34(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15972
16105
|
method: "typia.assert",
|
|
15973
16106
|
path: _path + ".renders",
|
|
15974
16107
|
expected: "(Record<string, FilePublishRemoteRender> | undefined)",
|
|
15975
16108
|
value: input.renders
|
|
15976
|
-
}, _errorFactory)); const
|
|
16109
|
+
}, _errorFactory)); const _ao34 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
15977
16110
|
const value = input[key];
|
|
15978
16111
|
if (undefined === value)
|
|
15979
16112
|
return true;
|
|
@@ -15982,13 +16115,13 @@ function _assertDomainRecord(domain, input) {
|
|
|
15982
16115
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15983
16116
|
expected: "FilePublishRemoteRender",
|
|
15984
16117
|
value: value
|
|
15985
|
-
}, _errorFactory)) &&
|
|
16118
|
+
}, _errorFactory)) && _ao35(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15986
16119
|
method: "typia.assert",
|
|
15987
16120
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15988
16121
|
expected: "FilePublishRemoteRender",
|
|
15989
16122
|
value: value
|
|
15990
16123
|
}, _errorFactory);
|
|
15991
|
-
}); const
|
|
16124
|
+
}); const _ao35 = (input, _path, _exceptionable = true) => (undefined === input.path || "string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15992
16125
|
method: "typia.assert",
|
|
15993
16126
|
path: _path + ".path",
|
|
15994
16127
|
expected: "(string | undefined)",
|
|
@@ -16003,7 +16136,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16003
16136
|
path: _path + ".messages[" + _index19 + "]",
|
|
16004
16137
|
expected: "Message",
|
|
16005
16138
|
value: elem
|
|
16006
|
-
}, _errorFactory)) &&
|
|
16139
|
+
}, _errorFactory)) && _ao25(elem, _path + ".messages[" + _index19 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16007
16140
|
method: "typia.assert",
|
|
16008
16141
|
path: _path + ".messages[" + _index19 + "]",
|
|
16009
16142
|
expected: "Message",
|
|
@@ -16028,7 +16161,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16028
16161
|
path: _path + ".source",
|
|
16029
16162
|
expected: "(string | undefined)",
|
|
16030
16163
|
value: input.source
|
|
16031
|
-
}, _errorFactory)); const
|
|
16164
|
+
}, _errorFactory)); const _ao36 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16032
16165
|
method: "typia.assert",
|
|
16033
16166
|
path: _path + ".directory",
|
|
16034
16167
|
expected: "(string | undefined)",
|
|
@@ -16038,7 +16171,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16038
16171
|
path: _path + ".filename",
|
|
16039
16172
|
expected: "string",
|
|
16040
16173
|
value: input.filename
|
|
16041
|
-
}, _errorFactory)); const
|
|
16174
|
+
}, _errorFactory)); const _ao37 = (input, _path, _exceptionable = true) => (undefined === input.type || "file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16042
16175
|
method: "typia.assert",
|
|
16043
16176
|
path: _path + ".type",
|
|
16044
16177
|
expected: "(\"file\" | undefined)",
|
|
@@ -16058,7 +16191,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16058
16191
|
path: _path + ".draft",
|
|
16059
16192
|
expected: "(FilePublishDraft | undefined)",
|
|
16060
16193
|
value: input.draft
|
|
16061
|
-
}, _errorFactory)) &&
|
|
16194
|
+
}, _errorFactory)) && _ao32(input.draft, _path + ".draft", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16062
16195
|
method: "typia.assert",
|
|
16063
16196
|
path: _path + ".draft",
|
|
16064
16197
|
expected: "(FilePublishDraft | undefined)",
|
|
@@ -16068,7 +16201,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16068
16201
|
path: _path + ".remote",
|
|
16069
16202
|
expected: "(FilePublishRemoteLegacy | undefined)",
|
|
16070
16203
|
value: input.remote
|
|
16071
|
-
}, _errorFactory)) &&
|
|
16204
|
+
}, _errorFactory)) && _ao38(input.remote, _path + ".remote", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16072
16205
|
method: "typia.assert",
|
|
16073
16206
|
path: _path + ".remote",
|
|
16074
16207
|
expected: "(FilePublishRemoteLegacy | undefined)",
|
|
@@ -16078,7 +16211,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16078
16211
|
path: _path + ".published",
|
|
16079
16212
|
expected: "(FilePublishPublished | undefined)",
|
|
16080
16213
|
value: input.published
|
|
16081
|
-
}, _errorFactory)) &&
|
|
16214
|
+
}, _errorFactory)) && _ao36(input.published, _path + ".published", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16082
16215
|
method: "typia.assert",
|
|
16083
16216
|
path: _path + ".published",
|
|
16084
16217
|
expected: "(FilePublishPublished | undefined)",
|
|
@@ -16118,7 +16251,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16118
16251
|
path: _path + ".error",
|
|
16119
16252
|
expected: "(__type.o13 | null | undefined)",
|
|
16120
16253
|
value: input.error
|
|
16121
|
-
}, _errorFactory)) &&
|
|
16254
|
+
}, _errorFactory)) && _ao24(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16122
16255
|
method: "typia.assert",
|
|
16123
16256
|
path: _path + ".error",
|
|
16124
16257
|
expected: "(__type.o13 | null | undefined)",
|
|
@@ -16133,7 +16266,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16133
16266
|
path: _path + ".messages[" + _index20 + "]",
|
|
16134
16267
|
expected: "Message",
|
|
16135
16268
|
value: elem
|
|
16136
|
-
}, _errorFactory)) &&
|
|
16269
|
+
}, _errorFactory)) && _ao25(elem, _path + ".messages[" + _index20 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16137
16270
|
method: "typia.assert",
|
|
16138
16271
|
path: _path + ".messages[" + _index20 + "]",
|
|
16139
16272
|
expected: "Message",
|
|
@@ -16143,7 +16276,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16143
16276
|
path: _path + ".messages",
|
|
16144
16277
|
expected: "(Array<Message> | undefined)",
|
|
16145
16278
|
value: input.messages
|
|
16146
|
-
}, _errorFactory)); const
|
|
16279
|
+
}, _errorFactory)); const _ao38 = (input, _path, _exceptionable = true) => (undefined === input.id || "string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16147
16280
|
method: "typia.assert",
|
|
16148
16281
|
path: _path + ".id",
|
|
16149
16282
|
expected: "(string | undefined)",
|
|
@@ -16168,7 +16301,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16168
16301
|
path: _path + ".subtitle",
|
|
16169
16302
|
expected: "(__type.o16 | undefined)",
|
|
16170
16303
|
value: input.subtitle
|
|
16171
|
-
}, _errorFactory)) &&
|
|
16304
|
+
}, _errorFactory)) && _ao39(input.subtitle, _path + ".subtitle", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16172
16305
|
method: "typia.assert",
|
|
16173
16306
|
path: _path + ".subtitle",
|
|
16174
16307
|
expected: "(__type.o16 | undefined)",
|
|
@@ -16178,7 +16311,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16178
16311
|
path: _path + ".metafile",
|
|
16179
16312
|
expected: "(__type.o17 | undefined)",
|
|
16180
16313
|
value: input.metafile
|
|
16181
|
-
}, _errorFactory)) &&
|
|
16314
|
+
}, _errorFactory)) && _ao40(input.metafile, _path + ".metafile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16182
16315
|
method: "typia.assert",
|
|
16183
16316
|
path: _path + ".metafile",
|
|
16184
16317
|
expected: "(__type.o17 | undefined)",
|
|
@@ -16190,17 +16323,17 @@ function _assertDomainRecord(domain, input) {
|
|
|
16190
16323
|
if (undefined === value)
|
|
16191
16324
|
return true;
|
|
16192
16325
|
return true;
|
|
16193
|
-
})); const
|
|
16326
|
+
})); const _ao39 = (input, _path, _exceptionable = true) => "string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16194
16327
|
method: "typia.assert",
|
|
16195
16328
|
path: _path + ".path",
|
|
16196
16329
|
expected: "string",
|
|
16197
16330
|
value: input.path
|
|
16198
|
-
}, _errorFactory); const
|
|
16331
|
+
}, _errorFactory); const _ao40 = (input, _path, _exceptionable = true) => "string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16199
16332
|
method: "typia.assert",
|
|
16200
16333
|
path: _path + ".path",
|
|
16201
16334
|
expected: "string",
|
|
16202
16335
|
value: input.path
|
|
16203
|
-
}, _errorFactory); const
|
|
16336
|
+
}, _errorFactory); const _ao41 = (input, _path, _exceptionable = true) => (undefined === input.type || "youtube" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16204
16337
|
method: "typia.assert",
|
|
16205
16338
|
path: _path + ".type",
|
|
16206
16339
|
expected: "(\"youtube\" | undefined)",
|
|
@@ -16210,7 +16343,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16210
16343
|
path: _path + ".draft",
|
|
16211
16344
|
expected: "(__type.o18 | undefined)",
|
|
16212
16345
|
value: input.draft
|
|
16213
|
-
}, _errorFactory)) &&
|
|
16346
|
+
}, _errorFactory)) && _ao42(input.draft, _path + ".draft", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16214
16347
|
method: "typia.assert",
|
|
16215
16348
|
path: _path + ".draft",
|
|
16216
16349
|
expected: "(__type.o18 | undefined)",
|
|
@@ -16240,7 +16373,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16240
16373
|
path: _path + ".error",
|
|
16241
16374
|
expected: "(__type.o13 | null | undefined)",
|
|
16242
16375
|
value: input.error
|
|
16243
|
-
}, _errorFactory)) &&
|
|
16376
|
+
}, _errorFactory)) && _ao24(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16244
16377
|
method: "typia.assert",
|
|
16245
16378
|
path: _path + ".error",
|
|
16246
16379
|
expected: "(__type.o13 | null | undefined)",
|
|
@@ -16255,7 +16388,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16255
16388
|
path: _path + ".messages[" + _index21 + "]",
|
|
16256
16389
|
expected: "Message",
|
|
16257
16390
|
value: elem
|
|
16258
|
-
}, _errorFactory)) &&
|
|
16391
|
+
}, _errorFactory)) && _ao25(elem, _path + ".messages[" + _index21 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16259
16392
|
method: "typia.assert",
|
|
16260
16393
|
path: _path + ".messages[" + _index21 + "]",
|
|
16261
16394
|
expected: "Message",
|
|
@@ -16265,17 +16398,17 @@ function _assertDomainRecord(domain, input) {
|
|
|
16265
16398
|
path: _path + ".messages",
|
|
16266
16399
|
expected: "(Array<Message> | undefined)",
|
|
16267
16400
|
value: input.messages
|
|
16268
|
-
}, _errorFactory)); const
|
|
16401
|
+
}, _errorFactory)); const _ao42 = (input, _path, _exceptionable = true) => undefined === input.snippet || ("object" === typeof input.snippet && null !== input.snippet && false === Array.isArray(input.snippet) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16269
16402
|
method: "typia.assert",
|
|
16270
16403
|
path: _path + ".snippet",
|
|
16271
16404
|
expected: "(__type.o19 | undefined)",
|
|
16272
16405
|
value: input.snippet
|
|
16273
|
-
}, _errorFactory)) &&
|
|
16406
|
+
}, _errorFactory)) && _ao43(input.snippet, _path + ".snippet", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16274
16407
|
method: "typia.assert",
|
|
16275
16408
|
path: _path + ".snippet",
|
|
16276
16409
|
expected: "(__type.o19 | undefined)",
|
|
16277
16410
|
value: input.snippet
|
|
16278
|
-
}, _errorFactory); const
|
|
16411
|
+
}, _errorFactory); const _ao43 = (input, _path, _exceptionable = true) => (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16279
16412
|
method: "typia.assert",
|
|
16280
16413
|
path: _path + ".title",
|
|
16281
16414
|
expected: "(string | undefined)",
|
|
@@ -16302,9 +16435,9 @@ function _assertDomainRecord(domain, input) {
|
|
|
16302
16435
|
value: input.description
|
|
16303
16436
|
}, _errorFactory)); const _au0 = (input, _path, _exceptionable = true) => (() => {
|
|
16304
16437
|
if (undefined !== input.path)
|
|
16305
|
-
return _ao28(input, _path, true && _exceptionable);
|
|
16306
|
-
else if (undefined !== input.__context)
|
|
16307
16438
|
return _ao29(input, _path, true && _exceptionable);
|
|
16439
|
+
else if (undefined !== input.__context)
|
|
16440
|
+
return _ao30(input, _path, true && _exceptionable);
|
|
16308
16441
|
else
|
|
16309
16442
|
return __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16310
16443
|
method: "typia.assert",
|
|
@@ -16312,7 +16445,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16312
16445
|
expected: "(ResolvedFilePublishRender | __type.o14)",
|
|
16313
16446
|
value: input
|
|
16314
16447
|
}, _errorFactory);
|
|
16315
|
-
})(); const _au1 = (input, _path, _exceptionable = true) => _ao0(input, _path, false && _exceptionable) ||
|
|
16448
|
+
})(); const _au1 = (input, _path, _exceptionable = true) => _ao0(input, _path, false && _exceptionable) || _ao26(input, _path, false && _exceptionable) || _ao37(input, _path, false && _exceptionable) || _ao27(input, _path, false && _exceptionable) || _ao41(input, _path, false && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16316
16449
|
method: "typia.assert",
|
|
16317
16450
|
path: _path,
|
|
16318
16451
|
expected: "(EmptyPublishRecord | FacebookPublishRecord | FilePublishRecordLegacy | FilePublishRecord | YoutubePublishRecord)",
|
|
@@ -16346,21 +16479,21 @@ function _assertDomainRecord(domain, input) {
|
|
|
16346
16479
|
if (undefined === value)
|
|
16347
16480
|
return true;
|
|
16348
16481
|
return null !== value && undefined !== value && ("string" === typeof value || "object" === typeof value && null !== value && _iu0(value));
|
|
16349
|
-
}); const _io8 = input => (undefined === input.name || "string" === typeof input.name) && "string" === typeof input.path && (undefined === input.collisionStrategy || "overwrite" === input.collisionStrategy || "skip" === input.collisionStrategy) && (undefined === input.ignoreEmptyScene || "boolean" === typeof input.ignoreEmptyScene) && (undefined === input.preset || "string" === typeof input.preset) && "string" === typeof input.type && (undefined === input.scene || "object" === typeof input.scene && null !== input.scene && false === Array.isArray(input.scene) && _io9(input.scene)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile &&
|
|
16482
|
+
}); const _io8 = input => (undefined === input.name || "string" === typeof input.name) && "string" === typeof input.path && (undefined === input.collisionStrategy || "overwrite" === input.collisionStrategy || "skip" === input.collisionStrategy) && (undefined === input.ignoreEmptyScene || "boolean" === typeof input.ignoreEmptyScene) && (undefined === input.preset || "string" === typeof input.preset) && "string" === typeof input.type && (undefined === input.scene || "object" === typeof input.scene && null !== input.scene && false === Array.isArray(input.scene) && _io9(input.scene)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io24(input.profile)); const _io9 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (null === input.input || undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && _io10(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.graphics || "string" === typeof input.graphics) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && _io12(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io15(input.video)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io22(input.audio)) && (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) && _io23(input.transcribe)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io20(input.crop)) && (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io16(input.filters)) && (undefined === input.orientation || "number" === typeof input.orientation) && (undefined === input.rotate || "number" === typeof input.rotate) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced) && (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha); const _io10 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io11(input.video)) && (null === input.proxy || undefined === input.proxy || "string" === typeof input.proxy) && (null === input.proxyManifest || undefined === input.proxyManifest || "string" === typeof input.proxyManifest) && (null === input.proxyFile || undefined === input.proxyFile || "string" === typeof input.proxyFile) && (null === input.manifest || undefined === input.manifest || "string" === typeof input.manifest); const _io11 = input => (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced); const _io12 = input => Object.keys(input).every(key => {
|
|
16350
16483
|
const value = input[key];
|
|
16351
16484
|
if (undefined === value)
|
|
16352
16485
|
return true;
|
|
16353
16486
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io13(value);
|
|
16354
|
-
}); const _io13 = 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) && _io14(input.styleOverrides)); const _io14 = 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.lineSpacing || "string" === typeof input.lineSpacing) && (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); const _io15 = input => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io16(input.filters)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io20(input.crop)) && (undefined === input.orientation || "number" === typeof input.orientation) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced) && (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha); const _io16 = input => (undefined === input.eq || "object" === typeof input.eq && null !== input.eq && false === Array.isArray(input.eq) && _io17(input.eq)) && (undefined === input.hue || "object" === typeof input.hue && null !== input.hue && false === Array.isArray(input.hue) && _io18(input.hue)) && (undefined === input.colorbalance || "object" === typeof input.colorbalance && null !== input.colorbalance && false === Array.isArray(input.colorbalance) && _io19(input.colorbalance)); const _io17 = input => (undefined === input.brightness || "number" === typeof input.brightness) && (undefined === input.contrast || "number" === typeof input.contrast) && (undefined === input.gamma || "number" === typeof input.gamma) && (undefined === input.saturation || "number" === typeof input.saturation); const _io18 = input => (undefined === input.h || "number" === typeof input.h) && (undefined === input.s || "number" === typeof input.s) && (undefined === input.b || "number" === typeof input.b); const _io19 = input => (undefined === input.rs || "number" === typeof input.rs) && (undefined === input.gs || "number" === typeof input.gs) && (undefined === input.bs || "number" === typeof input.bs) && (undefined === input.rm || "number" === typeof input.rm) && (undefined === input.gm || "number" === typeof input.gm) && (undefined === input.bm || "number" === typeof input.bm) && (undefined === input.rh || "number" === typeof input.rh) && (undefined === input.gh || "number" === typeof input.gh) && (undefined === input.bh || "number" === typeof input.bh); const _io20 = 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); const _io21 = input => undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => Array.isArray(elem) && elem.every(elem => "number" === typeof elem)); const
|
|
16487
|
+
}); const _io13 = 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) && _io14(input.styleOverrides)); const _io14 = 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.lineSpacing || "string" === typeof input.lineSpacing) && (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); const _io15 = input => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io16(input.filters)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io20(input.crop)) && (undefined === input.focus || "object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) && _io21(input.focus)) && (undefined === input.orientation || "number" === typeof input.orientation) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced) && (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha); const _io16 = input => (undefined === input.eq || "object" === typeof input.eq && null !== input.eq && false === Array.isArray(input.eq) && _io17(input.eq)) && (undefined === input.hue || "object" === typeof input.hue && null !== input.hue && false === Array.isArray(input.hue) && _io18(input.hue)) && (undefined === input.colorbalance || "object" === typeof input.colorbalance && null !== input.colorbalance && false === Array.isArray(input.colorbalance) && _io19(input.colorbalance)); const _io17 = input => (undefined === input.brightness || "number" === typeof input.brightness) && (undefined === input.contrast || "number" === typeof input.contrast) && (undefined === input.gamma || "number" === typeof input.gamma) && (undefined === input.saturation || "number" === typeof input.saturation); const _io18 = input => (undefined === input.h || "number" === typeof input.h) && (undefined === input.s || "number" === typeof input.s) && (undefined === input.b || "number" === typeof input.b); const _io19 = input => (undefined === input.rs || "number" === typeof input.rs) && (undefined === input.gs || "number" === typeof input.gs) && (undefined === input.bs || "number" === typeof input.bs) && (undefined === input.rm || "number" === typeof input.rm) && (undefined === input.gm || "number" === typeof input.gm) && (undefined === input.bm || "number" === typeof input.bm) && (undefined === input.rh || "number" === typeof input.rh) && (undefined === input.gh || "number" === typeof input.gh) && (undefined === input.bh || "number" === typeof input.bh); const _io20 = 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); const _io21 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y); const _io22 = input => undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => Array.isArray(elem) && elem.every(elem => "number" === typeof elem)); const _io23 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem)) && (undefined === input.diarization || "boolean" === typeof input.diarization); const _io24 = input => "string" === typeof input.format && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && _io25(input.transcribe)) && (undefined === input.translate || "object" === typeof input.translate && null !== input.translate && _io26(input.translate)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io27(input.audio)) && true && (undefined === input.pick || Array.isArray(input.pick) && input.pick.every(elem => "string" === typeof elem)) && (null !== input.subtitle && (undefined === input.subtitle || "string" === typeof input.subtitle || "object" === typeof input.subtitle && null !== input.subtitle && false === Array.isArray(input.subtitle) && _io28(input.subtitle))); const _io25 = input => "string" === typeof input.engine; const _io26 = input => "string" === typeof input.language; const _io27 = input => (undefined === input.codec || "string" === typeof input.codec) && (undefined === input.pan || "string" === typeof input.pan) && (undefined === input.samplerate || "number" === typeof input.samplerate) && (undefined === input.split || "boolean" === typeof input.split); const _io28 = input => (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.style || "string" === typeof input.style) && (undefined === input.ccconverter || "object" === typeof input.ccconverter && null !== input.ccconverter && false === Array.isArray(input.ccconverter) && _io29(input.ccconverter)) && (undefined === input.ass || "object" === typeof input.ass && null !== input.ass && false === Array.isArray(input.ass) && _io30(input.ass)); const _io29 = input => undefined === input.preset || "string" === typeof input.preset; const _io30 = input => (undefined === input.futureWordWrapping || "boolean" === typeof input.futureWordWrapping) && (undefined === input.scaledBorderAndShadow || "boolean" === typeof input.scaledBorderAndShadow) && (undefined === input.enableUnsafeLineSpacingHack || "boolean" === typeof input.enableUnsafeLineSpacingHack); const _io31 = input => "object" === typeof input.__context && null !== input.__context && _io32(input.__context) && ("object" === typeof input.__returnValue && null !== input.__returnValue && _io8(input.__returnValue)); const _io32 = input => "object" === typeof input.publish && null !== input.publish && false === Array.isArray(input.publish) && _io33(input.publish) && "string" === typeof input.directory && "string" === typeof input.name; const _io33 = input => (undefined === input.type || "file" === input.type) && (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && (undefined === input.renders || "object" === typeof input.renders && null !== input.renders && false === Array.isArray(input.renders) && _io7(input.renders)) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io34(input.draft)) && (undefined === input.remote || "object" === typeof input.remote && null !== input.remote && false === Array.isArray(input.remote) && _io35(input.remote)) && (undefined === input.published || "object" === typeof input.published && null !== input.published && _io38(input.published)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset) && (undefined === input.connection || "string" === typeof input.connection) && (undefined === input.render || "object" === typeof input.render && null !== input.render && _io39(input.render)) && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io40(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io1(elem))); const _io34 = input => (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename); const _io35 = input => (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && (undefined === input.renders || "object" === typeof input.renders && null !== input.renders && false === Array.isArray(input.renders) && _io36(input.renders)); const _io36 = input => Object.keys(input).every(key => {
|
|
16355
16488
|
const value = input[key];
|
|
16356
16489
|
if (undefined === value)
|
|
16357
16490
|
return true;
|
|
16358
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
16359
|
-
}); const
|
|
16491
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io37(value);
|
|
16492
|
+
}); const _io37 = input => (undefined === input.path || "string" === typeof input.path) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io1(elem))) && true && (undefined === input.size || "number" === typeof input.size) && (undefined === input.hash || "string" === typeof input.hash) && (undefined === input.source || "string" === typeof input.source); const _io38 = input => (undefined === input.directory || "string" === typeof input.directory) && "string" === typeof input.filename; const _io39 = input => (undefined === input.preset || "string" === typeof input.preset) && "string" === typeof input.type && (undefined === input.scene || "object" === typeof input.scene && null !== input.scene && false === Array.isArray(input.scene) && _io9(input.scene)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io24(input.profile)); const _io40 = input => "string" === typeof input.method; const _iu0 = input => (() => {
|
|
16360
16493
|
if (undefined !== input.path)
|
|
16361
16494
|
return _io8(input);
|
|
16362
16495
|
else if (undefined !== input.__context)
|
|
16363
|
-
return
|
|
16496
|
+
return _io31(input);
|
|
16364
16497
|
else
|
|
16365
16498
|
return false;
|
|
16366
16499
|
})(); const _iu1 = input => (() => {
|
|
@@ -16604,7 +16737,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16604
16737
|
path: _path + ".profile",
|
|
16605
16738
|
expected: "(RenderProfileObject | undefined)",
|
|
16606
16739
|
value: input.profile
|
|
16607
|
-
}, _errorFactory)) &&
|
|
16740
|
+
}, _errorFactory)) && _ao24(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16608
16741
|
method: "typia.assert",
|
|
16609
16742
|
path: _path + ".profile",
|
|
16610
16743
|
expected: "(RenderProfileObject | undefined)",
|
|
@@ -16669,7 +16802,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16669
16802
|
path: _path + ".audio",
|
|
16670
16803
|
expected: "(__type.o6 | undefined)",
|
|
16671
16804
|
value: input.audio
|
|
16672
|
-
}, _errorFactory)) &&
|
|
16805
|
+
}, _errorFactory)) && _ao22(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16673
16806
|
method: "typia.assert",
|
|
16674
16807
|
path: _path + ".audio",
|
|
16675
16808
|
expected: "(__type.o6 | undefined)",
|
|
@@ -16689,7 +16822,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16689
16822
|
path: _path + ".transcribe",
|
|
16690
16823
|
expected: "(__type.o7 | undefined)",
|
|
16691
16824
|
value: input.transcribe
|
|
16692
|
-
}, _errorFactory)) &&
|
|
16825
|
+
}, _errorFactory)) && _ao23(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16693
16826
|
method: "typia.assert",
|
|
16694
16827
|
path: _path + ".transcribe",
|
|
16695
16828
|
expected: "(__type.o7 | undefined)",
|
|
@@ -16954,6 +17087,16 @@ function _assertDomainRecord(domain, input) {
|
|
|
16954
17087
|
path: _path + ".crop",
|
|
16955
17088
|
expected: "(RenderSceneCrop | undefined)",
|
|
16956
17089
|
value: input.crop
|
|
17090
|
+
}, _errorFactory)) && (undefined === input.focus || ("object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17091
|
+
method: "typia.assert",
|
|
17092
|
+
path: _path + ".focus",
|
|
17093
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
17094
|
+
value: input.focus
|
|
17095
|
+
}, _errorFactory)) && _ao21(input.focus, _path + ".focus", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17096
|
+
method: "typia.assert",
|
|
17097
|
+
path: _path + ".focus",
|
|
17098
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
17099
|
+
value: input.focus
|
|
16957
17100
|
}, _errorFactory)) && (undefined === input.orientation || "number" === typeof input.orientation || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16958
17101
|
method: "typia.assert",
|
|
16959
17102
|
path: _path + ".orientation",
|
|
@@ -17099,7 +17242,17 @@ function _assertDomainRecord(domain, input) {
|
|
|
17099
17242
|
path: _path + ".height",
|
|
17100
17243
|
expected: "(number | undefined)",
|
|
17101
17244
|
value: input.height
|
|
17102
|
-
}, _errorFactory)); const _ao21 = (input, _path, _exceptionable = true) => undefined === input.
|
|
17245
|
+
}, _errorFactory)); const _ao21 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17246
|
+
method: "typia.assert",
|
|
17247
|
+
path: _path + ".x",
|
|
17248
|
+
expected: "(number | undefined)",
|
|
17249
|
+
value: input.x
|
|
17250
|
+
}, _errorFactory)) && (undefined === input.y || "number" === typeof input.y || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17251
|
+
method: "typia.assert",
|
|
17252
|
+
path: _path + ".y",
|
|
17253
|
+
expected: "(number | undefined)",
|
|
17254
|
+
value: input.y
|
|
17255
|
+
}, _errorFactory)); const _ao22 = (input, _path, _exceptionable = true) => undefined === input.pan || (Array.isArray(input.pan) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17103
17256
|
method: "typia.assert",
|
|
17104
17257
|
path: _path + ".pan",
|
|
17105
17258
|
expected: "(Array<Array<number>> | undefined)",
|
|
@@ -17124,7 +17277,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17124
17277
|
path: _path + ".pan",
|
|
17125
17278
|
expected: "(Array<Array<number>> | undefined)",
|
|
17126
17279
|
value: input.pan
|
|
17127
|
-
}, _errorFactory); const
|
|
17280
|
+
}, _errorFactory); const _ao23 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17128
17281
|
method: "typia.assert",
|
|
17129
17282
|
path: _path + ".language",
|
|
17130
17283
|
expected: "(string | undefined)",
|
|
@@ -17149,7 +17302,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17149
17302
|
path: _path + ".diarization",
|
|
17150
17303
|
expected: "(boolean | undefined)",
|
|
17151
17304
|
value: input.diarization
|
|
17152
|
-
}, _errorFactory)); const
|
|
17305
|
+
}, _errorFactory)); const _ao24 = (input, _path, _exceptionable = true) => ("string" === typeof input.format || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17153
17306
|
method: "typia.assert",
|
|
17154
17307
|
path: _path + ".format",
|
|
17155
17308
|
expected: "string",
|
|
@@ -17159,7 +17312,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17159
17312
|
path: _path + ".transcribe",
|
|
17160
17313
|
expected: "(__type.o8 | undefined)",
|
|
17161
17314
|
value: input.transcribe
|
|
17162
|
-
}, _errorFactory)) &&
|
|
17315
|
+
}, _errorFactory)) && _ao25(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17163
17316
|
method: "typia.assert",
|
|
17164
17317
|
path: _path + ".transcribe",
|
|
17165
17318
|
expected: "(__type.o8 | undefined)",
|
|
@@ -17169,7 +17322,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17169
17322
|
path: _path + ".translate",
|
|
17170
17323
|
expected: "(__type.o9 | undefined)",
|
|
17171
17324
|
value: input.translate
|
|
17172
|
-
}, _errorFactory)) &&
|
|
17325
|
+
}, _errorFactory)) && _ao26(input.translate, _path + ".translate", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17173
17326
|
method: "typia.assert",
|
|
17174
17327
|
path: _path + ".translate",
|
|
17175
17328
|
expected: "(__type.o9 | undefined)",
|
|
@@ -17179,7 +17332,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17179
17332
|
path: _path + ".audio",
|
|
17180
17333
|
expected: "(__type.o10 | undefined)",
|
|
17181
17334
|
value: input.audio
|
|
17182
|
-
}, _errorFactory)) &&
|
|
17335
|
+
}, _errorFactory)) && _ao27(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17183
17336
|
method: "typia.assert",
|
|
17184
17337
|
path: _path + ".audio",
|
|
17185
17338
|
expected: "(__type.o10 | undefined)",
|
|
@@ -17209,22 +17362,22 @@ function _assertDomainRecord(domain, input) {
|
|
|
17209
17362
|
path: _path + ".subtitle",
|
|
17210
17363
|
expected: "(SubtitleProfile | string | undefined)",
|
|
17211
17364
|
value: input.subtitle
|
|
17212
|
-
}, _errorFactory)) &&
|
|
17365
|
+
}, _errorFactory)) && _ao28(input.subtitle, _path + ".subtitle", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17213
17366
|
method: "typia.assert",
|
|
17214
17367
|
path: _path + ".subtitle",
|
|
17215
17368
|
expected: "(SubtitleProfile | string | undefined)",
|
|
17216
17369
|
value: input.subtitle
|
|
17217
|
-
}, _errorFactory))); const
|
|
17370
|
+
}, _errorFactory))); const _ao25 = (input, _path, _exceptionable = true) => "string" === typeof input.engine || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17218
17371
|
method: "typia.assert",
|
|
17219
17372
|
path: _path + ".engine",
|
|
17220
17373
|
expected: "string",
|
|
17221
17374
|
value: input.engine
|
|
17222
|
-
}, _errorFactory); const
|
|
17375
|
+
}, _errorFactory); const _ao26 = (input, _path, _exceptionable = true) => "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17223
17376
|
method: "typia.assert",
|
|
17224
17377
|
path: _path + ".language",
|
|
17225
17378
|
expected: "string",
|
|
17226
17379
|
value: input.language
|
|
17227
|
-
}, _errorFactory); const
|
|
17380
|
+
}, _errorFactory); const _ao27 = (input, _path, _exceptionable = true) => (undefined === input.codec || "string" === typeof input.codec || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17228
17381
|
method: "typia.assert",
|
|
17229
17382
|
path: _path + ".codec",
|
|
17230
17383
|
expected: "(string | undefined)",
|
|
@@ -17244,7 +17397,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17244
17397
|
path: _path + ".split",
|
|
17245
17398
|
expected: "(boolean | undefined)",
|
|
17246
17399
|
value: input.split
|
|
17247
|
-
}, _errorFactory)); const
|
|
17400
|
+
}, _errorFactory)); const _ao28 = (input, _path, _exceptionable = true) => (undefined === input.lang || "string" === typeof input.lang || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17248
17401
|
method: "typia.assert",
|
|
17249
17402
|
path: _path + ".lang",
|
|
17250
17403
|
expected: "(string | undefined)",
|
|
@@ -17259,7 +17412,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17259
17412
|
path: _path + ".ccconverter",
|
|
17260
17413
|
expected: "(__type.o11 | undefined)",
|
|
17261
17414
|
value: input.ccconverter
|
|
17262
|
-
}, _errorFactory)) &&
|
|
17415
|
+
}, _errorFactory)) && _ao29(input.ccconverter, _path + ".ccconverter", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17263
17416
|
method: "typia.assert",
|
|
17264
17417
|
path: _path + ".ccconverter",
|
|
17265
17418
|
expected: "(__type.o11 | undefined)",
|
|
@@ -17269,17 +17422,17 @@ function _assertDomainRecord(domain, input) {
|
|
|
17269
17422
|
path: _path + ".ass",
|
|
17270
17423
|
expected: "(__type.o12 | undefined)",
|
|
17271
17424
|
value: input.ass
|
|
17272
|
-
}, _errorFactory)) &&
|
|
17425
|
+
}, _errorFactory)) && _ao30(input.ass, _path + ".ass", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17273
17426
|
method: "typia.assert",
|
|
17274
17427
|
path: _path + ".ass",
|
|
17275
17428
|
expected: "(__type.o12 | undefined)",
|
|
17276
17429
|
value: input.ass
|
|
17277
|
-
}, _errorFactory)); const
|
|
17430
|
+
}, _errorFactory)); const _ao29 = (input, _path, _exceptionable = true) => undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17278
17431
|
method: "typia.assert",
|
|
17279
17432
|
path: _path + ".preset",
|
|
17280
17433
|
expected: "(string | undefined)",
|
|
17281
17434
|
value: input.preset
|
|
17282
|
-
}, _errorFactory); const
|
|
17435
|
+
}, _errorFactory); const _ao30 = (input, _path, _exceptionable = true) => (undefined === input.futureWordWrapping || "boolean" === typeof input.futureWordWrapping || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17283
17436
|
method: "typia.assert",
|
|
17284
17437
|
path: _path + ".futureWordWrapping",
|
|
17285
17438
|
expected: "(boolean | undefined)",
|
|
@@ -17294,12 +17447,12 @@ function _assertDomainRecord(domain, input) {
|
|
|
17294
17447
|
path: _path + ".enableUnsafeLineSpacingHack",
|
|
17295
17448
|
expected: "(boolean | undefined)",
|
|
17296
17449
|
value: input.enableUnsafeLineSpacingHack
|
|
17297
|
-
}, _errorFactory)); const
|
|
17450
|
+
}, _errorFactory)); const _ao31 = (input, _path, _exceptionable = true) => (("object" === typeof input.__context && null !== input.__context || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17298
17451
|
method: "typia.assert",
|
|
17299
17452
|
path: _path + ".__context",
|
|
17300
17453
|
expected: "__type.o14",
|
|
17301
17454
|
value: input.__context
|
|
17302
|
-
}, _errorFactory)) &&
|
|
17455
|
+
}, _errorFactory)) && _ao32(input.__context, _path + ".__context", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17303
17456
|
method: "typia.assert",
|
|
17304
17457
|
path: _path + ".__context",
|
|
17305
17458
|
expected: "__type.o14",
|
|
@@ -17314,12 +17467,12 @@ function _assertDomainRecord(domain, input) {
|
|
|
17314
17467
|
path: _path + ".__returnValue",
|
|
17315
17468
|
expected: "ResolvedFilePublishRender",
|
|
17316
17469
|
value: input.__returnValue
|
|
17317
|
-
}, _errorFactory)); const
|
|
17470
|
+
}, _errorFactory)); const _ao32 = (input, _path, _exceptionable = true) => (("object" === typeof input.publish && null !== input.publish && false === Array.isArray(input.publish) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17318
17471
|
method: "typia.assert",
|
|
17319
17472
|
path: _path + ".publish",
|
|
17320
17473
|
expected: "FilePublishRecord",
|
|
17321
17474
|
value: input.publish
|
|
17322
|
-
}, _errorFactory)) &&
|
|
17475
|
+
}, _errorFactory)) && _ao33(input.publish, _path + ".publish", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17323
17476
|
method: "typia.assert",
|
|
17324
17477
|
path: _path + ".publish",
|
|
17325
17478
|
expected: "FilePublishRecord",
|
|
@@ -17334,7 +17487,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17334
17487
|
path: _path + ".name",
|
|
17335
17488
|
expected: "string",
|
|
17336
17489
|
value: input.name
|
|
17337
|
-
}, _errorFactory)); const
|
|
17490
|
+
}, _errorFactory)); const _ao33 = (input, _path, _exceptionable = true) => (undefined === input.type || "file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17338
17491
|
method: "typia.assert",
|
|
17339
17492
|
path: _path + ".type",
|
|
17340
17493
|
expected: "(\"file\" | undefined)",
|
|
@@ -17364,7 +17517,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17364
17517
|
path: _path + ".draft",
|
|
17365
17518
|
expected: "(FilePublishDraft | undefined)",
|
|
17366
17519
|
value: input.draft
|
|
17367
|
-
}, _errorFactory)) &&
|
|
17520
|
+
}, _errorFactory)) && _ao34(input.draft, _path + ".draft", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17368
17521
|
method: "typia.assert",
|
|
17369
17522
|
path: _path + ".draft",
|
|
17370
17523
|
expected: "(FilePublishDraft | undefined)",
|
|
@@ -17374,7 +17527,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17374
17527
|
path: _path + ".remote",
|
|
17375
17528
|
expected: "(FilePublishRemote | undefined)",
|
|
17376
17529
|
value: input.remote
|
|
17377
|
-
}, _errorFactory)) &&
|
|
17530
|
+
}, _errorFactory)) && _ao35(input.remote, _path + ".remote", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17378
17531
|
method: "typia.assert",
|
|
17379
17532
|
path: _path + ".remote",
|
|
17380
17533
|
expected: "(FilePublishRemote | undefined)",
|
|
@@ -17384,7 +17537,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17384
17537
|
path: _path + ".published",
|
|
17385
17538
|
expected: "(FilePublishPublished | undefined)",
|
|
17386
17539
|
value: input.published
|
|
17387
|
-
}, _errorFactory)) &&
|
|
17540
|
+
}, _errorFactory)) && _ao38(input.published, _path + ".published", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17388
17541
|
method: "typia.assert",
|
|
17389
17542
|
path: _path + ".published",
|
|
17390
17543
|
expected: "(FilePublishPublished | undefined)",
|
|
@@ -17404,7 +17557,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17404
17557
|
path: _path + ".render",
|
|
17405
17558
|
expected: "(PublishRenderBase | undefined)",
|
|
17406
17559
|
value: input.render
|
|
17407
|
-
}, _errorFactory)) &&
|
|
17560
|
+
}, _errorFactory)) && _ao39(input.render, _path + ".render", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17408
17561
|
method: "typia.assert",
|
|
17409
17562
|
path: _path + ".render",
|
|
17410
17563
|
expected: "(PublishRenderBase | undefined)",
|
|
@@ -17414,7 +17567,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17414
17567
|
path: _path + ".error",
|
|
17415
17568
|
expected: "(__type.o15 | null | undefined)",
|
|
17416
17569
|
value: input.error
|
|
17417
|
-
}, _errorFactory)) &&
|
|
17570
|
+
}, _errorFactory)) && _ao40(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17418
17571
|
method: "typia.assert",
|
|
17419
17572
|
path: _path + ".error",
|
|
17420
17573
|
expected: "(__type.o15 | null | undefined)",
|
|
@@ -17439,7 +17592,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17439
17592
|
path: _path + ".messages",
|
|
17440
17593
|
expected: "(Array<Message> | undefined)",
|
|
17441
17594
|
value: input.messages
|
|
17442
|
-
}, _errorFactory)); const
|
|
17595
|
+
}, _errorFactory)); const _ao34 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17443
17596
|
method: "typia.assert",
|
|
17444
17597
|
path: _path + ".directory",
|
|
17445
17598
|
expected: "(string | undefined)",
|
|
@@ -17449,7 +17602,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17449
17602
|
path: _path + ".filename",
|
|
17450
17603
|
expected: "(string | undefined)",
|
|
17451
17604
|
value: input.filename
|
|
17452
|
-
}, _errorFactory)); const
|
|
17605
|
+
}, _errorFactory)); const _ao35 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17453
17606
|
method: "typia.assert",
|
|
17454
17607
|
path: _path + ".directory",
|
|
17455
17608
|
expected: "(string | undefined)",
|
|
@@ -17464,12 +17617,12 @@ function _assertDomainRecord(domain, input) {
|
|
|
17464
17617
|
path: _path + ".renders",
|
|
17465
17618
|
expected: "(Record<string, FilePublishRemoteRender> | undefined)",
|
|
17466
17619
|
value: input.renders
|
|
17467
|
-
}, _errorFactory)) &&
|
|
17620
|
+
}, _errorFactory)) && _ao36(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17468
17621
|
method: "typia.assert",
|
|
17469
17622
|
path: _path + ".renders",
|
|
17470
17623
|
expected: "(Record<string, FilePublishRemoteRender> | undefined)",
|
|
17471
17624
|
value: input.renders
|
|
17472
|
-
}, _errorFactory)); const
|
|
17625
|
+
}, _errorFactory)); const _ao36 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
17473
17626
|
const value = input[key];
|
|
17474
17627
|
if (undefined === value)
|
|
17475
17628
|
return true;
|
|
@@ -17478,13 +17631,13 @@ function _assertDomainRecord(domain, input) {
|
|
|
17478
17631
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
17479
17632
|
expected: "FilePublishRemoteRender",
|
|
17480
17633
|
value: value
|
|
17481
|
-
}, _errorFactory)) &&
|
|
17634
|
+
}, _errorFactory)) && _ao37(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17482
17635
|
method: "typia.assert",
|
|
17483
17636
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
17484
17637
|
expected: "FilePublishRemoteRender",
|
|
17485
17638
|
value: value
|
|
17486
17639
|
}, _errorFactory);
|
|
17487
|
-
}); const
|
|
17640
|
+
}); const _ao37 = (input, _path, _exceptionable = true) => (undefined === input.path || "string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17488
17641
|
method: "typia.assert",
|
|
17489
17642
|
path: _path + ".path",
|
|
17490
17643
|
expected: "(string | undefined)",
|
|
@@ -17524,7 +17677,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17524
17677
|
path: _path + ".source",
|
|
17525
17678
|
expected: "(string | undefined)",
|
|
17526
17679
|
value: input.source
|
|
17527
|
-
}, _errorFactory)); const
|
|
17680
|
+
}, _errorFactory)); const _ao38 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17528
17681
|
method: "typia.assert",
|
|
17529
17682
|
path: _path + ".directory",
|
|
17530
17683
|
expected: "(string | undefined)",
|
|
@@ -17534,7 +17687,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17534
17687
|
path: _path + ".filename",
|
|
17535
17688
|
expected: "string",
|
|
17536
17689
|
value: input.filename
|
|
17537
|
-
}, _errorFactory)); const
|
|
17690
|
+
}, _errorFactory)); const _ao39 = (input, _path, _exceptionable = true) => (undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17538
17691
|
method: "typia.assert",
|
|
17539
17692
|
path: _path + ".preset",
|
|
17540
17693
|
expected: "(string | undefined)",
|
|
@@ -17559,12 +17712,12 @@ function _assertDomainRecord(domain, input) {
|
|
|
17559
17712
|
path: _path + ".profile",
|
|
17560
17713
|
expected: "(RenderProfileObject | undefined)",
|
|
17561
17714
|
value: input.profile
|
|
17562
|
-
}, _errorFactory)) &&
|
|
17715
|
+
}, _errorFactory)) && _ao24(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17563
17716
|
method: "typia.assert",
|
|
17564
17717
|
path: _path + ".profile",
|
|
17565
17718
|
expected: "(RenderProfileObject | undefined)",
|
|
17566
17719
|
value: input.profile
|
|
17567
|
-
}, _errorFactory)); const
|
|
17720
|
+
}, _errorFactory)); const _ao40 = (input, _path, _exceptionable = true) => "string" === typeof input.method || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17568
17721
|
method: "typia.assert",
|
|
17569
17722
|
path: _path + ".method",
|
|
17570
17723
|
expected: "string",
|
|
@@ -17573,7 +17726,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17573
17726
|
if (undefined !== input.path)
|
|
17574
17727
|
return _ao8(input, _path, true && _exceptionable);
|
|
17575
17728
|
else if (undefined !== input.__context)
|
|
17576
|
-
return
|
|
17729
|
+
return _ao31(input, _path, true && _exceptionable);
|
|
17577
17730
|
else
|
|
17578
17731
|
return __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17579
17732
|
method: "typia.assert",
|
|
@@ -18450,12 +18603,12 @@ function _assertDomainRecord(domain, input) {
|
|
|
18450
18603
|
}; })()(input);
|
|
18451
18604
|
}
|
|
18452
18605
|
case ":render.query?": {
|
|
18453
|
-
return (() => { const _io0 = input => "string" === typeof input.type && "string" === typeof input.title && (undefined === input.parent || "string" === typeof input.parent) && ("object" === typeof input.description && null !== input.description && _io1(input.description)); const _io1 = input => "object" === typeof input.scene && null !== input.scene && false === Array.isArray(input.scene) && _io2(input.scene) && ("object" === typeof input.profile && null !== input.profile &&
|
|
18606
|
+
return (() => { const _io0 = input => "string" === typeof input.type && "string" === typeof input.title && (undefined === input.parent || "string" === typeof input.parent) && ("object" === typeof input.description && null !== input.description && _io1(input.description)); const _io1 = input => "object" === typeof input.scene && null !== input.scene && false === Array.isArray(input.scene) && _io2(input.scene) && ("object" === typeof input.profile && null !== input.profile && _io17(input.profile)); const _io2 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (null === input.input || undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && _io3(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.graphics || "string" === typeof input.graphics) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && _io5(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io8(input.video)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io15(input.audio)) && (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) && _io16(input.transcribe)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io13(input.crop)) && (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io9(input.filters)) && (undefined === input.orientation || "number" === typeof input.orientation) && (undefined === input.rotate || "number" === typeof input.rotate) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced) && (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha); const _io3 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io4(input.video)) && (null === input.proxy || undefined === input.proxy || "string" === typeof input.proxy) && (null === input.proxyManifest || undefined === input.proxyManifest || "string" === typeof input.proxyManifest) && (null === input.proxyFile || undefined === input.proxyFile || "string" === typeof input.proxyFile) && (null === input.manifest || undefined === input.manifest || "string" === typeof input.manifest); const _io4 = input => (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced); const _io5 = input => Object.keys(input).every(key => {
|
|
18454
18607
|
const value = input[key];
|
|
18455
18608
|
if (undefined === value)
|
|
18456
18609
|
return true;
|
|
18457
18610
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io6(value);
|
|
18458
|
-
}); const _io6 = 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) && _io7(input.styleOverrides)); const _io7 = 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.lineSpacing || "string" === typeof input.lineSpacing) && (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); const _io8 = input => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io9(input.filters)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io13(input.crop)) && (undefined === input.orientation || "number" === typeof input.orientation) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced) && (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha); const _io9 = input => (undefined === input.eq || "object" === typeof input.eq && null !== input.eq && false === Array.isArray(input.eq) && _io10(input.eq)) && (undefined === input.hue || "object" === typeof input.hue && null !== input.hue && false === Array.isArray(input.hue) && _io11(input.hue)) && (undefined === input.colorbalance || "object" === typeof input.colorbalance && null !== input.colorbalance && false === Array.isArray(input.colorbalance) && _io12(input.colorbalance)); const _io10 = input => (undefined === input.brightness || "number" === typeof input.brightness) && (undefined === input.contrast || "number" === typeof input.contrast) && (undefined === input.gamma || "number" === typeof input.gamma) && (undefined === input.saturation || "number" === typeof input.saturation); const _io11 = input => (undefined === input.h || "number" === typeof input.h) && (undefined === input.s || "number" === typeof input.s) && (undefined === input.b || "number" === typeof input.b); const _io12 = input => (undefined === input.rs || "number" === typeof input.rs) && (undefined === input.gs || "number" === typeof input.gs) && (undefined === input.bs || "number" === typeof input.bs) && (undefined === input.rm || "number" === typeof input.rm) && (undefined === input.gm || "number" === typeof input.gm) && (undefined === input.bm || "number" === typeof input.bm) && (undefined === input.rh || "number" === typeof input.rh) && (undefined === input.gh || "number" === typeof input.gh) && (undefined === input.bh || "number" === typeof input.bh); const _io13 = 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); const _io14 = input => undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => Array.isArray(elem) && elem.every(elem => "number" === typeof elem)); const
|
|
18611
|
+
}); const _io6 = 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) && _io7(input.styleOverrides)); const _io7 = 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.lineSpacing || "string" === typeof input.lineSpacing) && (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); const _io8 = input => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io9(input.filters)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io13(input.crop)) && (undefined === input.focus || "object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) && _io14(input.focus)) && (undefined === input.orientation || "number" === typeof input.orientation) && (null === input.interlaced || undefined === input.interlaced || false === input.interlaced || "tff" === input.interlaced || "bff" === input.interlaced) && (null === input.alpha || undefined === input.alpha || "straight" === input.alpha || "boolean" === typeof input.alpha); const _io9 = input => (undefined === input.eq || "object" === typeof input.eq && null !== input.eq && false === Array.isArray(input.eq) && _io10(input.eq)) && (undefined === input.hue || "object" === typeof input.hue && null !== input.hue && false === Array.isArray(input.hue) && _io11(input.hue)) && (undefined === input.colorbalance || "object" === typeof input.colorbalance && null !== input.colorbalance && false === Array.isArray(input.colorbalance) && _io12(input.colorbalance)); const _io10 = input => (undefined === input.brightness || "number" === typeof input.brightness) && (undefined === input.contrast || "number" === typeof input.contrast) && (undefined === input.gamma || "number" === typeof input.gamma) && (undefined === input.saturation || "number" === typeof input.saturation); const _io11 = input => (undefined === input.h || "number" === typeof input.h) && (undefined === input.s || "number" === typeof input.s) && (undefined === input.b || "number" === typeof input.b); const _io12 = input => (undefined === input.rs || "number" === typeof input.rs) && (undefined === input.gs || "number" === typeof input.gs) && (undefined === input.bs || "number" === typeof input.bs) && (undefined === input.rm || "number" === typeof input.rm) && (undefined === input.gm || "number" === typeof input.gm) && (undefined === input.bm || "number" === typeof input.bm) && (undefined === input.rh || "number" === typeof input.rh) && (undefined === input.gh || "number" === typeof input.gh) && (undefined === input.bh || "number" === typeof input.bh); const _io13 = 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); const _io14 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y); const _io15 = input => undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => Array.isArray(elem) && elem.every(elem => "number" === typeof elem)); const _io16 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem)) && (undefined === input.diarization || "boolean" === typeof input.diarization); const _io17 = input => "string" === typeof input.format && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && _io18(input.transcribe)) && (undefined === input.translate || "object" === typeof input.translate && null !== input.translate && _io19(input.translate)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io20(input.audio)) && true && (undefined === input.pick || Array.isArray(input.pick) && input.pick.every(elem => "string" === typeof elem)) && (null !== input.subtitle && (undefined === input.subtitle || "string" === typeof input.subtitle || "object" === typeof input.subtitle && null !== input.subtitle && false === Array.isArray(input.subtitle) && _io21(input.subtitle))); const _io18 = input => "string" === typeof input.engine; const _io19 = input => "string" === typeof input.language; const _io20 = input => (undefined === input.codec || "string" === typeof input.codec) && (undefined === input.pan || "string" === typeof input.pan) && (undefined === input.samplerate || "number" === typeof input.samplerate) && (undefined === input.split || "boolean" === typeof input.split); const _io21 = input => (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.style || "string" === typeof input.style) && (undefined === input.ccconverter || "object" === typeof input.ccconverter && null !== input.ccconverter && false === Array.isArray(input.ccconverter) && _io22(input.ccconverter)) && (undefined === input.ass || "object" === typeof input.ass && null !== input.ass && false === Array.isArray(input.ass) && _io23(input.ass)); const _io22 = input => undefined === input.preset || "string" === typeof input.preset; const _io23 = input => (undefined === input.futureWordWrapping || "boolean" === typeof input.futureWordWrapping) && (undefined === input.scaledBorderAndShadow || "boolean" === typeof input.scaledBorderAndShadow) && (undefined === input.enableUnsafeLineSpacingHack || "boolean" === typeof input.enableUnsafeLineSpacingHack); const _ao0 = (input, _path, _exceptionable = true) => ("string" === typeof input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18459
18612
|
method: "typia.assert",
|
|
18460
18613
|
path: _path + ".type",
|
|
18461
18614
|
expected: "string",
|
|
@@ -18495,7 +18648,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
18495
18648
|
path: _path + ".profile",
|
|
18496
18649
|
expected: "RenderProfileObject",
|
|
18497
18650
|
value: input.profile
|
|
18498
|
-
}, _errorFactory)) &&
|
|
18651
|
+
}, _errorFactory)) && _ao17(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18499
18652
|
method: "typia.assert",
|
|
18500
18653
|
path: _path + ".profile",
|
|
18501
18654
|
expected: "RenderProfileObject",
|
|
@@ -18560,7 +18713,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
18560
18713
|
path: _path + ".audio",
|
|
18561
18714
|
expected: "(__type.o7 | undefined)",
|
|
18562
18715
|
value: input.audio
|
|
18563
|
-
}, _errorFactory)) &&
|
|
18716
|
+
}, _errorFactory)) && _ao15(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18564
18717
|
method: "typia.assert",
|
|
18565
18718
|
path: _path + ".audio",
|
|
18566
18719
|
expected: "(__type.o7 | undefined)",
|
|
@@ -18580,7 +18733,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
18580
18733
|
path: _path + ".transcribe",
|
|
18581
18734
|
expected: "(__type.o8 | undefined)",
|
|
18582
18735
|
value: input.transcribe
|
|
18583
|
-
}, _errorFactory)) &&
|
|
18736
|
+
}, _errorFactory)) && _ao16(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18584
18737
|
method: "typia.assert",
|
|
18585
18738
|
path: _path + ".transcribe",
|
|
18586
18739
|
expected: "(__type.o8 | undefined)",
|
|
@@ -18845,6 +18998,16 @@ function _assertDomainRecord(domain, input) {
|
|
|
18845
18998
|
path: _path + ".crop",
|
|
18846
18999
|
expected: "(RenderSceneCrop | undefined)",
|
|
18847
19000
|
value: input.crop
|
|
19001
|
+
}, _errorFactory)) && (undefined === input.focus || ("object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19002
|
+
method: "typia.assert",
|
|
19003
|
+
path: _path + ".focus",
|
|
19004
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
19005
|
+
value: input.focus
|
|
19006
|
+
}, _errorFactory)) && _ao14(input.focus, _path + ".focus", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19007
|
+
method: "typia.assert",
|
|
19008
|
+
path: _path + ".focus",
|
|
19009
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
19010
|
+
value: input.focus
|
|
18848
19011
|
}, _errorFactory)) && (undefined === input.orientation || "number" === typeof input.orientation || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18849
19012
|
method: "typia.assert",
|
|
18850
19013
|
path: _path + ".orientation",
|
|
@@ -18990,7 +19153,17 @@ function _assertDomainRecord(domain, input) {
|
|
|
18990
19153
|
path: _path + ".height",
|
|
18991
19154
|
expected: "(number | undefined)",
|
|
18992
19155
|
value: input.height
|
|
18993
|
-
}, _errorFactory)); const _ao14 = (input, _path, _exceptionable = true) => undefined === input.
|
|
19156
|
+
}, _errorFactory)); const _ao14 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19157
|
+
method: "typia.assert",
|
|
19158
|
+
path: _path + ".x",
|
|
19159
|
+
expected: "(number | undefined)",
|
|
19160
|
+
value: input.x
|
|
19161
|
+
}, _errorFactory)) && (undefined === input.y || "number" === typeof input.y || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19162
|
+
method: "typia.assert",
|
|
19163
|
+
path: _path + ".y",
|
|
19164
|
+
expected: "(number | undefined)",
|
|
19165
|
+
value: input.y
|
|
19166
|
+
}, _errorFactory)); const _ao15 = (input, _path, _exceptionable = true) => undefined === input.pan || (Array.isArray(input.pan) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18994
19167
|
method: "typia.assert",
|
|
18995
19168
|
path: _path + ".pan",
|
|
18996
19169
|
expected: "(Array<Array<number>> | undefined)",
|
|
@@ -19015,7 +19188,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
19015
19188
|
path: _path + ".pan",
|
|
19016
19189
|
expected: "(Array<Array<number>> | undefined)",
|
|
19017
19190
|
value: input.pan
|
|
19018
|
-
}, _errorFactory); const
|
|
19191
|
+
}, _errorFactory); const _ao16 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19019
19192
|
method: "typia.assert",
|
|
19020
19193
|
path: _path + ".language",
|
|
19021
19194
|
expected: "(string | undefined)",
|
|
@@ -19040,7 +19213,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
19040
19213
|
path: _path + ".diarization",
|
|
19041
19214
|
expected: "(boolean | undefined)",
|
|
19042
19215
|
value: input.diarization
|
|
19043
|
-
}, _errorFactory)); const
|
|
19216
|
+
}, _errorFactory)); const _ao17 = (input, _path, _exceptionable = true) => ("string" === typeof input.format || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19044
19217
|
method: "typia.assert",
|
|
19045
19218
|
path: _path + ".format",
|
|
19046
19219
|
expected: "string",
|
|
@@ -19050,7 +19223,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
19050
19223
|
path: _path + ".transcribe",
|
|
19051
19224
|
expected: "(__type.o9 | undefined)",
|
|
19052
19225
|
value: input.transcribe
|
|
19053
|
-
}, _errorFactory)) &&
|
|
19226
|
+
}, _errorFactory)) && _ao18(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19054
19227
|
method: "typia.assert",
|
|
19055
19228
|
path: _path + ".transcribe",
|
|
19056
19229
|
expected: "(__type.o9 | undefined)",
|
|
@@ -19060,7 +19233,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
19060
19233
|
path: _path + ".translate",
|
|
19061
19234
|
expected: "(__type.o10 | undefined)",
|
|
19062
19235
|
value: input.translate
|
|
19063
|
-
}, _errorFactory)) &&
|
|
19236
|
+
}, _errorFactory)) && _ao19(input.translate, _path + ".translate", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19064
19237
|
method: "typia.assert",
|
|
19065
19238
|
path: _path + ".translate",
|
|
19066
19239
|
expected: "(__type.o10 | undefined)",
|
|
@@ -19070,7 +19243,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
19070
19243
|
path: _path + ".audio",
|
|
19071
19244
|
expected: "(__type.o11 | undefined)",
|
|
19072
19245
|
value: input.audio
|
|
19073
|
-
}, _errorFactory)) &&
|
|
19246
|
+
}, _errorFactory)) && _ao20(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19074
19247
|
method: "typia.assert",
|
|
19075
19248
|
path: _path + ".audio",
|
|
19076
19249
|
expected: "(__type.o11 | undefined)",
|
|
@@ -19100,22 +19273,22 @@ function _assertDomainRecord(domain, input) {
|
|
|
19100
19273
|
path: _path + ".subtitle",
|
|
19101
19274
|
expected: "(SubtitleProfile | string | undefined)",
|
|
19102
19275
|
value: input.subtitle
|
|
19103
|
-
}, _errorFactory)) &&
|
|
19276
|
+
}, _errorFactory)) && _ao21(input.subtitle, _path + ".subtitle", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19104
19277
|
method: "typia.assert",
|
|
19105
19278
|
path: _path + ".subtitle",
|
|
19106
19279
|
expected: "(SubtitleProfile | string | undefined)",
|
|
19107
19280
|
value: input.subtitle
|
|
19108
|
-
}, _errorFactory))); const
|
|
19281
|
+
}, _errorFactory))); const _ao18 = (input, _path, _exceptionable = true) => "string" === typeof input.engine || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19109
19282
|
method: "typia.assert",
|
|
19110
19283
|
path: _path + ".engine",
|
|
19111
19284
|
expected: "string",
|
|
19112
19285
|
value: input.engine
|
|
19113
|
-
}, _errorFactory); const
|
|
19286
|
+
}, _errorFactory); const _ao19 = (input, _path, _exceptionable = true) => "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19114
19287
|
method: "typia.assert",
|
|
19115
19288
|
path: _path + ".language",
|
|
19116
19289
|
expected: "string",
|
|
19117
19290
|
value: input.language
|
|
19118
|
-
}, _errorFactory); const
|
|
19291
|
+
}, _errorFactory); const _ao20 = (input, _path, _exceptionable = true) => (undefined === input.codec || "string" === typeof input.codec || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19119
19292
|
method: "typia.assert",
|
|
19120
19293
|
path: _path + ".codec",
|
|
19121
19294
|
expected: "(string | undefined)",
|
|
@@ -19135,7 +19308,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
19135
19308
|
path: _path + ".split",
|
|
19136
19309
|
expected: "(boolean | undefined)",
|
|
19137
19310
|
value: input.split
|
|
19138
|
-
}, _errorFactory)); const
|
|
19311
|
+
}, _errorFactory)); const _ao21 = (input, _path, _exceptionable = true) => (undefined === input.lang || "string" === typeof input.lang || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19139
19312
|
method: "typia.assert",
|
|
19140
19313
|
path: _path + ".lang",
|
|
19141
19314
|
expected: "(string | undefined)",
|
|
@@ -19150,7 +19323,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
19150
19323
|
path: _path + ".ccconverter",
|
|
19151
19324
|
expected: "(__type.o12 | undefined)",
|
|
19152
19325
|
value: input.ccconverter
|
|
19153
|
-
}, _errorFactory)) &&
|
|
19326
|
+
}, _errorFactory)) && _ao22(input.ccconverter, _path + ".ccconverter", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19154
19327
|
method: "typia.assert",
|
|
19155
19328
|
path: _path + ".ccconverter",
|
|
19156
19329
|
expected: "(__type.o12 | undefined)",
|
|
@@ -19160,17 +19333,17 @@ function _assertDomainRecord(domain, input) {
|
|
|
19160
19333
|
path: _path + ".ass",
|
|
19161
19334
|
expected: "(__type.o13 | undefined)",
|
|
19162
19335
|
value: input.ass
|
|
19163
|
-
}, _errorFactory)) &&
|
|
19336
|
+
}, _errorFactory)) && _ao23(input.ass, _path + ".ass", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19164
19337
|
method: "typia.assert",
|
|
19165
19338
|
path: _path + ".ass",
|
|
19166
19339
|
expected: "(__type.o13 | undefined)",
|
|
19167
19340
|
value: input.ass
|
|
19168
|
-
}, _errorFactory)); const
|
|
19341
|
+
}, _errorFactory)); const _ao22 = (input, _path, _exceptionable = true) => undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19169
19342
|
method: "typia.assert",
|
|
19170
19343
|
path: _path + ".preset",
|
|
19171
19344
|
expected: "(string | undefined)",
|
|
19172
19345
|
value: input.preset
|
|
19173
|
-
}, _errorFactory); const
|
|
19346
|
+
}, _errorFactory); const _ao23 = (input, _path, _exceptionable = true) => (undefined === input.futureWordWrapping || "boolean" === typeof input.futureWordWrapping || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19174
19347
|
method: "typia.assert",
|
|
19175
19348
|
path: _path + ".futureWordWrapping",
|
|
19176
19349
|
expected: "(boolean | undefined)",
|