@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 assertGuardRecord(name, input) {
|
|
@@ -9406,6 +9406,77 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
9406
9406
|
}
|
|
9407
9407
|
}; })()(input);
|
|
9408
9408
|
}
|
|
9409
|
+
case ":event.readDuration?": {
|
|
9410
|
+
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, {
|
|
9411
|
+
method: "typia.assertGuard",
|
|
9412
|
+
path: _path + ".numChars",
|
|
9413
|
+
expected: "(number | undefined)",
|
|
9414
|
+
value: input.numChars
|
|
9415
|
+
}, _errorFactory)) && (undefined === input.numWords || "number" === typeof input.numWords || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9416
|
+
method: "typia.assertGuard",
|
|
9417
|
+
path: _path + ".numWords",
|
|
9418
|
+
expected: "(number | undefined)",
|
|
9419
|
+
value: input.numWords
|
|
9420
|
+
}, _errorFactory)) && (undefined === input.readRate || "number" === typeof input.readRate || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9421
|
+
method: "typia.assertGuard",
|
|
9422
|
+
path: _path + ".readRate",
|
|
9423
|
+
expected: "(number | undefined)",
|
|
9424
|
+
value: input.readRate
|
|
9425
|
+
}, _errorFactory)) && (undefined === input.readDuration || "number" === typeof input.readDuration || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9426
|
+
method: "typia.assertGuard",
|
|
9427
|
+
path: _path + ".readDuration",
|
|
9428
|
+
expected: "(number | undefined)",
|
|
9429
|
+
value: input.readDuration
|
|
9430
|
+
}, _errorFactory)) && (undefined === input.readType || "characters" === input.readType || "words" === input.readType || "wordsPerMinute" === input.readType || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9431
|
+
method: "typia.assertGuard",
|
|
9432
|
+
path: _path + ".readType",
|
|
9433
|
+
expected: "(\"characters\" | \"words\" | \"wordsPerMinute\" | undefined)",
|
|
9434
|
+
value: input.readType
|
|
9435
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
9436
|
+
if (false === __is(input)) {
|
|
9437
|
+
_errorFactory = errorFactory;
|
|
9438
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
9439
|
+
method: "typia.assertGuard",
|
|
9440
|
+
path: _path + "",
|
|
9441
|
+
expected: "EventReadDurationRecord",
|
|
9442
|
+
value: input
|
|
9443
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
9444
|
+
method: "typia.assertGuard",
|
|
9445
|
+
path: _path + "",
|
|
9446
|
+
expected: "EventReadDurationRecord",
|
|
9447
|
+
value: input
|
|
9448
|
+
}, _errorFactory))(input, "$input", true);
|
|
9449
|
+
}
|
|
9450
|
+
}; })()(input);
|
|
9451
|
+
}
|
|
9452
|
+
case ":event.readRate?": {
|
|
9453
|
+
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, {
|
|
9454
|
+
method: "typia.assertGuard",
|
|
9455
|
+
path: _path + ".readRate",
|
|
9456
|
+
expected: "(number | undefined)",
|
|
9457
|
+
value: input.readRate
|
|
9458
|
+
}, _errorFactory)) && (undefined === input.readType || "characters" === input.readType || "words" === input.readType || "wordsPerMinute" === input.readType || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9459
|
+
method: "typia.assertGuard",
|
|
9460
|
+
path: _path + ".readType",
|
|
9461
|
+
expected: "(\"characters\" | \"words\" | \"wordsPerMinute\" | undefined)",
|
|
9462
|
+
value: input.readType
|
|
9463
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
9464
|
+
if (false === __is(input)) {
|
|
9465
|
+
_errorFactory = errorFactory;
|
|
9466
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
9467
|
+
method: "typia.assertGuard",
|
|
9468
|
+
path: _path + "",
|
|
9469
|
+
expected: "EventReadRateRecord",
|
|
9470
|
+
value: input
|
|
9471
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
9472
|
+
method: "typia.assertGuard",
|
|
9473
|
+
path: _path + "",
|
|
9474
|
+
expected: "EventReadRateRecord",
|
|
9475
|
+
value: input
|
|
9476
|
+
}, _errorFactory))(input, "$input", true);
|
|
9477
|
+
}
|
|
9478
|
+
}; })()(input);
|
|
9479
|
+
}
|
|
9409
9480
|
case ":file.replicate": {
|
|
9410
9481
|
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 => {
|
|
9411
9482
|
const value = input[key];
|
|
@@ -10773,12 +10844,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10773
10844
|
}; })()(input);
|
|
10774
10845
|
}
|
|
10775
10846
|
case ":media.source": {
|
|
10776
|
-
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) &&
|
|
10847
|
+
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 => {
|
|
10777
10848
|
const value = input[key];
|
|
10778
10849
|
if (undefined === value)
|
|
10779
10850
|
return true;
|
|
10780
10851
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io4(value);
|
|
10781
|
-
}); 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
|
|
10852
|
+
}); 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, {
|
|
10782
10853
|
method: "typia.assertGuard",
|
|
10783
10854
|
path: _path + ".id",
|
|
10784
10855
|
expected: "(string | undefined)",
|
|
@@ -10838,7 +10909,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10838
10909
|
path: _path + ".audio",
|
|
10839
10910
|
expected: "(__type.o6 | undefined)",
|
|
10840
10911
|
value: input.audio
|
|
10841
|
-
}, _errorFactory)) &&
|
|
10912
|
+
}, _errorFactory)) && _ao13(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10842
10913
|
method: "typia.assertGuard",
|
|
10843
10914
|
path: _path + ".audio",
|
|
10844
10915
|
expected: "(__type.o6 | undefined)",
|
|
@@ -10858,7 +10929,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10858
10929
|
path: _path + ".transcribe",
|
|
10859
10930
|
expected: "(__type.o7 | undefined)",
|
|
10860
10931
|
value: input.transcribe
|
|
10861
|
-
}, _errorFactory)) &&
|
|
10932
|
+
}, _errorFactory)) && _ao14(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10862
10933
|
method: "typia.assertGuard",
|
|
10863
10934
|
path: _path + ".transcribe",
|
|
10864
10935
|
expected: "(__type.o7 | undefined)",
|
|
@@ -11123,6 +11194,16 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11123
11194
|
path: _path + ".crop",
|
|
11124
11195
|
expected: "(RenderSceneCrop | undefined)",
|
|
11125
11196
|
value: input.crop
|
|
11197
|
+
}, _errorFactory)) && (undefined === input.focus || ("object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11198
|
+
method: "typia.assertGuard",
|
|
11199
|
+
path: _path + ".focus",
|
|
11200
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
11201
|
+
value: input.focus
|
|
11202
|
+
}, _errorFactory)) && _ao12(input.focus, _path + ".focus", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11203
|
+
method: "typia.assertGuard",
|
|
11204
|
+
path: _path + ".focus",
|
|
11205
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
11206
|
+
value: input.focus
|
|
11126
11207
|
}, _errorFactory)) && (undefined === input.orientation || "number" === typeof input.orientation || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11127
11208
|
method: "typia.assertGuard",
|
|
11128
11209
|
path: _path + ".orientation",
|
|
@@ -11268,7 +11349,17 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11268
11349
|
path: _path + ".height",
|
|
11269
11350
|
expected: "(number | undefined)",
|
|
11270
11351
|
value: input.height
|
|
11271
|
-
}, _errorFactory)); const _ao12 = (input, _path, _exceptionable = true) => undefined === input.
|
|
11352
|
+
}, _errorFactory)); const _ao12 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11353
|
+
method: "typia.assertGuard",
|
|
11354
|
+
path: _path + ".x",
|
|
11355
|
+
expected: "(number | undefined)",
|
|
11356
|
+
value: input.x
|
|
11357
|
+
}, _errorFactory)) && (undefined === input.y || "number" === typeof input.y || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11358
|
+
method: "typia.assertGuard",
|
|
11359
|
+
path: _path + ".y",
|
|
11360
|
+
expected: "(number | undefined)",
|
|
11361
|
+
value: input.y
|
|
11362
|
+
}, _errorFactory)); const _ao13 = (input, _path, _exceptionable = true) => undefined === input.pan || (Array.isArray(input.pan) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11272
11363
|
method: "typia.assertGuard",
|
|
11273
11364
|
path: _path + ".pan",
|
|
11274
11365
|
expected: "(Array<Array<number>> | undefined)",
|
|
@@ -11293,7 +11384,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11293
11384
|
path: _path + ".pan",
|
|
11294
11385
|
expected: "(Array<Array<number>> | undefined)",
|
|
11295
11386
|
value: input.pan
|
|
11296
|
-
}, _errorFactory); const
|
|
11387
|
+
}, _errorFactory); const _ao14 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11297
11388
|
method: "typia.assertGuard",
|
|
11298
11389
|
path: _path + ".language",
|
|
11299
11390
|
expected: "(string | undefined)",
|
|
@@ -12128,12 +12219,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
12128
12219
|
if (undefined === value)
|
|
12129
12220
|
return true;
|
|
12130
12221
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io1(value);
|
|
12131
|
-
}); 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) &&
|
|
12222
|
+
}); 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 => {
|
|
12132
12223
|
const value = input[key];
|
|
12133
12224
|
if (undefined === value)
|
|
12134
12225
|
return true;
|
|
12135
12226
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io5(value);
|
|
12136
|
-
}); 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
|
|
12227
|
+
}); 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 => {
|
|
12137
12228
|
const value = input[key];
|
|
12138
12229
|
if (undefined === value)
|
|
12139
12230
|
return true;
|
|
@@ -12208,7 +12299,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
12208
12299
|
path: _path + ".audio",
|
|
12209
12300
|
expected: "(__type.o6 | undefined)",
|
|
12210
12301
|
value: input.audio
|
|
12211
|
-
}, _errorFactory)) &&
|
|
12302
|
+
}, _errorFactory)) && _ao14(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12212
12303
|
method: "typia.assertGuard",
|
|
12213
12304
|
path: _path + ".audio",
|
|
12214
12305
|
expected: "(__type.o6 | undefined)",
|
|
@@ -12228,7 +12319,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
12228
12319
|
path: _path + ".transcribe",
|
|
12229
12320
|
expected: "(__type.o7 | undefined)",
|
|
12230
12321
|
value: input.transcribe
|
|
12231
|
-
}, _errorFactory)) &&
|
|
12322
|
+
}, _errorFactory)) && _ao15(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12232
12323
|
method: "typia.assertGuard",
|
|
12233
12324
|
path: _path + ".transcribe",
|
|
12234
12325
|
expected: "(__type.o7 | undefined)",
|
|
@@ -12493,6 +12584,16 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
12493
12584
|
path: _path + ".crop",
|
|
12494
12585
|
expected: "(RenderSceneCrop | undefined)",
|
|
12495
12586
|
value: input.crop
|
|
12587
|
+
}, _errorFactory)) && (undefined === input.focus || ("object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12588
|
+
method: "typia.assertGuard",
|
|
12589
|
+
path: _path + ".focus",
|
|
12590
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
12591
|
+
value: input.focus
|
|
12592
|
+
}, _errorFactory)) && _ao13(input.focus, _path + ".focus", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12593
|
+
method: "typia.assertGuard",
|
|
12594
|
+
path: _path + ".focus",
|
|
12595
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
12596
|
+
value: input.focus
|
|
12496
12597
|
}, _errorFactory)) && (undefined === input.orientation || "number" === typeof input.orientation || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12497
12598
|
method: "typia.assertGuard",
|
|
12498
12599
|
path: _path + ".orientation",
|
|
@@ -12638,7 +12739,17 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
12638
12739
|
path: _path + ".height",
|
|
12639
12740
|
expected: "(number | undefined)",
|
|
12640
12741
|
value: input.height
|
|
12641
|
-
}, _errorFactory)); const _ao13 = (input, _path, _exceptionable = true) => undefined === input.
|
|
12742
|
+
}, _errorFactory)); const _ao13 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12743
|
+
method: "typia.assertGuard",
|
|
12744
|
+
path: _path + ".x",
|
|
12745
|
+
expected: "(number | undefined)",
|
|
12746
|
+
value: input.x
|
|
12747
|
+
}, _errorFactory)) && (undefined === input.y || "number" === typeof input.y || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12748
|
+
method: "typia.assertGuard",
|
|
12749
|
+
path: _path + ".y",
|
|
12750
|
+
expected: "(number | undefined)",
|
|
12751
|
+
value: input.y
|
|
12752
|
+
}, _errorFactory)); const _ao14 = (input, _path, _exceptionable = true) => undefined === input.pan || (Array.isArray(input.pan) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12642
12753
|
method: "typia.assertGuard",
|
|
12643
12754
|
path: _path + ".pan",
|
|
12644
12755
|
expected: "(Array<Array<number>> | undefined)",
|
|
@@ -12663,7 +12774,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
12663
12774
|
path: _path + ".pan",
|
|
12664
12775
|
expected: "(Array<Array<number>> | undefined)",
|
|
12665
12776
|
value: input.pan
|
|
12666
|
-
}, _errorFactory); const
|
|
12777
|
+
}, _errorFactory); const _ao15 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12667
12778
|
method: "typia.assertGuard",
|
|
12668
12779
|
path: _path + ".language",
|
|
12669
12780
|
expected: "(string | undefined)",
|
|
@@ -14714,46 +14825,46 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14714
14825
|
}; })()(input);
|
|
14715
14826
|
}
|
|
14716
14827
|
case ":publish": {
|
|
14717
|
-
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 &&
|
|
14828
|
+
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 => {
|
|
14718
14829
|
const value = input[key];
|
|
14719
14830
|
if (undefined === value)
|
|
14720
14831
|
return true;
|
|
14721
14832
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io6(value);
|
|
14722
|
-
}); 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
|
|
14833
|
+
}); 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 => {
|
|
14723
14834
|
const value = input[key];
|
|
14724
14835
|
if (undefined === value)
|
|
14725
14836
|
return true;
|
|
14726
14837
|
return null !== value && undefined !== value && ("string" === typeof value || "object" === typeof value && null !== value && _iu0(value));
|
|
14727
|
-
}); const
|
|
14838
|
+
}); 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 => {
|
|
14728
14839
|
const value = input[key];
|
|
14729
14840
|
if (undefined === value)
|
|
14730
14841
|
return true;
|
|
14731
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
14732
|
-
}); const
|
|
14842
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io35(value);
|
|
14843
|
+
}); 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 => {
|
|
14733
14844
|
if (["id", "path", "filename", "directory", "subtitle", "metafile"].some(prop => key === prop))
|
|
14734
14845
|
return true;
|
|
14735
14846
|
const value = input[key];
|
|
14736
14847
|
if (undefined === value)
|
|
14737
14848
|
return true;
|
|
14738
14849
|
return true;
|
|
14739
|
-
}); const
|
|
14850
|
+
}); 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 => (() => {
|
|
14740
14851
|
if (undefined !== input.path)
|
|
14741
|
-
return _io28(input);
|
|
14742
|
-
else if (undefined !== input.__context)
|
|
14743
14852
|
return _io29(input);
|
|
14853
|
+
else if (undefined !== input.__context)
|
|
14854
|
+
return _io30(input);
|
|
14744
14855
|
else
|
|
14745
14856
|
return false;
|
|
14746
14857
|
})(); const _iu1 = input => (() => {
|
|
14747
14858
|
if (_io0(input))
|
|
14748
14859
|
return _io0(input);
|
|
14749
|
-
if (_io25(input))
|
|
14750
|
-
return _io25(input);
|
|
14751
|
-
if (_io36(input))
|
|
14752
|
-
return _io36(input);
|
|
14753
14860
|
if (_io26(input))
|
|
14754
14861
|
return _io26(input);
|
|
14755
|
-
if (
|
|
14756
|
-
return
|
|
14862
|
+
if (_io37(input))
|
|
14863
|
+
return _io37(input);
|
|
14864
|
+
if (_io27(input))
|
|
14865
|
+
return _io27(input);
|
|
14866
|
+
if (_io41(input))
|
|
14867
|
+
return _io41(input);
|
|
14757
14868
|
return false;
|
|
14758
14869
|
})(); const _ao0 = (input, _path, _exceptionable = true) => (null === input.type || undefined === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14759
14870
|
method: "typia.assertGuard",
|
|
@@ -14785,7 +14896,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14785
14896
|
path: _path + ".error",
|
|
14786
14897
|
expected: "(__type.o13 | null | undefined)",
|
|
14787
14898
|
value: input.error
|
|
14788
|
-
}, _errorFactory)) &&
|
|
14899
|
+
}, _errorFactory)) && _ao24(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14789
14900
|
method: "typia.assertGuard",
|
|
14790
14901
|
path: _path + ".error",
|
|
14791
14902
|
expected: "(__type.o13 | null | undefined)",
|
|
@@ -14800,7 +14911,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14800
14911
|
path: _path + ".messages[" + _index12 + "]",
|
|
14801
14912
|
expected: "Message",
|
|
14802
14913
|
value: elem
|
|
14803
|
-
}, _errorFactory)) &&
|
|
14914
|
+
}, _errorFactory)) && _ao25(elem, _path + ".messages[" + _index12 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14804
14915
|
method: "typia.assertGuard",
|
|
14805
14916
|
path: _path + ".messages[" + _index12 + "]",
|
|
14806
14917
|
expected: "Message",
|
|
@@ -14835,7 +14946,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14835
14946
|
path: _path + ".profile",
|
|
14836
14947
|
expected: "(RenderProfileObject | undefined)",
|
|
14837
14948
|
value: input.profile
|
|
14838
|
-
}, _errorFactory)) &&
|
|
14949
|
+
}, _errorFactory)) && _ao17(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14839
14950
|
method: "typia.assertGuard",
|
|
14840
14951
|
path: _path + ".profile",
|
|
14841
14952
|
expected: "(RenderProfileObject | undefined)",
|
|
@@ -14900,7 +15011,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14900
15011
|
path: _path + ".audio",
|
|
14901
15012
|
expected: "(__type.o6 | undefined)",
|
|
14902
15013
|
value: input.audio
|
|
14903
|
-
}, _errorFactory)) &&
|
|
15014
|
+
}, _errorFactory)) && _ao15(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14904
15015
|
method: "typia.assertGuard",
|
|
14905
15016
|
path: _path + ".audio",
|
|
14906
15017
|
expected: "(__type.o6 | undefined)",
|
|
@@ -14920,7 +15031,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14920
15031
|
path: _path + ".transcribe",
|
|
14921
15032
|
expected: "(__type.o7 | undefined)",
|
|
14922
15033
|
value: input.transcribe
|
|
14923
|
-
}, _errorFactory)) &&
|
|
15034
|
+
}, _errorFactory)) && _ao16(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14924
15035
|
method: "typia.assertGuard",
|
|
14925
15036
|
path: _path + ".transcribe",
|
|
14926
15037
|
expected: "(__type.o7 | undefined)",
|
|
@@ -15185,6 +15296,16 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15185
15296
|
path: _path + ".crop",
|
|
15186
15297
|
expected: "(RenderSceneCrop | undefined)",
|
|
15187
15298
|
value: input.crop
|
|
15299
|
+
}, _errorFactory)) && (undefined === input.focus || ("object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15300
|
+
method: "typia.assertGuard",
|
|
15301
|
+
path: _path + ".focus",
|
|
15302
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
15303
|
+
value: input.focus
|
|
15304
|
+
}, _errorFactory)) && _ao14(input.focus, _path + ".focus", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15305
|
+
method: "typia.assertGuard",
|
|
15306
|
+
path: _path + ".focus",
|
|
15307
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
15308
|
+
value: input.focus
|
|
15188
15309
|
}, _errorFactory)) && (undefined === input.orientation || "number" === typeof input.orientation || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15189
15310
|
method: "typia.assertGuard",
|
|
15190
15311
|
path: _path + ".orientation",
|
|
@@ -15330,7 +15451,17 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15330
15451
|
path: _path + ".height",
|
|
15331
15452
|
expected: "(number | undefined)",
|
|
15332
15453
|
value: input.height
|
|
15333
|
-
}, _errorFactory)); const _ao14 = (input, _path, _exceptionable = true) => undefined === input.
|
|
15454
|
+
}, _errorFactory)); const _ao14 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15455
|
+
method: "typia.assertGuard",
|
|
15456
|
+
path: _path + ".x",
|
|
15457
|
+
expected: "(number | undefined)",
|
|
15458
|
+
value: input.x
|
|
15459
|
+
}, _errorFactory)) && (undefined === input.y || "number" === typeof input.y || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15460
|
+
method: "typia.assertGuard",
|
|
15461
|
+
path: _path + ".y",
|
|
15462
|
+
expected: "(number | undefined)",
|
|
15463
|
+
value: input.y
|
|
15464
|
+
}, _errorFactory)); const _ao15 = (input, _path, _exceptionable = true) => undefined === input.pan || (Array.isArray(input.pan) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15334
15465
|
method: "typia.assertGuard",
|
|
15335
15466
|
path: _path + ".pan",
|
|
15336
15467
|
expected: "(Array<Array<number>> | undefined)",
|
|
@@ -15355,7 +15486,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15355
15486
|
path: _path + ".pan",
|
|
15356
15487
|
expected: "(Array<Array<number>> | undefined)",
|
|
15357
15488
|
value: input.pan
|
|
15358
|
-
}, _errorFactory); const
|
|
15489
|
+
}, _errorFactory); const _ao16 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15359
15490
|
method: "typia.assertGuard",
|
|
15360
15491
|
path: _path + ".language",
|
|
15361
15492
|
expected: "(string | undefined)",
|
|
@@ -15380,7 +15511,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15380
15511
|
path: _path + ".diarization",
|
|
15381
15512
|
expected: "(boolean | undefined)",
|
|
15382
15513
|
value: input.diarization
|
|
15383
|
-
}, _errorFactory)); const
|
|
15514
|
+
}, _errorFactory)); const _ao17 = (input, _path, _exceptionable = true) => ("string" === typeof input.format || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15384
15515
|
method: "typia.assertGuard",
|
|
15385
15516
|
path: _path + ".format",
|
|
15386
15517
|
expected: "string",
|
|
@@ -15390,7 +15521,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15390
15521
|
path: _path + ".transcribe",
|
|
15391
15522
|
expected: "(__type.o8 | undefined)",
|
|
15392
15523
|
value: input.transcribe
|
|
15393
|
-
}, _errorFactory)) &&
|
|
15524
|
+
}, _errorFactory)) && _ao18(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15394
15525
|
method: "typia.assertGuard",
|
|
15395
15526
|
path: _path + ".transcribe",
|
|
15396
15527
|
expected: "(__type.o8 | undefined)",
|
|
@@ -15400,7 +15531,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15400
15531
|
path: _path + ".translate",
|
|
15401
15532
|
expected: "(__type.o9 | undefined)",
|
|
15402
15533
|
value: input.translate
|
|
15403
|
-
}, _errorFactory)) &&
|
|
15534
|
+
}, _errorFactory)) && _ao19(input.translate, _path + ".translate", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15404
15535
|
method: "typia.assertGuard",
|
|
15405
15536
|
path: _path + ".translate",
|
|
15406
15537
|
expected: "(__type.o9 | undefined)",
|
|
@@ -15410,7 +15541,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15410
15541
|
path: _path + ".audio",
|
|
15411
15542
|
expected: "(__type.o10 | undefined)",
|
|
15412
15543
|
value: input.audio
|
|
15413
|
-
}, _errorFactory)) &&
|
|
15544
|
+
}, _errorFactory)) && _ao20(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15414
15545
|
method: "typia.assertGuard",
|
|
15415
15546
|
path: _path + ".audio",
|
|
15416
15547
|
expected: "(__type.o10 | undefined)",
|
|
@@ -15440,22 +15571,22 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15440
15571
|
path: _path + ".subtitle",
|
|
15441
15572
|
expected: "(SubtitleProfile | string | undefined)",
|
|
15442
15573
|
value: input.subtitle
|
|
15443
|
-
}, _errorFactory)) &&
|
|
15574
|
+
}, _errorFactory)) && _ao21(input.subtitle, _path + ".subtitle", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15444
15575
|
method: "typia.assertGuard",
|
|
15445
15576
|
path: _path + ".subtitle",
|
|
15446
15577
|
expected: "(SubtitleProfile | string | undefined)",
|
|
15447
15578
|
value: input.subtitle
|
|
15448
|
-
}, _errorFactory))); const
|
|
15579
|
+
}, _errorFactory))); const _ao18 = (input, _path, _exceptionable = true) => "string" === typeof input.engine || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15449
15580
|
method: "typia.assertGuard",
|
|
15450
15581
|
path: _path + ".engine",
|
|
15451
15582
|
expected: "string",
|
|
15452
15583
|
value: input.engine
|
|
15453
|
-
}, _errorFactory); const
|
|
15584
|
+
}, _errorFactory); const _ao19 = (input, _path, _exceptionable = true) => "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15454
15585
|
method: "typia.assertGuard",
|
|
15455
15586
|
path: _path + ".language",
|
|
15456
15587
|
expected: "string",
|
|
15457
15588
|
value: input.language
|
|
15458
|
-
}, _errorFactory); const
|
|
15589
|
+
}, _errorFactory); const _ao20 = (input, _path, _exceptionable = true) => (undefined === input.codec || "string" === typeof input.codec || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15459
15590
|
method: "typia.assertGuard",
|
|
15460
15591
|
path: _path + ".codec",
|
|
15461
15592
|
expected: "(string | undefined)",
|
|
@@ -15475,7 +15606,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15475
15606
|
path: _path + ".split",
|
|
15476
15607
|
expected: "(boolean | undefined)",
|
|
15477
15608
|
value: input.split
|
|
15478
|
-
}, _errorFactory)); const
|
|
15609
|
+
}, _errorFactory)); const _ao21 = (input, _path, _exceptionable = true) => (undefined === input.lang || "string" === typeof input.lang || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15479
15610
|
method: "typia.assertGuard",
|
|
15480
15611
|
path: _path + ".lang",
|
|
15481
15612
|
expected: "(string | undefined)",
|
|
@@ -15490,7 +15621,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15490
15621
|
path: _path + ".ccconverter",
|
|
15491
15622
|
expected: "(__type.o11 | undefined)",
|
|
15492
15623
|
value: input.ccconverter
|
|
15493
|
-
}, _errorFactory)) &&
|
|
15624
|
+
}, _errorFactory)) && _ao22(input.ccconverter, _path + ".ccconverter", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15494
15625
|
method: "typia.assertGuard",
|
|
15495
15626
|
path: _path + ".ccconverter",
|
|
15496
15627
|
expected: "(__type.o11 | undefined)",
|
|
@@ -15500,17 +15631,17 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15500
15631
|
path: _path + ".ass",
|
|
15501
15632
|
expected: "(__type.o12 | undefined)",
|
|
15502
15633
|
value: input.ass
|
|
15503
|
-
}, _errorFactory)) &&
|
|
15634
|
+
}, _errorFactory)) && _ao23(input.ass, _path + ".ass", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15504
15635
|
method: "typia.assertGuard",
|
|
15505
15636
|
path: _path + ".ass",
|
|
15506
15637
|
expected: "(__type.o12 | undefined)",
|
|
15507
15638
|
value: input.ass
|
|
15508
|
-
}, _errorFactory)); const
|
|
15639
|
+
}, _errorFactory)); const _ao22 = (input, _path, _exceptionable = true) => undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15509
15640
|
method: "typia.assertGuard",
|
|
15510
15641
|
path: _path + ".preset",
|
|
15511
15642
|
expected: "(string | undefined)",
|
|
15512
15643
|
value: input.preset
|
|
15513
|
-
}, _errorFactory); const
|
|
15644
|
+
}, _errorFactory); const _ao23 = (input, _path, _exceptionable = true) => (undefined === input.futureWordWrapping || "boolean" === typeof input.futureWordWrapping || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15514
15645
|
method: "typia.assertGuard",
|
|
15515
15646
|
path: _path + ".futureWordWrapping",
|
|
15516
15647
|
expected: "(boolean | undefined)",
|
|
@@ -15525,12 +15656,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15525
15656
|
path: _path + ".enableUnsafeLineSpacingHack",
|
|
15526
15657
|
expected: "(boolean | undefined)",
|
|
15527
15658
|
value: input.enableUnsafeLineSpacingHack
|
|
15528
|
-
}, _errorFactory)); const
|
|
15659
|
+
}, _errorFactory)); const _ao24 = (input, _path, _exceptionable = true) => "string" === typeof input.method || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15529
15660
|
method: "typia.assertGuard",
|
|
15530
15661
|
path: _path + ".method",
|
|
15531
15662
|
expected: "string",
|
|
15532
15663
|
value: input.method
|
|
15533
|
-
}, _errorFactory); const
|
|
15664
|
+
}, _errorFactory); const _ao25 = (input, _path, _exceptionable = true) => ("number" === typeof input.level || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15534
15665
|
method: "typia.assertGuard",
|
|
15535
15666
|
path: _path + ".level",
|
|
15536
15667
|
expected: "number",
|
|
@@ -15545,7 +15676,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15545
15676
|
path: _path + ".msg",
|
|
15546
15677
|
expected: "string",
|
|
15547
15678
|
value: input.msg
|
|
15548
|
-
}, _errorFactory)); const
|
|
15679
|
+
}, _errorFactory)); const _ao26 = (input, _path, _exceptionable = true) => (undefined === input.type || "facebook" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15549
15680
|
method: "typia.assertGuard",
|
|
15550
15681
|
path: _path + ".type",
|
|
15551
15682
|
expected: "(\"facebook\" | undefined)",
|
|
@@ -15580,7 +15711,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15580
15711
|
path: _path + ".error",
|
|
15581
15712
|
expected: "(__type.o13 | null | undefined)",
|
|
15582
15713
|
value: input.error
|
|
15583
|
-
}, _errorFactory)) &&
|
|
15714
|
+
}, _errorFactory)) && _ao24(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15584
15715
|
method: "typia.assertGuard",
|
|
15585
15716
|
path: _path + ".error",
|
|
15586
15717
|
expected: "(__type.o13 | null | undefined)",
|
|
@@ -15595,7 +15726,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15595
15726
|
path: _path + ".messages[" + _index17 + "]",
|
|
15596
15727
|
expected: "Message",
|
|
15597
15728
|
value: elem
|
|
15598
|
-
}, _errorFactory)) &&
|
|
15729
|
+
}, _errorFactory)) && _ao25(elem, _path + ".messages[" + _index17 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15599
15730
|
method: "typia.assertGuard",
|
|
15600
15731
|
path: _path + ".messages[" + _index17 + "]",
|
|
15601
15732
|
expected: "Message",
|
|
@@ -15605,7 +15736,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15605
15736
|
path: _path + ".messages",
|
|
15606
15737
|
expected: "(Array<Message> | undefined)",
|
|
15607
15738
|
value: input.messages
|
|
15608
|
-
}, _errorFactory)); const
|
|
15739
|
+
}, _errorFactory)); const _ao27 = (input, _path, _exceptionable = true) => (undefined === input.type || "file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15609
15740
|
method: "typia.assertGuard",
|
|
15610
15741
|
path: _path + ".type",
|
|
15611
15742
|
expected: "(\"file\" | undefined)",
|
|
@@ -15625,7 +15756,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15625
15756
|
path: _path + ".renders",
|
|
15626
15757
|
expected: "(Record<string, FilePublishRender> | undefined)",
|
|
15627
15758
|
value: input.renders
|
|
15628
|
-
}, _errorFactory)) &&
|
|
15759
|
+
}, _errorFactory)) && _ao28(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15629
15760
|
method: "typia.assertGuard",
|
|
15630
15761
|
path: _path + ".renders",
|
|
15631
15762
|
expected: "(Record<string, FilePublishRender> | undefined)",
|
|
@@ -15635,7 +15766,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15635
15766
|
path: _path + ".draft",
|
|
15636
15767
|
expected: "(FilePublishDraft | undefined)",
|
|
15637
15768
|
value: input.draft
|
|
15638
|
-
}, _errorFactory)) &&
|
|
15769
|
+
}, _errorFactory)) && _ao32(input.draft, _path + ".draft", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15639
15770
|
method: "typia.assertGuard",
|
|
15640
15771
|
path: _path + ".draft",
|
|
15641
15772
|
expected: "(FilePublishDraft | undefined)",
|
|
@@ -15645,7 +15776,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15645
15776
|
path: _path + ".remote",
|
|
15646
15777
|
expected: "(FilePublishRemote | undefined)",
|
|
15647
15778
|
value: input.remote
|
|
15648
|
-
}, _errorFactory)) &&
|
|
15779
|
+
}, _errorFactory)) && _ao33(input.remote, _path + ".remote", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15649
15780
|
method: "typia.assertGuard",
|
|
15650
15781
|
path: _path + ".remote",
|
|
15651
15782
|
expected: "(FilePublishRemote | undefined)",
|
|
@@ -15655,7 +15786,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15655
15786
|
path: _path + ".published",
|
|
15656
15787
|
expected: "(FilePublishPublished | undefined)",
|
|
15657
15788
|
value: input.published
|
|
15658
|
-
}, _errorFactory)) &&
|
|
15789
|
+
}, _errorFactory)) && _ao36(input.published, _path + ".published", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15659
15790
|
method: "typia.assertGuard",
|
|
15660
15791
|
path: _path + ".published",
|
|
15661
15792
|
expected: "(FilePublishPublished | undefined)",
|
|
@@ -15685,7 +15816,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15685
15816
|
path: _path + ".error",
|
|
15686
15817
|
expected: "(__type.o13 | null | undefined)",
|
|
15687
15818
|
value: input.error
|
|
15688
|
-
}, _errorFactory)) &&
|
|
15819
|
+
}, _errorFactory)) && _ao24(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15689
15820
|
method: "typia.assertGuard",
|
|
15690
15821
|
path: _path + ".error",
|
|
15691
15822
|
expected: "(__type.o13 | null | undefined)",
|
|
@@ -15700,7 +15831,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15700
15831
|
path: _path + ".messages[" + _index18 + "]",
|
|
15701
15832
|
expected: "Message",
|
|
15702
15833
|
value: elem
|
|
15703
|
-
}, _errorFactory)) &&
|
|
15834
|
+
}, _errorFactory)) && _ao25(elem, _path + ".messages[" + _index18 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15704
15835
|
method: "typia.assertGuard",
|
|
15705
15836
|
path: _path + ".messages[" + _index18 + "]",
|
|
15706
15837
|
expected: "Message",
|
|
@@ -15710,7 +15841,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15710
15841
|
path: _path + ".messages",
|
|
15711
15842
|
expected: "(Array<Message> | undefined)",
|
|
15712
15843
|
value: input.messages
|
|
15713
|
-
}, _errorFactory)); const
|
|
15844
|
+
}, _errorFactory)); const _ao28 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
15714
15845
|
const value = input[key];
|
|
15715
15846
|
if (undefined === value)
|
|
15716
15847
|
return true;
|
|
@@ -15735,7 +15866,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15735
15866
|
expected: "(ResolvedFilePublishRender | __type.o14 | string)",
|
|
15736
15867
|
value: value
|
|
15737
15868
|
}, _errorFactory));
|
|
15738
|
-
}); const
|
|
15869
|
+
}); const _ao29 = (input, _path, _exceptionable = true) => (undefined === input.name || "string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15739
15870
|
method: "typia.assertGuard",
|
|
15740
15871
|
path: _path + ".name",
|
|
15741
15872
|
expected: "(string | undefined)",
|
|
@@ -15780,17 +15911,17 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15780
15911
|
path: _path + ".profile",
|
|
15781
15912
|
expected: "(RenderProfileObject | undefined)",
|
|
15782
15913
|
value: input.profile
|
|
15783
|
-
}, _errorFactory)) &&
|
|
15914
|
+
}, _errorFactory)) && _ao17(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15784
15915
|
method: "typia.assertGuard",
|
|
15785
15916
|
path: _path + ".profile",
|
|
15786
15917
|
expected: "(RenderProfileObject | undefined)",
|
|
15787
15918
|
value: input.profile
|
|
15788
|
-
}, _errorFactory)); const
|
|
15919
|
+
}, _errorFactory)); const _ao30 = (input, _path, _exceptionable = true) => (("object" === typeof input.__context && null !== input.__context || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15789
15920
|
method: "typia.assertGuard",
|
|
15790
15921
|
path: _path + ".__context",
|
|
15791
15922
|
expected: "__type.o15",
|
|
15792
15923
|
value: input.__context
|
|
15793
|
-
}, _errorFactory)) &&
|
|
15924
|
+
}, _errorFactory)) && _ao31(input.__context, _path + ".__context", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15794
15925
|
method: "typia.assertGuard",
|
|
15795
15926
|
path: _path + ".__context",
|
|
15796
15927
|
expected: "__type.o15",
|
|
@@ -15800,17 +15931,17 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15800
15931
|
path: _path + ".__returnValue",
|
|
15801
15932
|
expected: "ResolvedFilePublishRender",
|
|
15802
15933
|
value: input.__returnValue
|
|
15803
|
-
}, _errorFactory)) &&
|
|
15934
|
+
}, _errorFactory)) && _ao29(input.__returnValue, _path + ".__returnValue", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15804
15935
|
method: "typia.assertGuard",
|
|
15805
15936
|
path: _path + ".__returnValue",
|
|
15806
15937
|
expected: "ResolvedFilePublishRender",
|
|
15807
15938
|
value: input.__returnValue
|
|
15808
|
-
}, _errorFactory)); const
|
|
15939
|
+
}, _errorFactory)); const _ao31 = (input, _path, _exceptionable = true) => (("object" === typeof input.publish && null !== input.publish && false === Array.isArray(input.publish) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15809
15940
|
method: "typia.assertGuard",
|
|
15810
15941
|
path: _path + ".publish",
|
|
15811
15942
|
expected: "FilePublishRecord",
|
|
15812
15943
|
value: input.publish
|
|
15813
|
-
}, _errorFactory)) &&
|
|
15944
|
+
}, _errorFactory)) && _ao27(input.publish, _path + ".publish", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15814
15945
|
method: "typia.assertGuard",
|
|
15815
15946
|
path: _path + ".publish",
|
|
15816
15947
|
expected: "FilePublishRecord",
|
|
@@ -15825,7 +15956,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15825
15956
|
path: _path + ".name",
|
|
15826
15957
|
expected: "string",
|
|
15827
15958
|
value: input.name
|
|
15828
|
-
}, _errorFactory)); const
|
|
15959
|
+
}, _errorFactory)); const _ao32 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15829
15960
|
method: "typia.assertGuard",
|
|
15830
15961
|
path: _path + ".directory",
|
|
15831
15962
|
expected: "(string | undefined)",
|
|
@@ -15835,7 +15966,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15835
15966
|
path: _path + ".filename",
|
|
15836
15967
|
expected: "(string | undefined)",
|
|
15837
15968
|
value: input.filename
|
|
15838
|
-
}, _errorFactory)); const
|
|
15969
|
+
}, _errorFactory)); const _ao33 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15839
15970
|
method: "typia.assertGuard",
|
|
15840
15971
|
path: _path + ".directory",
|
|
15841
15972
|
expected: "(string | undefined)",
|
|
@@ -15850,12 +15981,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15850
15981
|
path: _path + ".renders",
|
|
15851
15982
|
expected: "(Record<string, FilePublishRemoteRender> | undefined)",
|
|
15852
15983
|
value: input.renders
|
|
15853
|
-
}, _errorFactory)) &&
|
|
15984
|
+
}, _errorFactory)) && _ao34(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15854
15985
|
method: "typia.assertGuard",
|
|
15855
15986
|
path: _path + ".renders",
|
|
15856
15987
|
expected: "(Record<string, FilePublishRemoteRender> | undefined)",
|
|
15857
15988
|
value: input.renders
|
|
15858
|
-
}, _errorFactory)); const
|
|
15989
|
+
}, _errorFactory)); const _ao34 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
15859
15990
|
const value = input[key];
|
|
15860
15991
|
if (undefined === value)
|
|
15861
15992
|
return true;
|
|
@@ -15864,13 +15995,13 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15864
15995
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15865
15996
|
expected: "FilePublishRemoteRender",
|
|
15866
15997
|
value: value
|
|
15867
|
-
}, _errorFactory)) &&
|
|
15998
|
+
}, _errorFactory)) && _ao35(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15868
15999
|
method: "typia.assertGuard",
|
|
15869
16000
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15870
16001
|
expected: "FilePublishRemoteRender",
|
|
15871
16002
|
value: value
|
|
15872
16003
|
}, _errorFactory);
|
|
15873
|
-
}); const
|
|
16004
|
+
}); const _ao35 = (input, _path, _exceptionable = true) => (undefined === input.path || "string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15874
16005
|
method: "typia.assertGuard",
|
|
15875
16006
|
path: _path + ".path",
|
|
15876
16007
|
expected: "(string | undefined)",
|
|
@@ -15885,7 +16016,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15885
16016
|
path: _path + ".messages[" + _index19 + "]",
|
|
15886
16017
|
expected: "Message",
|
|
15887
16018
|
value: elem
|
|
15888
|
-
}, _errorFactory)) &&
|
|
16019
|
+
}, _errorFactory)) && _ao25(elem, _path + ".messages[" + _index19 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15889
16020
|
method: "typia.assertGuard",
|
|
15890
16021
|
path: _path + ".messages[" + _index19 + "]",
|
|
15891
16022
|
expected: "Message",
|
|
@@ -15910,7 +16041,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15910
16041
|
path: _path + ".source",
|
|
15911
16042
|
expected: "(string | undefined)",
|
|
15912
16043
|
value: input.source
|
|
15913
|
-
}, _errorFactory)); const
|
|
16044
|
+
}, _errorFactory)); const _ao36 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15914
16045
|
method: "typia.assertGuard",
|
|
15915
16046
|
path: _path + ".directory",
|
|
15916
16047
|
expected: "(string | undefined)",
|
|
@@ -15920,7 +16051,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15920
16051
|
path: _path + ".filename",
|
|
15921
16052
|
expected: "string",
|
|
15922
16053
|
value: input.filename
|
|
15923
|
-
}, _errorFactory)); const
|
|
16054
|
+
}, _errorFactory)); const _ao37 = (input, _path, _exceptionable = true) => (undefined === input.type || "file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15924
16055
|
method: "typia.assertGuard",
|
|
15925
16056
|
path: _path + ".type",
|
|
15926
16057
|
expected: "(\"file\" | undefined)",
|
|
@@ -15940,7 +16071,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15940
16071
|
path: _path + ".draft",
|
|
15941
16072
|
expected: "(FilePublishDraft | undefined)",
|
|
15942
16073
|
value: input.draft
|
|
15943
|
-
}, _errorFactory)) &&
|
|
16074
|
+
}, _errorFactory)) && _ao32(input.draft, _path + ".draft", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15944
16075
|
method: "typia.assertGuard",
|
|
15945
16076
|
path: _path + ".draft",
|
|
15946
16077
|
expected: "(FilePublishDraft | undefined)",
|
|
@@ -15950,7 +16081,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15950
16081
|
path: _path + ".remote",
|
|
15951
16082
|
expected: "(FilePublishRemoteLegacy | undefined)",
|
|
15952
16083
|
value: input.remote
|
|
15953
|
-
}, _errorFactory)) &&
|
|
16084
|
+
}, _errorFactory)) && _ao38(input.remote, _path + ".remote", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15954
16085
|
method: "typia.assertGuard",
|
|
15955
16086
|
path: _path + ".remote",
|
|
15956
16087
|
expected: "(FilePublishRemoteLegacy | undefined)",
|
|
@@ -15960,7 +16091,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15960
16091
|
path: _path + ".published",
|
|
15961
16092
|
expected: "(FilePublishPublished | undefined)",
|
|
15962
16093
|
value: input.published
|
|
15963
|
-
}, _errorFactory)) &&
|
|
16094
|
+
}, _errorFactory)) && _ao36(input.published, _path + ".published", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15964
16095
|
method: "typia.assertGuard",
|
|
15965
16096
|
path: _path + ".published",
|
|
15966
16097
|
expected: "(FilePublishPublished | undefined)",
|
|
@@ -16000,7 +16131,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16000
16131
|
path: _path + ".error",
|
|
16001
16132
|
expected: "(__type.o13 | null | undefined)",
|
|
16002
16133
|
value: input.error
|
|
16003
|
-
}, _errorFactory)) &&
|
|
16134
|
+
}, _errorFactory)) && _ao24(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16004
16135
|
method: "typia.assertGuard",
|
|
16005
16136
|
path: _path + ".error",
|
|
16006
16137
|
expected: "(__type.o13 | null | undefined)",
|
|
@@ -16015,7 +16146,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16015
16146
|
path: _path + ".messages[" + _index20 + "]",
|
|
16016
16147
|
expected: "Message",
|
|
16017
16148
|
value: elem
|
|
16018
|
-
}, _errorFactory)) &&
|
|
16149
|
+
}, _errorFactory)) && _ao25(elem, _path + ".messages[" + _index20 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16019
16150
|
method: "typia.assertGuard",
|
|
16020
16151
|
path: _path + ".messages[" + _index20 + "]",
|
|
16021
16152
|
expected: "Message",
|
|
@@ -16025,7 +16156,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16025
16156
|
path: _path + ".messages",
|
|
16026
16157
|
expected: "(Array<Message> | undefined)",
|
|
16027
16158
|
value: input.messages
|
|
16028
|
-
}, _errorFactory)); const
|
|
16159
|
+
}, _errorFactory)); const _ao38 = (input, _path, _exceptionable = true) => (undefined === input.id || "string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16029
16160
|
method: "typia.assertGuard",
|
|
16030
16161
|
path: _path + ".id",
|
|
16031
16162
|
expected: "(string | undefined)",
|
|
@@ -16050,7 +16181,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16050
16181
|
path: _path + ".subtitle",
|
|
16051
16182
|
expected: "(__type.o16 | undefined)",
|
|
16052
16183
|
value: input.subtitle
|
|
16053
|
-
}, _errorFactory)) &&
|
|
16184
|
+
}, _errorFactory)) && _ao39(input.subtitle, _path + ".subtitle", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16054
16185
|
method: "typia.assertGuard",
|
|
16055
16186
|
path: _path + ".subtitle",
|
|
16056
16187
|
expected: "(__type.o16 | undefined)",
|
|
@@ -16060,7 +16191,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16060
16191
|
path: _path + ".metafile",
|
|
16061
16192
|
expected: "(__type.o17 | undefined)",
|
|
16062
16193
|
value: input.metafile
|
|
16063
|
-
}, _errorFactory)) &&
|
|
16194
|
+
}, _errorFactory)) && _ao40(input.metafile, _path + ".metafile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16064
16195
|
method: "typia.assertGuard",
|
|
16065
16196
|
path: _path + ".metafile",
|
|
16066
16197
|
expected: "(__type.o17 | undefined)",
|
|
@@ -16072,17 +16203,17 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16072
16203
|
if (undefined === value)
|
|
16073
16204
|
return true;
|
|
16074
16205
|
return true;
|
|
16075
|
-
})); const
|
|
16206
|
+
})); const _ao39 = (input, _path, _exceptionable = true) => "string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16076
16207
|
method: "typia.assertGuard",
|
|
16077
16208
|
path: _path + ".path",
|
|
16078
16209
|
expected: "string",
|
|
16079
16210
|
value: input.path
|
|
16080
|
-
}, _errorFactory); const
|
|
16211
|
+
}, _errorFactory); const _ao40 = (input, _path, _exceptionable = true) => "string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16081
16212
|
method: "typia.assertGuard",
|
|
16082
16213
|
path: _path + ".path",
|
|
16083
16214
|
expected: "string",
|
|
16084
16215
|
value: input.path
|
|
16085
|
-
}, _errorFactory); const
|
|
16216
|
+
}, _errorFactory); const _ao41 = (input, _path, _exceptionable = true) => (undefined === input.type || "youtube" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16086
16217
|
method: "typia.assertGuard",
|
|
16087
16218
|
path: _path + ".type",
|
|
16088
16219
|
expected: "(\"youtube\" | undefined)",
|
|
@@ -16092,7 +16223,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16092
16223
|
path: _path + ".draft",
|
|
16093
16224
|
expected: "(__type.o18 | undefined)",
|
|
16094
16225
|
value: input.draft
|
|
16095
|
-
}, _errorFactory)) &&
|
|
16226
|
+
}, _errorFactory)) && _ao42(input.draft, _path + ".draft", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16096
16227
|
method: "typia.assertGuard",
|
|
16097
16228
|
path: _path + ".draft",
|
|
16098
16229
|
expected: "(__type.o18 | undefined)",
|
|
@@ -16122,7 +16253,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16122
16253
|
path: _path + ".error",
|
|
16123
16254
|
expected: "(__type.o13 | null | undefined)",
|
|
16124
16255
|
value: input.error
|
|
16125
|
-
}, _errorFactory)) &&
|
|
16256
|
+
}, _errorFactory)) && _ao24(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16126
16257
|
method: "typia.assertGuard",
|
|
16127
16258
|
path: _path + ".error",
|
|
16128
16259
|
expected: "(__type.o13 | null | undefined)",
|
|
@@ -16137,7 +16268,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16137
16268
|
path: _path + ".messages[" + _index21 + "]",
|
|
16138
16269
|
expected: "Message",
|
|
16139
16270
|
value: elem
|
|
16140
|
-
}, _errorFactory)) &&
|
|
16271
|
+
}, _errorFactory)) && _ao25(elem, _path + ".messages[" + _index21 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16141
16272
|
method: "typia.assertGuard",
|
|
16142
16273
|
path: _path + ".messages[" + _index21 + "]",
|
|
16143
16274
|
expected: "Message",
|
|
@@ -16147,17 +16278,17 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16147
16278
|
path: _path + ".messages",
|
|
16148
16279
|
expected: "(Array<Message> | undefined)",
|
|
16149
16280
|
value: input.messages
|
|
16150
|
-
}, _errorFactory)); const
|
|
16281
|
+
}, _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, {
|
|
16151
16282
|
method: "typia.assertGuard",
|
|
16152
16283
|
path: _path + ".snippet",
|
|
16153
16284
|
expected: "(__type.o19 | undefined)",
|
|
16154
16285
|
value: input.snippet
|
|
16155
|
-
}, _errorFactory)) &&
|
|
16286
|
+
}, _errorFactory)) && _ao43(input.snippet, _path + ".snippet", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16156
16287
|
method: "typia.assertGuard",
|
|
16157
16288
|
path: _path + ".snippet",
|
|
16158
16289
|
expected: "(__type.o19 | undefined)",
|
|
16159
16290
|
value: input.snippet
|
|
16160
|
-
}, _errorFactory); const
|
|
16291
|
+
}, _errorFactory); const _ao43 = (input, _path, _exceptionable = true) => (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16161
16292
|
method: "typia.assertGuard",
|
|
16162
16293
|
path: _path + ".title",
|
|
16163
16294
|
expected: "(string | undefined)",
|
|
@@ -16184,9 +16315,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16184
16315
|
value: input.description
|
|
16185
16316
|
}, _errorFactory)); const _au0 = (input, _path, _exceptionable = true) => (() => {
|
|
16186
16317
|
if (undefined !== input.path)
|
|
16187
|
-
return _ao28(input, _path, true && _exceptionable);
|
|
16188
|
-
else if (undefined !== input.__context)
|
|
16189
16318
|
return _ao29(input, _path, true && _exceptionable);
|
|
16319
|
+
else if (undefined !== input.__context)
|
|
16320
|
+
return _ao30(input, _path, true && _exceptionable);
|
|
16190
16321
|
else
|
|
16191
16322
|
return __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16192
16323
|
method: "typia.assertGuard",
|
|
@@ -16194,7 +16325,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16194
16325
|
expected: "(ResolvedFilePublishRender | __type.o14)",
|
|
16195
16326
|
value: input
|
|
16196
16327
|
}, _errorFactory);
|
|
16197
|
-
})(); const _au1 = (input, _path, _exceptionable = true) => _ao0(input, _path, false && _exceptionable) ||
|
|
16328
|
+
})(); 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, {
|
|
16198
16329
|
method: "typia.assertGuard",
|
|
16199
16330
|
path: _path,
|
|
16200
16331
|
expected: "(EmptyPublishRecord | FacebookPublishRecord | FilePublishRecordLegacy | FilePublishRecord | YoutubePublishRecord)",
|
|
@@ -16227,21 +16358,21 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16227
16358
|
if (undefined === value)
|
|
16228
16359
|
return true;
|
|
16229
16360
|
return null !== value && undefined !== value && ("string" === typeof value || "object" === typeof value && null !== value && _iu0(value));
|
|
16230
|
-
}); 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 &&
|
|
16361
|
+
}); 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 => {
|
|
16231
16362
|
const value = input[key];
|
|
16232
16363
|
if (undefined === value)
|
|
16233
16364
|
return true;
|
|
16234
16365
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io13(value);
|
|
16235
|
-
}); 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
|
|
16366
|
+
}); 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 => {
|
|
16236
16367
|
const value = input[key];
|
|
16237
16368
|
if (undefined === value)
|
|
16238
16369
|
return true;
|
|
16239
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
16240
|
-
}); const
|
|
16370
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io37(value);
|
|
16371
|
+
}); 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 => (() => {
|
|
16241
16372
|
if (undefined !== input.path)
|
|
16242
16373
|
return _io8(input);
|
|
16243
16374
|
else if (undefined !== input.__context)
|
|
16244
|
-
return
|
|
16375
|
+
return _io31(input);
|
|
16245
16376
|
else
|
|
16246
16377
|
return false;
|
|
16247
16378
|
})(); const _iu1 = input => (() => {
|
|
@@ -16485,7 +16616,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16485
16616
|
path: _path + ".profile",
|
|
16486
16617
|
expected: "(RenderProfileObject | undefined)",
|
|
16487
16618
|
value: input.profile
|
|
16488
|
-
}, _errorFactory)) &&
|
|
16619
|
+
}, _errorFactory)) && _ao24(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16489
16620
|
method: "typia.assertGuard",
|
|
16490
16621
|
path: _path + ".profile",
|
|
16491
16622
|
expected: "(RenderProfileObject | undefined)",
|
|
@@ -16550,7 +16681,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16550
16681
|
path: _path + ".audio",
|
|
16551
16682
|
expected: "(__type.o6 | undefined)",
|
|
16552
16683
|
value: input.audio
|
|
16553
|
-
}, _errorFactory)) &&
|
|
16684
|
+
}, _errorFactory)) && _ao22(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16554
16685
|
method: "typia.assertGuard",
|
|
16555
16686
|
path: _path + ".audio",
|
|
16556
16687
|
expected: "(__type.o6 | undefined)",
|
|
@@ -16570,7 +16701,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16570
16701
|
path: _path + ".transcribe",
|
|
16571
16702
|
expected: "(__type.o7 | undefined)",
|
|
16572
16703
|
value: input.transcribe
|
|
16573
|
-
}, _errorFactory)) &&
|
|
16704
|
+
}, _errorFactory)) && _ao23(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16574
16705
|
method: "typia.assertGuard",
|
|
16575
16706
|
path: _path + ".transcribe",
|
|
16576
16707
|
expected: "(__type.o7 | undefined)",
|
|
@@ -16835,6 +16966,16 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16835
16966
|
path: _path + ".crop",
|
|
16836
16967
|
expected: "(RenderSceneCrop | undefined)",
|
|
16837
16968
|
value: input.crop
|
|
16969
|
+
}, _errorFactory)) && (undefined === input.focus || ("object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16970
|
+
method: "typia.assertGuard",
|
|
16971
|
+
path: _path + ".focus",
|
|
16972
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
16973
|
+
value: input.focus
|
|
16974
|
+
}, _errorFactory)) && _ao21(input.focus, _path + ".focus", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16975
|
+
method: "typia.assertGuard",
|
|
16976
|
+
path: _path + ".focus",
|
|
16977
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
16978
|
+
value: input.focus
|
|
16838
16979
|
}, _errorFactory)) && (undefined === input.orientation || "number" === typeof input.orientation || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16839
16980
|
method: "typia.assertGuard",
|
|
16840
16981
|
path: _path + ".orientation",
|
|
@@ -16980,7 +17121,17 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16980
17121
|
path: _path + ".height",
|
|
16981
17122
|
expected: "(number | undefined)",
|
|
16982
17123
|
value: input.height
|
|
16983
|
-
}, _errorFactory)); const _ao21 = (input, _path, _exceptionable = true) => undefined === input.
|
|
17124
|
+
}, _errorFactory)); const _ao21 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17125
|
+
method: "typia.assertGuard",
|
|
17126
|
+
path: _path + ".x",
|
|
17127
|
+
expected: "(number | undefined)",
|
|
17128
|
+
value: input.x
|
|
17129
|
+
}, _errorFactory)) && (undefined === input.y || "number" === typeof input.y || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17130
|
+
method: "typia.assertGuard",
|
|
17131
|
+
path: _path + ".y",
|
|
17132
|
+
expected: "(number | undefined)",
|
|
17133
|
+
value: input.y
|
|
17134
|
+
}, _errorFactory)); const _ao22 = (input, _path, _exceptionable = true) => undefined === input.pan || (Array.isArray(input.pan) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16984
17135
|
method: "typia.assertGuard",
|
|
16985
17136
|
path: _path + ".pan",
|
|
16986
17137
|
expected: "(Array<Array<number>> | undefined)",
|
|
@@ -17005,7 +17156,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17005
17156
|
path: _path + ".pan",
|
|
17006
17157
|
expected: "(Array<Array<number>> | undefined)",
|
|
17007
17158
|
value: input.pan
|
|
17008
|
-
}, _errorFactory); const
|
|
17159
|
+
}, _errorFactory); const _ao23 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17009
17160
|
method: "typia.assertGuard",
|
|
17010
17161
|
path: _path + ".language",
|
|
17011
17162
|
expected: "(string | undefined)",
|
|
@@ -17030,7 +17181,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17030
17181
|
path: _path + ".diarization",
|
|
17031
17182
|
expected: "(boolean | undefined)",
|
|
17032
17183
|
value: input.diarization
|
|
17033
|
-
}, _errorFactory)); const
|
|
17184
|
+
}, _errorFactory)); const _ao24 = (input, _path, _exceptionable = true) => ("string" === typeof input.format || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17034
17185
|
method: "typia.assertGuard",
|
|
17035
17186
|
path: _path + ".format",
|
|
17036
17187
|
expected: "string",
|
|
@@ -17040,7 +17191,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17040
17191
|
path: _path + ".transcribe",
|
|
17041
17192
|
expected: "(__type.o8 | undefined)",
|
|
17042
17193
|
value: input.transcribe
|
|
17043
|
-
}, _errorFactory)) &&
|
|
17194
|
+
}, _errorFactory)) && _ao25(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17044
17195
|
method: "typia.assertGuard",
|
|
17045
17196
|
path: _path + ".transcribe",
|
|
17046
17197
|
expected: "(__type.o8 | undefined)",
|
|
@@ -17050,7 +17201,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17050
17201
|
path: _path + ".translate",
|
|
17051
17202
|
expected: "(__type.o9 | undefined)",
|
|
17052
17203
|
value: input.translate
|
|
17053
|
-
}, _errorFactory)) &&
|
|
17204
|
+
}, _errorFactory)) && _ao26(input.translate, _path + ".translate", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17054
17205
|
method: "typia.assertGuard",
|
|
17055
17206
|
path: _path + ".translate",
|
|
17056
17207
|
expected: "(__type.o9 | undefined)",
|
|
@@ -17060,7 +17211,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17060
17211
|
path: _path + ".audio",
|
|
17061
17212
|
expected: "(__type.o10 | undefined)",
|
|
17062
17213
|
value: input.audio
|
|
17063
|
-
}, _errorFactory)) &&
|
|
17214
|
+
}, _errorFactory)) && _ao27(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17064
17215
|
method: "typia.assertGuard",
|
|
17065
17216
|
path: _path + ".audio",
|
|
17066
17217
|
expected: "(__type.o10 | undefined)",
|
|
@@ -17090,22 +17241,22 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17090
17241
|
path: _path + ".subtitle",
|
|
17091
17242
|
expected: "(SubtitleProfile | string | undefined)",
|
|
17092
17243
|
value: input.subtitle
|
|
17093
|
-
}, _errorFactory)) &&
|
|
17244
|
+
}, _errorFactory)) && _ao28(input.subtitle, _path + ".subtitle", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17094
17245
|
method: "typia.assertGuard",
|
|
17095
17246
|
path: _path + ".subtitle",
|
|
17096
17247
|
expected: "(SubtitleProfile | string | undefined)",
|
|
17097
17248
|
value: input.subtitle
|
|
17098
|
-
}, _errorFactory))); const
|
|
17249
|
+
}, _errorFactory))); const _ao25 = (input, _path, _exceptionable = true) => "string" === typeof input.engine || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17099
17250
|
method: "typia.assertGuard",
|
|
17100
17251
|
path: _path + ".engine",
|
|
17101
17252
|
expected: "string",
|
|
17102
17253
|
value: input.engine
|
|
17103
|
-
}, _errorFactory); const
|
|
17254
|
+
}, _errorFactory); const _ao26 = (input, _path, _exceptionable = true) => "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17104
17255
|
method: "typia.assertGuard",
|
|
17105
17256
|
path: _path + ".language",
|
|
17106
17257
|
expected: "string",
|
|
17107
17258
|
value: input.language
|
|
17108
|
-
}, _errorFactory); const
|
|
17259
|
+
}, _errorFactory); const _ao27 = (input, _path, _exceptionable = true) => (undefined === input.codec || "string" === typeof input.codec || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17109
17260
|
method: "typia.assertGuard",
|
|
17110
17261
|
path: _path + ".codec",
|
|
17111
17262
|
expected: "(string | undefined)",
|
|
@@ -17125,7 +17276,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17125
17276
|
path: _path + ".split",
|
|
17126
17277
|
expected: "(boolean | undefined)",
|
|
17127
17278
|
value: input.split
|
|
17128
|
-
}, _errorFactory)); const
|
|
17279
|
+
}, _errorFactory)); const _ao28 = (input, _path, _exceptionable = true) => (undefined === input.lang || "string" === typeof input.lang || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17129
17280
|
method: "typia.assertGuard",
|
|
17130
17281
|
path: _path + ".lang",
|
|
17131
17282
|
expected: "(string | undefined)",
|
|
@@ -17140,7 +17291,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17140
17291
|
path: _path + ".ccconverter",
|
|
17141
17292
|
expected: "(__type.o11 | undefined)",
|
|
17142
17293
|
value: input.ccconverter
|
|
17143
|
-
}, _errorFactory)) &&
|
|
17294
|
+
}, _errorFactory)) && _ao29(input.ccconverter, _path + ".ccconverter", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17144
17295
|
method: "typia.assertGuard",
|
|
17145
17296
|
path: _path + ".ccconverter",
|
|
17146
17297
|
expected: "(__type.o11 | undefined)",
|
|
@@ -17150,17 +17301,17 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17150
17301
|
path: _path + ".ass",
|
|
17151
17302
|
expected: "(__type.o12 | undefined)",
|
|
17152
17303
|
value: input.ass
|
|
17153
|
-
}, _errorFactory)) &&
|
|
17304
|
+
}, _errorFactory)) && _ao30(input.ass, _path + ".ass", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17154
17305
|
method: "typia.assertGuard",
|
|
17155
17306
|
path: _path + ".ass",
|
|
17156
17307
|
expected: "(__type.o12 | undefined)",
|
|
17157
17308
|
value: input.ass
|
|
17158
|
-
}, _errorFactory)); const
|
|
17309
|
+
}, _errorFactory)); const _ao29 = (input, _path, _exceptionable = true) => undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17159
17310
|
method: "typia.assertGuard",
|
|
17160
17311
|
path: _path + ".preset",
|
|
17161
17312
|
expected: "(string | undefined)",
|
|
17162
17313
|
value: input.preset
|
|
17163
|
-
}, _errorFactory); const
|
|
17314
|
+
}, _errorFactory); const _ao30 = (input, _path, _exceptionable = true) => (undefined === input.futureWordWrapping || "boolean" === typeof input.futureWordWrapping || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17164
17315
|
method: "typia.assertGuard",
|
|
17165
17316
|
path: _path + ".futureWordWrapping",
|
|
17166
17317
|
expected: "(boolean | undefined)",
|
|
@@ -17175,12 +17326,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17175
17326
|
path: _path + ".enableUnsafeLineSpacingHack",
|
|
17176
17327
|
expected: "(boolean | undefined)",
|
|
17177
17328
|
value: input.enableUnsafeLineSpacingHack
|
|
17178
|
-
}, _errorFactory)); const
|
|
17329
|
+
}, _errorFactory)); const _ao31 = (input, _path, _exceptionable = true) => (("object" === typeof input.__context && null !== input.__context || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17179
17330
|
method: "typia.assertGuard",
|
|
17180
17331
|
path: _path + ".__context",
|
|
17181
17332
|
expected: "__type.o14",
|
|
17182
17333
|
value: input.__context
|
|
17183
|
-
}, _errorFactory)) &&
|
|
17334
|
+
}, _errorFactory)) && _ao32(input.__context, _path + ".__context", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17184
17335
|
method: "typia.assertGuard",
|
|
17185
17336
|
path: _path + ".__context",
|
|
17186
17337
|
expected: "__type.o14",
|
|
@@ -17195,12 +17346,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17195
17346
|
path: _path + ".__returnValue",
|
|
17196
17347
|
expected: "ResolvedFilePublishRender",
|
|
17197
17348
|
value: input.__returnValue
|
|
17198
|
-
}, _errorFactory)); const
|
|
17349
|
+
}, _errorFactory)); const _ao32 = (input, _path, _exceptionable = true) => (("object" === typeof input.publish && null !== input.publish && false === Array.isArray(input.publish) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17199
17350
|
method: "typia.assertGuard",
|
|
17200
17351
|
path: _path + ".publish",
|
|
17201
17352
|
expected: "FilePublishRecord",
|
|
17202
17353
|
value: input.publish
|
|
17203
|
-
}, _errorFactory)) &&
|
|
17354
|
+
}, _errorFactory)) && _ao33(input.publish, _path + ".publish", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17204
17355
|
method: "typia.assertGuard",
|
|
17205
17356
|
path: _path + ".publish",
|
|
17206
17357
|
expected: "FilePublishRecord",
|
|
@@ -17215,7 +17366,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17215
17366
|
path: _path + ".name",
|
|
17216
17367
|
expected: "string",
|
|
17217
17368
|
value: input.name
|
|
17218
|
-
}, _errorFactory)); const
|
|
17369
|
+
}, _errorFactory)); const _ao33 = (input, _path, _exceptionable = true) => (undefined === input.type || "file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17219
17370
|
method: "typia.assertGuard",
|
|
17220
17371
|
path: _path + ".type",
|
|
17221
17372
|
expected: "(\"file\" | undefined)",
|
|
@@ -17245,7 +17396,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17245
17396
|
path: _path + ".draft",
|
|
17246
17397
|
expected: "(FilePublishDraft | undefined)",
|
|
17247
17398
|
value: input.draft
|
|
17248
|
-
}, _errorFactory)) &&
|
|
17399
|
+
}, _errorFactory)) && _ao34(input.draft, _path + ".draft", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17249
17400
|
method: "typia.assertGuard",
|
|
17250
17401
|
path: _path + ".draft",
|
|
17251
17402
|
expected: "(FilePublishDraft | undefined)",
|
|
@@ -17255,7 +17406,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17255
17406
|
path: _path + ".remote",
|
|
17256
17407
|
expected: "(FilePublishRemote | undefined)",
|
|
17257
17408
|
value: input.remote
|
|
17258
|
-
}, _errorFactory)) &&
|
|
17409
|
+
}, _errorFactory)) && _ao35(input.remote, _path + ".remote", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17259
17410
|
method: "typia.assertGuard",
|
|
17260
17411
|
path: _path + ".remote",
|
|
17261
17412
|
expected: "(FilePublishRemote | undefined)",
|
|
@@ -17265,7 +17416,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17265
17416
|
path: _path + ".published",
|
|
17266
17417
|
expected: "(FilePublishPublished | undefined)",
|
|
17267
17418
|
value: input.published
|
|
17268
|
-
}, _errorFactory)) &&
|
|
17419
|
+
}, _errorFactory)) && _ao38(input.published, _path + ".published", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17269
17420
|
method: "typia.assertGuard",
|
|
17270
17421
|
path: _path + ".published",
|
|
17271
17422
|
expected: "(FilePublishPublished | undefined)",
|
|
@@ -17285,7 +17436,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17285
17436
|
path: _path + ".render",
|
|
17286
17437
|
expected: "(PublishRenderBase | undefined)",
|
|
17287
17438
|
value: input.render
|
|
17288
|
-
}, _errorFactory)) &&
|
|
17439
|
+
}, _errorFactory)) && _ao39(input.render, _path + ".render", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17289
17440
|
method: "typia.assertGuard",
|
|
17290
17441
|
path: _path + ".render",
|
|
17291
17442
|
expected: "(PublishRenderBase | undefined)",
|
|
@@ -17295,7 +17446,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17295
17446
|
path: _path + ".error",
|
|
17296
17447
|
expected: "(__type.o15 | null | undefined)",
|
|
17297
17448
|
value: input.error
|
|
17298
|
-
}, _errorFactory)) &&
|
|
17449
|
+
}, _errorFactory)) && _ao40(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17299
17450
|
method: "typia.assertGuard",
|
|
17300
17451
|
path: _path + ".error",
|
|
17301
17452
|
expected: "(__type.o15 | null | undefined)",
|
|
@@ -17320,7 +17471,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17320
17471
|
path: _path + ".messages",
|
|
17321
17472
|
expected: "(Array<Message> | undefined)",
|
|
17322
17473
|
value: input.messages
|
|
17323
|
-
}, _errorFactory)); const
|
|
17474
|
+
}, _errorFactory)); const _ao34 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17324
17475
|
method: "typia.assertGuard",
|
|
17325
17476
|
path: _path + ".directory",
|
|
17326
17477
|
expected: "(string | undefined)",
|
|
@@ -17330,7 +17481,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17330
17481
|
path: _path + ".filename",
|
|
17331
17482
|
expected: "(string | undefined)",
|
|
17332
17483
|
value: input.filename
|
|
17333
|
-
}, _errorFactory)); const
|
|
17484
|
+
}, _errorFactory)); const _ao35 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17334
17485
|
method: "typia.assertGuard",
|
|
17335
17486
|
path: _path + ".directory",
|
|
17336
17487
|
expected: "(string | undefined)",
|
|
@@ -17345,12 +17496,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17345
17496
|
path: _path + ".renders",
|
|
17346
17497
|
expected: "(Record<string, FilePublishRemoteRender> | undefined)",
|
|
17347
17498
|
value: input.renders
|
|
17348
|
-
}, _errorFactory)) &&
|
|
17499
|
+
}, _errorFactory)) && _ao36(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17349
17500
|
method: "typia.assertGuard",
|
|
17350
17501
|
path: _path + ".renders",
|
|
17351
17502
|
expected: "(Record<string, FilePublishRemoteRender> | undefined)",
|
|
17352
17503
|
value: input.renders
|
|
17353
|
-
}, _errorFactory)); const
|
|
17504
|
+
}, _errorFactory)); const _ao36 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
17354
17505
|
const value = input[key];
|
|
17355
17506
|
if (undefined === value)
|
|
17356
17507
|
return true;
|
|
@@ -17359,13 +17510,13 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17359
17510
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
17360
17511
|
expected: "FilePublishRemoteRender",
|
|
17361
17512
|
value: value
|
|
17362
|
-
}, _errorFactory)) &&
|
|
17513
|
+
}, _errorFactory)) && _ao37(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17363
17514
|
method: "typia.assertGuard",
|
|
17364
17515
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
17365
17516
|
expected: "FilePublishRemoteRender",
|
|
17366
17517
|
value: value
|
|
17367
17518
|
}, _errorFactory);
|
|
17368
|
-
}); const
|
|
17519
|
+
}); const _ao37 = (input, _path, _exceptionable = true) => (undefined === input.path || "string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17369
17520
|
method: "typia.assertGuard",
|
|
17370
17521
|
path: _path + ".path",
|
|
17371
17522
|
expected: "(string | undefined)",
|
|
@@ -17405,7 +17556,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17405
17556
|
path: _path + ".source",
|
|
17406
17557
|
expected: "(string | undefined)",
|
|
17407
17558
|
value: input.source
|
|
17408
|
-
}, _errorFactory)); const
|
|
17559
|
+
}, _errorFactory)); const _ao38 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17409
17560
|
method: "typia.assertGuard",
|
|
17410
17561
|
path: _path + ".directory",
|
|
17411
17562
|
expected: "(string | undefined)",
|
|
@@ -17415,7 +17566,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17415
17566
|
path: _path + ".filename",
|
|
17416
17567
|
expected: "string",
|
|
17417
17568
|
value: input.filename
|
|
17418
|
-
}, _errorFactory)); const
|
|
17569
|
+
}, _errorFactory)); const _ao39 = (input, _path, _exceptionable = true) => (undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17419
17570
|
method: "typia.assertGuard",
|
|
17420
17571
|
path: _path + ".preset",
|
|
17421
17572
|
expected: "(string | undefined)",
|
|
@@ -17440,12 +17591,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17440
17591
|
path: _path + ".profile",
|
|
17441
17592
|
expected: "(RenderProfileObject | undefined)",
|
|
17442
17593
|
value: input.profile
|
|
17443
|
-
}, _errorFactory)) &&
|
|
17594
|
+
}, _errorFactory)) && _ao24(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17444
17595
|
method: "typia.assertGuard",
|
|
17445
17596
|
path: _path + ".profile",
|
|
17446
17597
|
expected: "(RenderProfileObject | undefined)",
|
|
17447
17598
|
value: input.profile
|
|
17448
|
-
}, _errorFactory)); const
|
|
17599
|
+
}, _errorFactory)); const _ao40 = (input, _path, _exceptionable = true) => "string" === typeof input.method || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17449
17600
|
method: "typia.assertGuard",
|
|
17450
17601
|
path: _path + ".method",
|
|
17451
17602
|
expected: "string",
|
|
@@ -17454,7 +17605,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17454
17605
|
if (undefined !== input.path)
|
|
17455
17606
|
return _ao8(input, _path, true && _exceptionable);
|
|
17456
17607
|
else if (undefined !== input.__context)
|
|
17457
|
-
return
|
|
17608
|
+
return _ao31(input, _path, true && _exceptionable);
|
|
17458
17609
|
else
|
|
17459
17610
|
return __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17460
17611
|
method: "typia.assertGuard",
|
|
@@ -18325,12 +18476,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18325
18476
|
}; })()(input);
|
|
18326
18477
|
}
|
|
18327
18478
|
case ":render.query?": {
|
|
18328
|
-
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 &&
|
|
18479
|
+
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 => {
|
|
18329
18480
|
const value = input[key];
|
|
18330
18481
|
if (undefined === value)
|
|
18331
18482
|
return true;
|
|
18332
18483
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io6(value);
|
|
18333
|
-
}); 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
|
|
18484
|
+
}); 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, {
|
|
18334
18485
|
method: "typia.assertGuard",
|
|
18335
18486
|
path: _path + ".type",
|
|
18336
18487
|
expected: "string",
|
|
@@ -18370,7 +18521,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18370
18521
|
path: _path + ".profile",
|
|
18371
18522
|
expected: "RenderProfileObject",
|
|
18372
18523
|
value: input.profile
|
|
18373
|
-
}, _errorFactory)) &&
|
|
18524
|
+
}, _errorFactory)) && _ao17(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18374
18525
|
method: "typia.assertGuard",
|
|
18375
18526
|
path: _path + ".profile",
|
|
18376
18527
|
expected: "RenderProfileObject",
|
|
@@ -18435,7 +18586,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18435
18586
|
path: _path + ".audio",
|
|
18436
18587
|
expected: "(__type.o7 | undefined)",
|
|
18437
18588
|
value: input.audio
|
|
18438
|
-
}, _errorFactory)) &&
|
|
18589
|
+
}, _errorFactory)) && _ao15(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18439
18590
|
method: "typia.assertGuard",
|
|
18440
18591
|
path: _path + ".audio",
|
|
18441
18592
|
expected: "(__type.o7 | undefined)",
|
|
@@ -18455,7 +18606,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18455
18606
|
path: _path + ".transcribe",
|
|
18456
18607
|
expected: "(__type.o8 | undefined)",
|
|
18457
18608
|
value: input.transcribe
|
|
18458
|
-
}, _errorFactory)) &&
|
|
18609
|
+
}, _errorFactory)) && _ao16(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18459
18610
|
method: "typia.assertGuard",
|
|
18460
18611
|
path: _path + ".transcribe",
|
|
18461
18612
|
expected: "(__type.o8 | undefined)",
|
|
@@ -18720,6 +18871,16 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18720
18871
|
path: _path + ".crop",
|
|
18721
18872
|
expected: "(RenderSceneCrop | undefined)",
|
|
18722
18873
|
value: input.crop
|
|
18874
|
+
}, _errorFactory)) && (undefined === input.focus || ("object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18875
|
+
method: "typia.assertGuard",
|
|
18876
|
+
path: _path + ".focus",
|
|
18877
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
18878
|
+
value: input.focus
|
|
18879
|
+
}, _errorFactory)) && _ao14(input.focus, _path + ".focus", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18880
|
+
method: "typia.assertGuard",
|
|
18881
|
+
path: _path + ".focus",
|
|
18882
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
18883
|
+
value: input.focus
|
|
18723
18884
|
}, _errorFactory)) && (undefined === input.orientation || "number" === typeof input.orientation || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18724
18885
|
method: "typia.assertGuard",
|
|
18725
18886
|
path: _path + ".orientation",
|
|
@@ -18865,7 +19026,17 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18865
19026
|
path: _path + ".height",
|
|
18866
19027
|
expected: "(number | undefined)",
|
|
18867
19028
|
value: input.height
|
|
18868
|
-
}, _errorFactory)); const _ao14 = (input, _path, _exceptionable = true) => undefined === input.
|
|
19029
|
+
}, _errorFactory)); const _ao14 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19030
|
+
method: "typia.assertGuard",
|
|
19031
|
+
path: _path + ".x",
|
|
19032
|
+
expected: "(number | undefined)",
|
|
19033
|
+
value: input.x
|
|
19034
|
+
}, _errorFactory)) && (undefined === input.y || "number" === typeof input.y || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19035
|
+
method: "typia.assertGuard",
|
|
19036
|
+
path: _path + ".y",
|
|
19037
|
+
expected: "(number | undefined)",
|
|
19038
|
+
value: input.y
|
|
19039
|
+
}, _errorFactory)); const _ao15 = (input, _path, _exceptionable = true) => undefined === input.pan || (Array.isArray(input.pan) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18869
19040
|
method: "typia.assertGuard",
|
|
18870
19041
|
path: _path + ".pan",
|
|
18871
19042
|
expected: "(Array<Array<number>> | undefined)",
|
|
@@ -18890,7 +19061,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18890
19061
|
path: _path + ".pan",
|
|
18891
19062
|
expected: "(Array<Array<number>> | undefined)",
|
|
18892
19063
|
value: input.pan
|
|
18893
|
-
}, _errorFactory); const
|
|
19064
|
+
}, _errorFactory); const _ao16 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18894
19065
|
method: "typia.assertGuard",
|
|
18895
19066
|
path: _path + ".language",
|
|
18896
19067
|
expected: "(string | undefined)",
|
|
@@ -18915,7 +19086,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18915
19086
|
path: _path + ".diarization",
|
|
18916
19087
|
expected: "(boolean | undefined)",
|
|
18917
19088
|
value: input.diarization
|
|
18918
|
-
}, _errorFactory)); const
|
|
19089
|
+
}, _errorFactory)); const _ao17 = (input, _path, _exceptionable = true) => ("string" === typeof input.format || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18919
19090
|
method: "typia.assertGuard",
|
|
18920
19091
|
path: _path + ".format",
|
|
18921
19092
|
expected: "string",
|
|
@@ -18925,7 +19096,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18925
19096
|
path: _path + ".transcribe",
|
|
18926
19097
|
expected: "(__type.o9 | undefined)",
|
|
18927
19098
|
value: input.transcribe
|
|
18928
|
-
}, _errorFactory)) &&
|
|
19099
|
+
}, _errorFactory)) && _ao18(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18929
19100
|
method: "typia.assertGuard",
|
|
18930
19101
|
path: _path + ".transcribe",
|
|
18931
19102
|
expected: "(__type.o9 | undefined)",
|
|
@@ -18935,7 +19106,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18935
19106
|
path: _path + ".translate",
|
|
18936
19107
|
expected: "(__type.o10 | undefined)",
|
|
18937
19108
|
value: input.translate
|
|
18938
|
-
}, _errorFactory)) &&
|
|
19109
|
+
}, _errorFactory)) && _ao19(input.translate, _path + ".translate", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18939
19110
|
method: "typia.assertGuard",
|
|
18940
19111
|
path: _path + ".translate",
|
|
18941
19112
|
expected: "(__type.o10 | undefined)",
|
|
@@ -18945,7 +19116,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18945
19116
|
path: _path + ".audio",
|
|
18946
19117
|
expected: "(__type.o11 | undefined)",
|
|
18947
19118
|
value: input.audio
|
|
18948
|
-
}, _errorFactory)) &&
|
|
19119
|
+
}, _errorFactory)) && _ao20(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18949
19120
|
method: "typia.assertGuard",
|
|
18950
19121
|
path: _path + ".audio",
|
|
18951
19122
|
expected: "(__type.o11 | undefined)",
|
|
@@ -18975,22 +19146,22 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18975
19146
|
path: _path + ".subtitle",
|
|
18976
19147
|
expected: "(SubtitleProfile | string | undefined)",
|
|
18977
19148
|
value: input.subtitle
|
|
18978
|
-
}, _errorFactory)) &&
|
|
19149
|
+
}, _errorFactory)) && _ao21(input.subtitle, _path + ".subtitle", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18979
19150
|
method: "typia.assertGuard",
|
|
18980
19151
|
path: _path + ".subtitle",
|
|
18981
19152
|
expected: "(SubtitleProfile | string | undefined)",
|
|
18982
19153
|
value: input.subtitle
|
|
18983
|
-
}, _errorFactory))); const
|
|
19154
|
+
}, _errorFactory))); const _ao18 = (input, _path, _exceptionable = true) => "string" === typeof input.engine || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18984
19155
|
method: "typia.assertGuard",
|
|
18985
19156
|
path: _path + ".engine",
|
|
18986
19157
|
expected: "string",
|
|
18987
19158
|
value: input.engine
|
|
18988
|
-
}, _errorFactory); const
|
|
19159
|
+
}, _errorFactory); const _ao19 = (input, _path, _exceptionable = true) => "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18989
19160
|
method: "typia.assertGuard",
|
|
18990
19161
|
path: _path + ".language",
|
|
18991
19162
|
expected: "string",
|
|
18992
19163
|
value: input.language
|
|
18993
|
-
}, _errorFactory); const
|
|
19164
|
+
}, _errorFactory); const _ao20 = (input, _path, _exceptionable = true) => (undefined === input.codec || "string" === typeof input.codec || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18994
19165
|
method: "typia.assertGuard",
|
|
18995
19166
|
path: _path + ".codec",
|
|
18996
19167
|
expected: "(string | undefined)",
|
|
@@ -19010,7 +19181,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
19010
19181
|
path: _path + ".split",
|
|
19011
19182
|
expected: "(boolean | undefined)",
|
|
19012
19183
|
value: input.split
|
|
19013
|
-
}, _errorFactory)); const
|
|
19184
|
+
}, _errorFactory)); const _ao21 = (input, _path, _exceptionable = true) => (undefined === input.lang || "string" === typeof input.lang || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19014
19185
|
method: "typia.assertGuard",
|
|
19015
19186
|
path: _path + ".lang",
|
|
19016
19187
|
expected: "(string | undefined)",
|
|
@@ -19025,7 +19196,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
19025
19196
|
path: _path + ".ccconverter",
|
|
19026
19197
|
expected: "(__type.o12 | undefined)",
|
|
19027
19198
|
value: input.ccconverter
|
|
19028
|
-
}, _errorFactory)) &&
|
|
19199
|
+
}, _errorFactory)) && _ao22(input.ccconverter, _path + ".ccconverter", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19029
19200
|
method: "typia.assertGuard",
|
|
19030
19201
|
path: _path + ".ccconverter",
|
|
19031
19202
|
expected: "(__type.o12 | undefined)",
|
|
@@ -19035,17 +19206,17 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
19035
19206
|
path: _path + ".ass",
|
|
19036
19207
|
expected: "(__type.o13 | undefined)",
|
|
19037
19208
|
value: input.ass
|
|
19038
|
-
}, _errorFactory)) &&
|
|
19209
|
+
}, _errorFactory)) && _ao23(input.ass, _path + ".ass", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19039
19210
|
method: "typia.assertGuard",
|
|
19040
19211
|
path: _path + ".ass",
|
|
19041
19212
|
expected: "(__type.o13 | undefined)",
|
|
19042
19213
|
value: input.ass
|
|
19043
|
-
}, _errorFactory)); const
|
|
19214
|
+
}, _errorFactory)); const _ao22 = (input, _path, _exceptionable = true) => undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19044
19215
|
method: "typia.assertGuard",
|
|
19045
19216
|
path: _path + ".preset",
|
|
19046
19217
|
expected: "(string | undefined)",
|
|
19047
19218
|
value: input.preset
|
|
19048
|
-
}, _errorFactory); const
|
|
19219
|
+
}, _errorFactory); const _ao23 = (input, _path, _exceptionable = true) => (undefined === input.futureWordWrapping || "boolean" === typeof input.futureWordWrapping || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19049
19220
|
method: "typia.assertGuard",
|
|
19050
19221
|
path: _path + ".futureWordWrapping",
|
|
19051
19222
|
expected: "(boolean | undefined)",
|