@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__accessExpressionAsString from "typia/lib/internal/_accessExpressionAsString
|
|
2
|
-
import * as __typia_transform__validateReport from "typia/lib/internal/_validateReport
|
|
3
|
-
import * as __typia_transform__isTypeUint64 from "typia/lib/internal/_isTypeUint64
|
|
1
|
+
import * as __typia_transform__accessExpressionAsString from "typia/lib/internal/_accessExpressionAsString";
|
|
2
|
+
import * as __typia_transform__validateReport from "typia/lib/internal/_validateReport";
|
|
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 validateEqualsRecord(name, input) {
|
|
@@ -14546,6 +14546,140 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
14546
14546
|
};
|
|
14547
14547
|
}; })()(input);
|
|
14548
14548
|
}
|
|
14549
|
+
case ":event.readDuration?": {
|
|
14550
|
+
return (() => { const _io0 = (input, _exceptionable = true) => (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
14551
|
+
if (["numChars", "numWords", "readRate", "readDuration", "readType"].some(prop => key === prop))
|
|
14552
|
+
return true;
|
|
14553
|
+
const value = input[key];
|
|
14554
|
+
if (undefined === value)
|
|
14555
|
+
return true;
|
|
14556
|
+
return false;
|
|
14557
|
+
})); const _vo0 = (input, _path, _exceptionable = true) => [undefined === input.numChars || "number" === typeof input.numChars || _report(_exceptionable, {
|
|
14558
|
+
path: _path + ".numChars",
|
|
14559
|
+
expected: "(number | undefined)",
|
|
14560
|
+
value: input.numChars
|
|
14561
|
+
}), undefined === input.numWords || "number" === typeof input.numWords || _report(_exceptionable, {
|
|
14562
|
+
path: _path + ".numWords",
|
|
14563
|
+
expected: "(number | undefined)",
|
|
14564
|
+
value: input.numWords
|
|
14565
|
+
}), undefined === input.readRate || "number" === typeof input.readRate || _report(_exceptionable, {
|
|
14566
|
+
path: _path + ".readRate",
|
|
14567
|
+
expected: "(number | undefined)",
|
|
14568
|
+
value: input.readRate
|
|
14569
|
+
}), undefined === input.readDuration || "number" === typeof input.readDuration || _report(_exceptionable, {
|
|
14570
|
+
path: _path + ".readDuration",
|
|
14571
|
+
expected: "(number | undefined)",
|
|
14572
|
+
value: input.readDuration
|
|
14573
|
+
}), undefined === input.readType || "characters" === input.readType || "words" === input.readType || "wordsPerMinute" === input.readType || _report(_exceptionable, {
|
|
14574
|
+
path: _path + ".readType",
|
|
14575
|
+
expected: "(\"characters\" | \"words\" | \"wordsPerMinute\" | undefined)",
|
|
14576
|
+
value: input.readType
|
|
14577
|
+
}), 0 === Object.keys(input).length || (false === _exceptionable || Object.keys(input).map(key => {
|
|
14578
|
+
if (["numChars", "numWords", "readRate", "readDuration", "readType"].some(prop => key === prop))
|
|
14579
|
+
return true;
|
|
14580
|
+
const value = input[key];
|
|
14581
|
+
if (undefined === value)
|
|
14582
|
+
return true;
|
|
14583
|
+
return _report(_exceptionable, {
|
|
14584
|
+
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
14585
|
+
expected: "undefined",
|
|
14586
|
+
value: value,
|
|
14587
|
+
description: [
|
|
14588
|
+
`The property \`${key}\` is not defined in the object type.`,
|
|
14589
|
+
"",
|
|
14590
|
+
"Please remove the property next time."
|
|
14591
|
+
].join("\n")
|
|
14592
|
+
});
|
|
14593
|
+
}).every(flag => flag))].every(flag => flag); const __is = (input, _exceptionable = true) => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input, true); let errors; let _report; return input => {
|
|
14594
|
+
if (false === __is(input)) {
|
|
14595
|
+
errors = [];
|
|
14596
|
+
_report = __typia_transform__validateReport._validateReport(errors);
|
|
14597
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || _report(true, {
|
|
14598
|
+
path: _path + "",
|
|
14599
|
+
expected: "EventReadDurationRecord",
|
|
14600
|
+
value: input
|
|
14601
|
+
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
14602
|
+
path: _path + "",
|
|
14603
|
+
expected: "EventReadDurationRecord",
|
|
14604
|
+
value: input
|
|
14605
|
+
}))(input, "$input", true);
|
|
14606
|
+
const success = 0 === errors.length;
|
|
14607
|
+
return success ? {
|
|
14608
|
+
success,
|
|
14609
|
+
data: input
|
|
14610
|
+
} : {
|
|
14611
|
+
success,
|
|
14612
|
+
errors,
|
|
14613
|
+
data: input
|
|
14614
|
+
};
|
|
14615
|
+
}
|
|
14616
|
+
return {
|
|
14617
|
+
success: true,
|
|
14618
|
+
data: input
|
|
14619
|
+
};
|
|
14620
|
+
}; })()(input);
|
|
14621
|
+
}
|
|
14622
|
+
case ":event.readRate?": {
|
|
14623
|
+
return (() => { const _io0 = (input, _exceptionable = true) => (undefined === input.readRate || "number" === typeof input.readRate) && (undefined === input.readType || "characters" === input.readType || "words" === input.readType || "wordsPerMinute" === input.readType) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
14624
|
+
if (["readRate", "readType"].some(prop => key === prop))
|
|
14625
|
+
return true;
|
|
14626
|
+
const value = input[key];
|
|
14627
|
+
if (undefined === value)
|
|
14628
|
+
return true;
|
|
14629
|
+
return false;
|
|
14630
|
+
})); const _vo0 = (input, _path, _exceptionable = true) => [undefined === input.readRate || "number" === typeof input.readRate || _report(_exceptionable, {
|
|
14631
|
+
path: _path + ".readRate",
|
|
14632
|
+
expected: "(number | undefined)",
|
|
14633
|
+
value: input.readRate
|
|
14634
|
+
}), undefined === input.readType || "characters" === input.readType || "words" === input.readType || "wordsPerMinute" === input.readType || _report(_exceptionable, {
|
|
14635
|
+
path: _path + ".readType",
|
|
14636
|
+
expected: "(\"characters\" | \"words\" | \"wordsPerMinute\" | undefined)",
|
|
14637
|
+
value: input.readType
|
|
14638
|
+
}), 0 === Object.keys(input).length || (false === _exceptionable || Object.keys(input).map(key => {
|
|
14639
|
+
if (["readRate", "readType"].some(prop => key === prop))
|
|
14640
|
+
return true;
|
|
14641
|
+
const value = input[key];
|
|
14642
|
+
if (undefined === value)
|
|
14643
|
+
return true;
|
|
14644
|
+
return _report(_exceptionable, {
|
|
14645
|
+
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
14646
|
+
expected: "undefined",
|
|
14647
|
+
value: value,
|
|
14648
|
+
description: [
|
|
14649
|
+
`The property \`${key}\` is not defined in the object type.`,
|
|
14650
|
+
"",
|
|
14651
|
+
"Please remove the property next time."
|
|
14652
|
+
].join("\n")
|
|
14653
|
+
});
|
|
14654
|
+
}).every(flag => flag))].every(flag => flag); const __is = (input, _exceptionable = true) => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input, true); let errors; let _report; return input => {
|
|
14655
|
+
if (false === __is(input)) {
|
|
14656
|
+
errors = [];
|
|
14657
|
+
_report = __typia_transform__validateReport._validateReport(errors);
|
|
14658
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || _report(true, {
|
|
14659
|
+
path: _path + "",
|
|
14660
|
+
expected: "EventReadRateRecord",
|
|
14661
|
+
value: input
|
|
14662
|
+
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
14663
|
+
path: _path + "",
|
|
14664
|
+
expected: "EventReadRateRecord",
|
|
14665
|
+
value: input
|
|
14666
|
+
}))(input, "$input", true);
|
|
14667
|
+
const success = 0 === errors.length;
|
|
14668
|
+
return success ? {
|
|
14669
|
+
success,
|
|
14670
|
+
data: input
|
|
14671
|
+
} : {
|
|
14672
|
+
success,
|
|
14673
|
+
errors,
|
|
14674
|
+
data: input
|
|
14675
|
+
};
|
|
14676
|
+
}
|
|
14677
|
+
return {
|
|
14678
|
+
success: true,
|
|
14679
|
+
data: input
|
|
14680
|
+
};
|
|
14681
|
+
}; })()(input);
|
|
14682
|
+
}
|
|
14549
14683
|
case ":file.replicate": {
|
|
14550
14684
|
return (() => { const _io0 = (input, _exceptionable = true) => Array.isArray(input.replicas) && input.replicas.every((elem, _index1) => "string" === typeof elem) && (null === input.error || "object" === typeof input.error && null !== input.error && _io1(input.error, true && _exceptionable)) && (2 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
14551
14685
|
if (["replicas", "error"].some(prop => key === prop))
|
|
@@ -16535,7 +16669,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
16535
16669
|
}; })()(input);
|
|
16536
16670
|
}
|
|
16537
16671
|
case ":media.source": {
|
|
16538
|
-
return (() => { const _io0 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (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, true && _exceptionable)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io6(input.video, true && _exceptionable)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) &&
|
|
16672
|
+
return (() => { const _io0 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (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, true && _exceptionable)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io6(input.video, true && _exceptionable)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io13(input.audio, true && _exceptionable)) && (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, true && _exceptionable)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io11(input.crop, true && _exceptionable)) && (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io7(input.filters, true && _exceptionable)) && (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
16539
16673
|
if (["id", "preset", "input", "lang", "subtitle", "graphics", "subtitleTracks", "video", "audio", "start", "end", "transcribe", "crop", "filters", "orientation", "rotate", "interlaced", "alpha"].some(prop => key === prop))
|
|
16540
16674
|
return true;
|
|
16541
16675
|
const value = input[key];
|
|
@@ -16575,8 +16709,8 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
16575
16709
|
if (undefined === value)
|
|
16576
16710
|
return true;
|
|
16577
16711
|
return false;
|
|
16578
|
-
})); const _io6 = (input, _exceptionable = true) => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io7(input.filters, true && _exceptionable)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io11(input.crop, true && _exceptionable)) && (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
16579
|
-
if (["filters", "crop", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
16712
|
+
})); const _io6 = (input, _exceptionable = true) => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io7(input.filters, true && _exceptionable)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io11(input.crop, true && _exceptionable)) && (undefined === input.focus || "object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) && _io12(input.focus, true && _exceptionable)) && (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
16713
|
+
if (["filters", "crop", "focus", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
16580
16714
|
return true;
|
|
16581
16715
|
const value = input[key];
|
|
16582
16716
|
if (undefined === value)
|
|
@@ -16617,14 +16751,21 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
16617
16751
|
if (undefined === value)
|
|
16618
16752
|
return true;
|
|
16619
16753
|
return false;
|
|
16620
|
-
})); const _io12 = (input, _exceptionable = true) => (undefined === input.
|
|
16754
|
+
})); const _io12 = (input, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
16755
|
+
if (["x", "y"].some(prop => key === prop))
|
|
16756
|
+
return true;
|
|
16757
|
+
const value = input[key];
|
|
16758
|
+
if (undefined === value)
|
|
16759
|
+
return true;
|
|
16760
|
+
return false;
|
|
16761
|
+
})); const _io13 = (input, _exceptionable = true) => (undefined === input.pan || Array.isArray(input.pan) && input.pan.every((elem, _index1) => Array.isArray(elem) && elem.every((elem, _index2) => "number" === typeof elem))) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
16621
16762
|
if (["pan"].some(prop => key === prop))
|
|
16622
16763
|
return true;
|
|
16623
16764
|
const value = input[key];
|
|
16624
16765
|
if (undefined === value)
|
|
16625
16766
|
return true;
|
|
16626
16767
|
return false;
|
|
16627
|
-
})); const
|
|
16768
|
+
})); const _io14 = (input, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every((elem, _index3) => "number" === typeof elem)) && (undefined === input.diarization || "boolean" === typeof input.diarization) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
16628
16769
|
if (["language", "pan", "diarization"].some(prop => key === prop))
|
|
16629
16770
|
return true;
|
|
16630
16771
|
const value = input[key];
|
|
@@ -16679,7 +16820,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
16679
16820
|
path: _path + ".audio",
|
|
16680
16821
|
expected: "(__type.o6 | undefined)",
|
|
16681
16822
|
value: input.audio
|
|
16682
|
-
})) &&
|
|
16823
|
+
})) && _vo13(input.audio, _path + ".audio", true && _exceptionable) || _report(_exceptionable, {
|
|
16683
16824
|
path: _path + ".audio",
|
|
16684
16825
|
expected: "(__type.o6 | undefined)",
|
|
16685
16826
|
value: input.audio
|
|
@@ -16695,7 +16836,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
16695
16836
|
path: _path + ".transcribe",
|
|
16696
16837
|
expected: "(__type.o7 | undefined)",
|
|
16697
16838
|
value: input.transcribe
|
|
16698
|
-
})) &&
|
|
16839
|
+
})) && _vo14(input.transcribe, _path + ".transcribe", true && _exceptionable) || _report(_exceptionable, {
|
|
16699
16840
|
path: _path + ".transcribe",
|
|
16700
16841
|
expected: "(__type.o7 | undefined)",
|
|
16701
16842
|
value: input.transcribe
|
|
@@ -16988,6 +17129,14 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
16988
17129
|
path: _path + ".crop",
|
|
16989
17130
|
expected: "(RenderSceneCrop | undefined)",
|
|
16990
17131
|
value: input.crop
|
|
17132
|
+
}), undefined === input.focus || ("object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) || _report(_exceptionable, {
|
|
17133
|
+
path: _path + ".focus",
|
|
17134
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
17135
|
+
value: input.focus
|
|
17136
|
+
})) && _vo12(input.focus, _path + ".focus", true && _exceptionable) || _report(_exceptionable, {
|
|
17137
|
+
path: _path + ".focus",
|
|
17138
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
17139
|
+
value: input.focus
|
|
16991
17140
|
}), undefined === input.orientation || "number" === typeof input.orientation || _report(_exceptionable, {
|
|
16992
17141
|
path: _path + ".orientation",
|
|
16993
17142
|
expected: "(number | undefined)",
|
|
@@ -17001,7 +17150,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
17001
17150
|
expected: "(\"straight\" | boolean | null | undefined)",
|
|
17002
17151
|
value: input.alpha
|
|
17003
17152
|
}), 0 === Object.keys(input).length || (false === _exceptionable || Object.keys(input).map(key => {
|
|
17004
|
-
if (["filters", "crop", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
17153
|
+
if (["filters", "crop", "focus", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
17005
17154
|
return true;
|
|
17006
17155
|
const value = input[key];
|
|
17007
17156
|
if (undefined === value)
|
|
@@ -17200,7 +17349,31 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
17200
17349
|
"Please remove the property next time."
|
|
17201
17350
|
].join("\n")
|
|
17202
17351
|
});
|
|
17203
|
-
}).every(flag => flag))].every(flag => flag); const _vo12 = (input, _path, _exceptionable = true) => [undefined === input.
|
|
17352
|
+
}).every(flag => flag))].every(flag => flag); const _vo12 = (input, _path, _exceptionable = true) => [undefined === input.x || "number" === typeof input.x || _report(_exceptionable, {
|
|
17353
|
+
path: _path + ".x",
|
|
17354
|
+
expected: "(number | undefined)",
|
|
17355
|
+
value: input.x
|
|
17356
|
+
}), undefined === input.y || "number" === typeof input.y || _report(_exceptionable, {
|
|
17357
|
+
path: _path + ".y",
|
|
17358
|
+
expected: "(number | undefined)",
|
|
17359
|
+
value: input.y
|
|
17360
|
+
}), 0 === Object.keys(input).length || (false === _exceptionable || Object.keys(input).map(key => {
|
|
17361
|
+
if (["x", "y"].some(prop => key === prop))
|
|
17362
|
+
return true;
|
|
17363
|
+
const value = input[key];
|
|
17364
|
+
if (undefined === value)
|
|
17365
|
+
return true;
|
|
17366
|
+
return _report(_exceptionable, {
|
|
17367
|
+
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
17368
|
+
expected: "undefined",
|
|
17369
|
+
value: value,
|
|
17370
|
+
description: [
|
|
17371
|
+
`The property \`${key}\` is not defined in the object type.`,
|
|
17372
|
+
"",
|
|
17373
|
+
"Please remove the property next time."
|
|
17374
|
+
].join("\n")
|
|
17375
|
+
});
|
|
17376
|
+
}).every(flag => flag))].every(flag => flag); const _vo13 = (input, _path, _exceptionable = true) => [undefined === input.pan || (Array.isArray(input.pan) || _report(_exceptionable, {
|
|
17204
17377
|
path: _path + ".pan",
|
|
17205
17378
|
expected: "(Array<Array<number>> | undefined)",
|
|
17206
17379
|
value: input.pan
|
|
@@ -17236,7 +17409,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
17236
17409
|
"Please remove the property next time."
|
|
17237
17410
|
].join("\n")
|
|
17238
17411
|
});
|
|
17239
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
17412
|
+
}).every(flag => flag))].every(flag => flag); const _vo14 = (input, _path, _exceptionable = true) => [undefined === input.language || "string" === typeof input.language || _report(_exceptionable, {
|
|
17240
17413
|
path: _path + ".language",
|
|
17241
17414
|
expected: "(string | undefined)",
|
|
17242
17415
|
value: input.language
|
|
@@ -18664,7 +18837,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
18664
18837
|
if (undefined === value)
|
|
18665
18838
|
return true;
|
|
18666
18839
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io1(value, true && _exceptionable);
|
|
18667
|
-
}); const _io1 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (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, true && _exceptionable)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io7(input.video, true && _exceptionable)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) &&
|
|
18840
|
+
}); const _io1 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (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, true && _exceptionable)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io7(input.video, true && _exceptionable)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io14(input.audio, true && _exceptionable)) && (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, true && _exceptionable)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io12(input.crop, true && _exceptionable)) && (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io8(input.filters, true && _exceptionable)) && (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
18668
18841
|
if (["id", "preset", "input", "lang", "subtitle", "graphics", "subtitleTracks", "video", "audio", "start", "end", "transcribe", "crop", "filters", "orientation", "rotate", "interlaced", "alpha"].some(prop => key === prop))
|
|
18669
18842
|
return true;
|
|
18670
18843
|
const value = input[key];
|
|
@@ -18704,8 +18877,8 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
18704
18877
|
if (undefined === value)
|
|
18705
18878
|
return true;
|
|
18706
18879
|
return false;
|
|
18707
|
-
})); const _io7 = (input, _exceptionable = true) => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io8(input.filters, true && _exceptionable)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io12(input.crop, true && _exceptionable)) && (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
18708
|
-
if (["filters", "crop", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
18880
|
+
})); const _io7 = (input, _exceptionable = true) => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io8(input.filters, true && _exceptionable)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io12(input.crop, true && _exceptionable)) && (undefined === input.focus || "object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) && _io13(input.focus, true && _exceptionable)) && (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
18881
|
+
if (["filters", "crop", "focus", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
18709
18882
|
return true;
|
|
18710
18883
|
const value = input[key];
|
|
18711
18884
|
if (undefined === value)
|
|
@@ -18746,14 +18919,21 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
18746
18919
|
if (undefined === value)
|
|
18747
18920
|
return true;
|
|
18748
18921
|
return false;
|
|
18749
|
-
})); const _io13 = (input, _exceptionable = true) => (undefined === input.
|
|
18922
|
+
})); const _io13 = (input, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
18923
|
+
if (["x", "y"].some(prop => key === prop))
|
|
18924
|
+
return true;
|
|
18925
|
+
const value = input[key];
|
|
18926
|
+
if (undefined === value)
|
|
18927
|
+
return true;
|
|
18928
|
+
return false;
|
|
18929
|
+
})); const _io14 = (input, _exceptionable = true) => (undefined === input.pan || Array.isArray(input.pan) && input.pan.every((elem, _index1) => Array.isArray(elem) && elem.every((elem, _index2) => "number" === typeof elem))) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
18750
18930
|
if (["pan"].some(prop => key === prop))
|
|
18751
18931
|
return true;
|
|
18752
18932
|
const value = input[key];
|
|
18753
18933
|
if (undefined === value)
|
|
18754
18934
|
return true;
|
|
18755
18935
|
return false;
|
|
18756
|
-
})); const
|
|
18936
|
+
})); const _io15 = (input, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every((elem, _index3) => "number" === typeof elem)) && (undefined === input.diarization || "boolean" === typeof input.diarization) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
18757
18937
|
if (["language", "pan", "diarization"].some(prop => key === prop))
|
|
18758
18938
|
return true;
|
|
18759
18939
|
const value = input[key];
|
|
@@ -18821,7 +19001,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
18821
19001
|
path: _path + ".audio",
|
|
18822
19002
|
expected: "(__type.o6 | undefined)",
|
|
18823
19003
|
value: input.audio
|
|
18824
|
-
})) &&
|
|
19004
|
+
})) && _vo14(input.audio, _path + ".audio", true && _exceptionable) || _report(_exceptionable, {
|
|
18825
19005
|
path: _path + ".audio",
|
|
18826
19006
|
expected: "(__type.o6 | undefined)",
|
|
18827
19007
|
value: input.audio
|
|
@@ -18837,7 +19017,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
18837
19017
|
path: _path + ".transcribe",
|
|
18838
19018
|
expected: "(__type.o7 | undefined)",
|
|
18839
19019
|
value: input.transcribe
|
|
18840
|
-
})) &&
|
|
19020
|
+
})) && _vo15(input.transcribe, _path + ".transcribe", true && _exceptionable) || _report(_exceptionable, {
|
|
18841
19021
|
path: _path + ".transcribe",
|
|
18842
19022
|
expected: "(__type.o7 | undefined)",
|
|
18843
19023
|
value: input.transcribe
|
|
@@ -19130,6 +19310,14 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
19130
19310
|
path: _path + ".crop",
|
|
19131
19311
|
expected: "(RenderSceneCrop | undefined)",
|
|
19132
19312
|
value: input.crop
|
|
19313
|
+
}), undefined === input.focus || ("object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) || _report(_exceptionable, {
|
|
19314
|
+
path: _path + ".focus",
|
|
19315
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
19316
|
+
value: input.focus
|
|
19317
|
+
})) && _vo13(input.focus, _path + ".focus", true && _exceptionable) || _report(_exceptionable, {
|
|
19318
|
+
path: _path + ".focus",
|
|
19319
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
19320
|
+
value: input.focus
|
|
19133
19321
|
}), undefined === input.orientation || "number" === typeof input.orientation || _report(_exceptionable, {
|
|
19134
19322
|
path: _path + ".orientation",
|
|
19135
19323
|
expected: "(number | undefined)",
|
|
@@ -19143,7 +19331,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
19143
19331
|
expected: "(\"straight\" | boolean | null | undefined)",
|
|
19144
19332
|
value: input.alpha
|
|
19145
19333
|
}), 0 === Object.keys(input).length || (false === _exceptionable || Object.keys(input).map(key => {
|
|
19146
|
-
if (["filters", "crop", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
19334
|
+
if (["filters", "crop", "focus", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
19147
19335
|
return true;
|
|
19148
19336
|
const value = input[key];
|
|
19149
19337
|
if (undefined === value)
|
|
@@ -19342,7 +19530,31 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
19342
19530
|
"Please remove the property next time."
|
|
19343
19531
|
].join("\n")
|
|
19344
19532
|
});
|
|
19345
|
-
}).every(flag => flag))].every(flag => flag); const _vo13 = (input, _path, _exceptionable = true) => [undefined === input.
|
|
19533
|
+
}).every(flag => flag))].every(flag => flag); const _vo13 = (input, _path, _exceptionable = true) => [undefined === input.x || "number" === typeof input.x || _report(_exceptionable, {
|
|
19534
|
+
path: _path + ".x",
|
|
19535
|
+
expected: "(number | undefined)",
|
|
19536
|
+
value: input.x
|
|
19537
|
+
}), undefined === input.y || "number" === typeof input.y || _report(_exceptionable, {
|
|
19538
|
+
path: _path + ".y",
|
|
19539
|
+
expected: "(number | undefined)",
|
|
19540
|
+
value: input.y
|
|
19541
|
+
}), 0 === Object.keys(input).length || (false === _exceptionable || Object.keys(input).map(key => {
|
|
19542
|
+
if (["x", "y"].some(prop => key === prop))
|
|
19543
|
+
return true;
|
|
19544
|
+
const value = input[key];
|
|
19545
|
+
if (undefined === value)
|
|
19546
|
+
return true;
|
|
19547
|
+
return _report(_exceptionable, {
|
|
19548
|
+
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
19549
|
+
expected: "undefined",
|
|
19550
|
+
value: value,
|
|
19551
|
+
description: [
|
|
19552
|
+
`The property \`${key}\` is not defined in the object type.`,
|
|
19553
|
+
"",
|
|
19554
|
+
"Please remove the property next time."
|
|
19555
|
+
].join("\n")
|
|
19556
|
+
});
|
|
19557
|
+
}).every(flag => flag))].every(flag => flag); const _vo14 = (input, _path, _exceptionable = true) => [undefined === input.pan || (Array.isArray(input.pan) || _report(_exceptionable, {
|
|
19346
19558
|
path: _path + ".pan",
|
|
19347
19559
|
expected: "(Array<Array<number>> | undefined)",
|
|
19348
19560
|
value: input.pan
|
|
@@ -19378,7 +19590,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
19378
19590
|
"Please remove the property next time."
|
|
19379
19591
|
].join("\n")
|
|
19380
19592
|
});
|
|
19381
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
19593
|
+
}).every(flag => flag))].every(flag => flag); const _vo15 = (input, _path, _exceptionable = true) => [undefined === input.language || "string" === typeof input.language || _report(_exceptionable, {
|
|
19382
19594
|
path: _path + ".language",
|
|
19383
19595
|
expected: "(string | undefined)",
|
|
19384
19596
|
value: input.language
|
|
@@ -21958,21 +22170,21 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
21958
22170
|
}; })()(input);
|
|
21959
22171
|
}
|
|
21960
22172
|
case ":publish": {
|
|
21961
|
-
return (() => { const _io0 = (input, _exceptionable = true) => (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 && _exceptionable)) && true && true && true && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error &&
|
|
22173
|
+
return (() => { const _io0 = (input, _exceptionable = true) => (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 && _exceptionable)) && true && true && true && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io24(input.error, true && _exceptionable)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every((elem, _index1) => "object" === typeof elem && null !== elem && _io25(elem, true && _exceptionable))) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
21962
22174
|
if (["type", "asset", "connection", "render", "draft", "published", "remote", "error", "messages"].some(prop => key === prop))
|
|
21963
22175
|
return true;
|
|
21964
22176
|
const value = input[key];
|
|
21965
22177
|
if (undefined === value)
|
|
21966
22178
|
return true;
|
|
21967
22179
|
return false;
|
|
21968
|
-
})); const _io1 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile &&
|
|
22180
|
+
})); const _io1 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io17(input.profile, true && _exceptionable)) && (1 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
21969
22181
|
if (["preset", "type", "scene", "profile"].some(prop => key === prop))
|
|
21970
22182
|
return true;
|
|
21971
22183
|
const value = input[key];
|
|
21972
22184
|
if (undefined === value)
|
|
21973
22185
|
return true;
|
|
21974
22186
|
return false;
|
|
21975
|
-
})); const _io2 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (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, true && _exceptionable)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io8(input.video, true && _exceptionable)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) &&
|
|
22187
|
+
})); const _io2 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (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, true && _exceptionable)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io8(input.video, true && _exceptionable)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io15(input.audio, true && _exceptionable)) && (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, true && _exceptionable)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io13(input.crop, true && _exceptionable)) && (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io9(input.filters, true && _exceptionable)) && (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
21976
22188
|
if (["id", "preset", "input", "lang", "subtitle", "graphics", "subtitleTracks", "video", "audio", "start", "end", "transcribe", "crop", "filters", "orientation", "rotate", "interlaced", "alpha"].some(prop => key === prop))
|
|
21977
22189
|
return true;
|
|
21978
22190
|
const value = input[key];
|
|
@@ -22012,8 +22224,8 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
22012
22224
|
if (undefined === value)
|
|
22013
22225
|
return true;
|
|
22014
22226
|
return false;
|
|
22015
|
-
})); const _io8 = (input, _exceptionable = true) => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io9(input.filters, true && _exceptionable)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io13(input.crop, true && _exceptionable)) && (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22016
|
-
if (["filters", "crop", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
22227
|
+
})); const _io8 = (input, _exceptionable = true) => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io9(input.filters, true && _exceptionable)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io13(input.crop, true && _exceptionable)) && (undefined === input.focus || "object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) && _io14(input.focus, true && _exceptionable)) && (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22228
|
+
if (["filters", "crop", "focus", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
22017
22229
|
return true;
|
|
22018
22230
|
const value = input[key];
|
|
22019
22231
|
if (undefined === value)
|
|
@@ -22054,199 +22266,206 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
22054
22266
|
if (undefined === value)
|
|
22055
22267
|
return true;
|
|
22056
22268
|
return false;
|
|
22057
|
-
})); const _io14 = (input, _exceptionable = true) => (undefined === input.
|
|
22269
|
+
})); const _io14 = (input, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22270
|
+
if (["x", "y"].some(prop => key === prop))
|
|
22271
|
+
return true;
|
|
22272
|
+
const value = input[key];
|
|
22273
|
+
if (undefined === value)
|
|
22274
|
+
return true;
|
|
22275
|
+
return false;
|
|
22276
|
+
})); const _io15 = (input, _exceptionable = true) => (undefined === input.pan || Array.isArray(input.pan) && input.pan.every((elem, _index2) => Array.isArray(elem) && elem.every((elem, _index3) => "number" === typeof elem))) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22058
22277
|
if (["pan"].some(prop => key === prop))
|
|
22059
22278
|
return true;
|
|
22060
22279
|
const value = input[key];
|
|
22061
22280
|
if (undefined === value)
|
|
22062
22281
|
return true;
|
|
22063
22282
|
return false;
|
|
22064
|
-
})); const
|
|
22283
|
+
})); const _io16 = (input, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every((elem, _index4) => "number" === typeof elem)) && (undefined === input.diarization || "boolean" === typeof input.diarization) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22065
22284
|
if (["language", "pan", "diarization"].some(prop => key === prop))
|
|
22066
22285
|
return true;
|
|
22067
22286
|
const value = input[key];
|
|
22068
22287
|
if (undefined === value)
|
|
22069
22288
|
return true;
|
|
22070
22289
|
return false;
|
|
22071
|
-
})); const
|
|
22290
|
+
})); const _io17 = (input, _exceptionable = true) => "string" === typeof input.format && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && _io18(input.transcribe, true && _exceptionable)) && (undefined === input.translate || "object" === typeof input.translate && null !== input.translate && _io19(input.translate, true && _exceptionable)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io20(input.audio, true && _exceptionable)) && true && (undefined === input.pick || Array.isArray(input.pick) && input.pick.every((elem, _index5) => "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, true && _exceptionable))) && (1 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22072
22291
|
if (["format", "transcribe", "translate", "audio", "video", "pick", "subtitle"].some(prop => key === prop))
|
|
22073
22292
|
return true;
|
|
22074
22293
|
const value = input[key];
|
|
22075
22294
|
if (undefined === value)
|
|
22076
22295
|
return true;
|
|
22077
22296
|
return false;
|
|
22078
|
-
})); const
|
|
22297
|
+
})); const _io18 = (input, _exceptionable = true) => "string" === typeof input.engine && (1 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22079
22298
|
if (["engine"].some(prop => key === prop))
|
|
22080
22299
|
return true;
|
|
22081
22300
|
const value = input[key];
|
|
22082
22301
|
if (undefined === value)
|
|
22083
22302
|
return true;
|
|
22084
22303
|
return false;
|
|
22085
|
-
})); const
|
|
22304
|
+
})); const _io19 = (input, _exceptionable = true) => "string" === typeof input.language && (1 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22086
22305
|
if (["language"].some(prop => key === prop))
|
|
22087
22306
|
return true;
|
|
22088
22307
|
const value = input[key];
|
|
22089
22308
|
if (undefined === value)
|
|
22090
22309
|
return true;
|
|
22091
22310
|
return false;
|
|
22092
|
-
})); const
|
|
22311
|
+
})); const _io20 = (input, _exceptionable = true) => (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22093
22312
|
if (["codec", "pan", "samplerate", "split"].some(prop => key === prop))
|
|
22094
22313
|
return true;
|
|
22095
22314
|
const value = input[key];
|
|
22096
22315
|
if (undefined === value)
|
|
22097
22316
|
return true;
|
|
22098
22317
|
return false;
|
|
22099
|
-
})); const
|
|
22318
|
+
})); const _io21 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (undefined === input.ass || "object" === typeof input.ass && null !== input.ass && false === Array.isArray(input.ass) && _io23(input.ass, true && _exceptionable)) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22100
22319
|
if (["lang", "style", "ccconverter", "ass"].some(prop => key === prop))
|
|
22101
22320
|
return true;
|
|
22102
22321
|
const value = input[key];
|
|
22103
22322
|
if (undefined === value)
|
|
22104
22323
|
return true;
|
|
22105
22324
|
return false;
|
|
22106
|
-
})); const
|
|
22325
|
+
})); const _io22 = (input, _exceptionable = true) => (undefined === input.preset || "string" === typeof input.preset) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22107
22326
|
if (["preset"].some(prop => key === prop))
|
|
22108
22327
|
return true;
|
|
22109
22328
|
const value = input[key];
|
|
22110
22329
|
if (undefined === value)
|
|
22111
22330
|
return true;
|
|
22112
22331
|
return false;
|
|
22113
|
-
})); const
|
|
22332
|
+
})); const _io23 = (input, _exceptionable = true) => (undefined === input.futureWordWrapping || "boolean" === typeof input.futureWordWrapping) && (undefined === input.scaledBorderAndShadow || "boolean" === typeof input.scaledBorderAndShadow) && (undefined === input.enableUnsafeLineSpacingHack || "boolean" === typeof input.enableUnsafeLineSpacingHack) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22114
22333
|
if (["futureWordWrapping", "scaledBorderAndShadow", "enableUnsafeLineSpacingHack"].some(prop => key === prop))
|
|
22115
22334
|
return true;
|
|
22116
22335
|
const value = input[key];
|
|
22117
22336
|
if (undefined === value)
|
|
22118
22337
|
return true;
|
|
22119
22338
|
return false;
|
|
22120
|
-
})); const
|
|
22339
|
+
})); const _io24 = (input, _exceptionable = true) => "string" === typeof input.method && (1 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22121
22340
|
if (["method"].some(prop => key === prop))
|
|
22122
22341
|
return true;
|
|
22123
22342
|
const value = input[key];
|
|
22124
22343
|
if (undefined === value)
|
|
22125
22344
|
return true;
|
|
22126
22345
|
return false;
|
|
22127
|
-
})); const
|
|
22346
|
+
})); const _io25 = (input, _exceptionable = true) => "number" === typeof input.level && "string" === typeof input.code && "string" === typeof input.msg && (3 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22128
22347
|
if (["level", "code", "msg"].some(prop => key === prop))
|
|
22129
22348
|
return true;
|
|
22130
22349
|
const value = input[key];
|
|
22131
22350
|
if (undefined === value)
|
|
22132
22351
|
return true;
|
|
22133
22352
|
return false;
|
|
22134
|
-
})); const
|
|
22353
|
+
})); const _io26 = (input, _exceptionable = true) => (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 && _exceptionable)) && true && true && true && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io24(input.error, true && _exceptionable)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every((elem, _index6) => "object" === typeof elem && null !== elem && _io25(elem, true && _exceptionable))) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22135
22354
|
if (["type", "pageId", "asset", "connection", "render", "draft", "published", "remote", "error", "messages"].some(prop => key === prop))
|
|
22136
22355
|
return true;
|
|
22137
22356
|
const value = input[key];
|
|
22138
22357
|
if (undefined === value)
|
|
22139
22358
|
return true;
|
|
22140
22359
|
return false;
|
|
22141
|
-
})); const
|
|
22360
|
+
})); const _io27 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io32(input.draft, true && _exceptionable)) && (undefined === input.remote || "object" === typeof input.remote && null !== input.remote && false === Array.isArray(input.remote) && _io33(input.remote, true && _exceptionable)) && (undefined === input.published || "object" === typeof input.published && null !== input.published && _io36(input.published, true && _exceptionable)) && (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 && _exceptionable)) && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io24(input.error, true && _exceptionable)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every((elem, _index7) => "object" === typeof elem && null !== elem && _io25(elem, true && _exceptionable))) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22142
22361
|
if (["type", "directory", "filename", "renders", "draft", "remote", "published", "asset", "connection", "render", "error", "messages"].some(prop => key === prop))
|
|
22143
22362
|
return true;
|
|
22144
22363
|
const value = input[key];
|
|
22145
22364
|
if (undefined === value)
|
|
22146
22365
|
return true;
|
|
22147
22366
|
return false;
|
|
22148
|
-
})); const
|
|
22367
|
+
})); const _io28 = (input, _exceptionable = true) => Object.keys(input).every(key => {
|
|
22149
22368
|
const value = input[key];
|
|
22150
22369
|
if (undefined === value)
|
|
22151
22370
|
return true;
|
|
22152
22371
|
return null !== value && undefined !== value && ("string" === typeof value || "object" === typeof value && null !== value && _iu0(value, true && _exceptionable));
|
|
22153
|
-
}); const
|
|
22372
|
+
}); const _io29 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io17(input.profile, true && _exceptionable)) && (2 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22154
22373
|
if (["name", "path", "collisionStrategy", "ignoreEmptyScene", "preset", "type", "scene", "profile"].some(prop => key === prop))
|
|
22155
22374
|
return true;
|
|
22156
22375
|
const value = input[key];
|
|
22157
22376
|
if (undefined === value)
|
|
22158
22377
|
return true;
|
|
22159
22378
|
return false;
|
|
22160
|
-
})); const
|
|
22379
|
+
})); const _io30 = (input, _exceptionable = true) => "object" === typeof input.__context && null !== input.__context && _io31(input.__context, true && _exceptionable) && ("object" === typeof input.__returnValue && null !== input.__returnValue && _io29(input.__returnValue, true && _exceptionable)) && (2 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22161
22380
|
if (["__context", "__returnValue"].some(prop => key === prop))
|
|
22162
22381
|
return true;
|
|
22163
22382
|
const value = input[key];
|
|
22164
22383
|
if (undefined === value)
|
|
22165
22384
|
return true;
|
|
22166
22385
|
return false;
|
|
22167
|
-
})); const
|
|
22386
|
+
})); const _io31 = (input, _exceptionable = true) => "object" === typeof input.publish && null !== input.publish && false === Array.isArray(input.publish) && _io27(input.publish, true && _exceptionable) && "string" === typeof input.directory && "string" === typeof input.name && (3 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22168
22387
|
if (["publish", "directory", "name"].some(prop => key === prop))
|
|
22169
22388
|
return true;
|
|
22170
22389
|
const value = input[key];
|
|
22171
22390
|
if (undefined === value)
|
|
22172
22391
|
return true;
|
|
22173
22392
|
return false;
|
|
22174
|
-
})); const
|
|
22393
|
+
})); const _io32 = (input, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22175
22394
|
if (["directory", "filename"].some(prop => key === prop))
|
|
22176
22395
|
return true;
|
|
22177
22396
|
const value = input[key];
|
|
22178
22397
|
if (undefined === value)
|
|
22179
22398
|
return true;
|
|
22180
22399
|
return false;
|
|
22181
|
-
})); const
|
|
22400
|
+
})); const _io33 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22182
22401
|
if (["directory", "filename", "renders"].some(prop => key === prop))
|
|
22183
22402
|
return true;
|
|
22184
22403
|
const value = input[key];
|
|
22185
22404
|
if (undefined === value)
|
|
22186
22405
|
return true;
|
|
22187
22406
|
return false;
|
|
22188
|
-
})); const
|
|
22407
|
+
})); const _io34 = (input, _exceptionable = true) => Object.keys(input).every(key => {
|
|
22189
22408
|
const value = input[key];
|
|
22190
22409
|
if (undefined === value)
|
|
22191
22410
|
return true;
|
|
22192
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
22193
|
-
}); const
|
|
22411
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io35(value, true && _exceptionable);
|
|
22412
|
+
}); const _io35 = (input, _exceptionable = true) => (undefined === input.path || "string" === typeof input.path) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every((elem, _index8) => "object" === typeof elem && null !== elem && _io25(elem, true && _exceptionable))) && true && (undefined === input.size || "number" === typeof input.size) && (undefined === input.hash || "string" === typeof input.hash) && (undefined === input.source || "string" === typeof input.source) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22194
22413
|
if (["path", "messages", "query", "size", "hash", "source"].some(prop => key === prop))
|
|
22195
22414
|
return true;
|
|
22196
22415
|
const value = input[key];
|
|
22197
22416
|
if (undefined === value)
|
|
22198
22417
|
return true;
|
|
22199
22418
|
return false;
|
|
22200
|
-
})); const
|
|
22419
|
+
})); const _io36 = (input, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory) && "string" === typeof input.filename && (1 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22201
22420
|
if (["directory", "filename"].some(prop => key === prop))
|
|
22202
22421
|
return true;
|
|
22203
22422
|
const value = input[key];
|
|
22204
22423
|
if (undefined === value)
|
|
22205
22424
|
return true;
|
|
22206
22425
|
return false;
|
|
22207
|
-
})); const
|
|
22426
|
+
})); const _io37 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (undefined === input.remote || "object" === typeof input.remote && null !== input.remote && _io38(input.remote, true && _exceptionable)) && (undefined === input.published || "object" === typeof input.published && null !== input.published && _io36(input.published, true && _exceptionable)) && (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, true && _exceptionable)) && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io24(input.error, true && _exceptionable)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every((elem, _index9) => "object" === typeof elem && null !== elem && _io25(elem, true && _exceptionable))) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22208
22427
|
if (["type", "directory", "filename", "draft", "remote", "published", "renders", "asset", "connection", "render", "error", "messages"].some(prop => key === prop))
|
|
22209
22428
|
return true;
|
|
22210
22429
|
const value = input[key];
|
|
22211
22430
|
if (undefined === value)
|
|
22212
22431
|
return true;
|
|
22213
22432
|
return false;
|
|
22214
|
-
})); const
|
|
22433
|
+
})); const _io38 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (undefined === input.metafile || "object" === typeof input.metafile && null !== input.metafile && _io40(input.metafile, true && _exceptionable)) && Object.keys(input).every(key => {
|
|
22215
22434
|
if (["id", "path", "filename", "directory", "subtitle", "metafile"].some(prop => key === prop))
|
|
22216
22435
|
return true;
|
|
22217
22436
|
const value = input[key];
|
|
22218
22437
|
if (undefined === value)
|
|
22219
22438
|
return true;
|
|
22220
22439
|
return true;
|
|
22221
|
-
}); const
|
|
22440
|
+
}); const _io39 = (input, _exceptionable = true) => "string" === typeof input.path && (1 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22222
22441
|
if (["path"].some(prop => key === prop))
|
|
22223
22442
|
return true;
|
|
22224
22443
|
const value = input[key];
|
|
22225
22444
|
if (undefined === value)
|
|
22226
22445
|
return true;
|
|
22227
22446
|
return false;
|
|
22228
|
-
})); const
|
|
22447
|
+
})); const _io40 = (input, _exceptionable = true) => "string" === typeof input.path && (1 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22229
22448
|
if (["path"].some(prop => key === prop))
|
|
22230
22449
|
return true;
|
|
22231
22450
|
const value = input[key];
|
|
22232
22451
|
if (undefined === value)
|
|
22233
22452
|
return true;
|
|
22234
22453
|
return false;
|
|
22235
|
-
})); const
|
|
22454
|
+
})); const _io41 = (input, _exceptionable = true) => (undefined === input.type || "youtube" === input.type) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io42(input.draft, true && _exceptionable)) && (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 && _exceptionable)) && true && true && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io24(input.error, true && _exceptionable)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every((elem, _index10) => "object" === typeof elem && null !== elem && _io25(elem, true && _exceptionable))) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22236
22455
|
if (["type", "draft", "asset", "connection", "render", "published", "remote", "error", "messages"].some(prop => key === prop))
|
|
22237
22456
|
return true;
|
|
22238
22457
|
const value = input[key];
|
|
22239
22458
|
if (undefined === value)
|
|
22240
22459
|
return true;
|
|
22241
22460
|
return false;
|
|
22242
|
-
})); const
|
|
22461
|
+
})); const _io42 = (input, _exceptionable = true) => (undefined === input.snippet || "object" === typeof input.snippet && null !== input.snippet && false === Array.isArray(input.snippet) && _io43(input.snippet, true && _exceptionable)) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22243
22462
|
if (["snippet"].some(prop => key === prop))
|
|
22244
22463
|
return true;
|
|
22245
22464
|
const value = input[key];
|
|
22246
22465
|
if (undefined === value)
|
|
22247
22466
|
return true;
|
|
22248
22467
|
return false;
|
|
22249
|
-
})); const
|
|
22468
|
+
})); const _io43 = (input, _exceptionable = true) => (undefined === input.title || "string" === typeof input.title) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every((elem, _index11) => "string" === typeof elem)) && (undefined === input.description || "string" === typeof input.description) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
22250
22469
|
if (["title", "tags", "description"].some(prop => key === prop))
|
|
22251
22470
|
return true;
|
|
22252
22471
|
const value = input[key];
|
|
@@ -22255,22 +22474,22 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
22255
22474
|
return false;
|
|
22256
22475
|
})); const _iu0 = (input, _exceptionable = true) => (() => {
|
|
22257
22476
|
if (undefined !== input.path)
|
|
22258
|
-
return _io28(input, true && _exceptionable);
|
|
22259
|
-
else if (undefined !== input.__context)
|
|
22260
22477
|
return _io29(input, true && _exceptionable);
|
|
22478
|
+
else if (undefined !== input.__context)
|
|
22479
|
+
return _io30(input, true && _exceptionable);
|
|
22261
22480
|
else
|
|
22262
22481
|
return false;
|
|
22263
22482
|
})(); const _iu1 = (input, _exceptionable = true) => (() => {
|
|
22264
22483
|
if (_io0(input, false && _exceptionable))
|
|
22265
22484
|
return _io0(input, true && _exceptionable);
|
|
22266
|
-
if (_io25(input, false && _exceptionable))
|
|
22267
|
-
return _io25(input, true && _exceptionable);
|
|
22268
|
-
if (_io36(input, false && _exceptionable))
|
|
22269
|
-
return _io36(input, true && _exceptionable);
|
|
22270
22485
|
if (_io26(input, false && _exceptionable))
|
|
22271
22486
|
return _io26(input, true && _exceptionable);
|
|
22272
|
-
if (
|
|
22273
|
-
return
|
|
22487
|
+
if (_io37(input, false && _exceptionable))
|
|
22488
|
+
return _io37(input, true && _exceptionable);
|
|
22489
|
+
if (_io27(input, false && _exceptionable))
|
|
22490
|
+
return _io27(input, true && _exceptionable);
|
|
22491
|
+
if (_io41(input, false && _exceptionable))
|
|
22492
|
+
return _io41(input, true && _exceptionable);
|
|
22274
22493
|
return false;
|
|
22275
22494
|
})(); const _vo0 = (input, _path, _exceptionable = true) => [null === input.type || undefined === input.type || _report(_exceptionable, {
|
|
22276
22495
|
path: _path + ".type",
|
|
@@ -22296,7 +22515,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
22296
22515
|
path: _path + ".error",
|
|
22297
22516
|
expected: "(__type.o13 | null | undefined)",
|
|
22298
22517
|
value: input.error
|
|
22299
|
-
})) &&
|
|
22518
|
+
})) && _vo24(input.error, _path + ".error", true && _exceptionable) || _report(_exceptionable, {
|
|
22300
22519
|
path: _path + ".error",
|
|
22301
22520
|
expected: "(__type.o13 | null | undefined)",
|
|
22302
22521
|
value: input.error
|
|
@@ -22308,7 +22527,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
22308
22527
|
path: _path + ".messages[" + _index12 + "]",
|
|
22309
22528
|
expected: "Message",
|
|
22310
22529
|
value: elem
|
|
22311
|
-
})) &&
|
|
22530
|
+
})) && _vo25(elem, _path + ".messages[" + _index12 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
22312
22531
|
path: _path + ".messages[" + _index12 + "]",
|
|
22313
22532
|
expected: "Message",
|
|
22314
22533
|
value: elem
|
|
@@ -22352,7 +22571,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
22352
22571
|
path: _path + ".profile",
|
|
22353
22572
|
expected: "(RenderProfileObject | undefined)",
|
|
22354
22573
|
value: input.profile
|
|
22355
|
-
})) &&
|
|
22574
|
+
})) && _vo17(input.profile, _path + ".profile", true && _exceptionable) || _report(_exceptionable, {
|
|
22356
22575
|
path: _path + ".profile",
|
|
22357
22576
|
expected: "(RenderProfileObject | undefined)",
|
|
22358
22577
|
value: input.profile
|
|
@@ -22420,7 +22639,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
22420
22639
|
path: _path + ".audio",
|
|
22421
22640
|
expected: "(__type.o6 | undefined)",
|
|
22422
22641
|
value: input.audio
|
|
22423
|
-
})) &&
|
|
22642
|
+
})) && _vo15(input.audio, _path + ".audio", true && _exceptionable) || _report(_exceptionable, {
|
|
22424
22643
|
path: _path + ".audio",
|
|
22425
22644
|
expected: "(__type.o6 | undefined)",
|
|
22426
22645
|
value: input.audio
|
|
@@ -22436,7 +22655,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
22436
22655
|
path: _path + ".transcribe",
|
|
22437
22656
|
expected: "(__type.o7 | undefined)",
|
|
22438
22657
|
value: input.transcribe
|
|
22439
|
-
})) &&
|
|
22658
|
+
})) && _vo16(input.transcribe, _path + ".transcribe", true && _exceptionable) || _report(_exceptionable, {
|
|
22440
22659
|
path: _path + ".transcribe",
|
|
22441
22660
|
expected: "(__type.o7 | undefined)",
|
|
22442
22661
|
value: input.transcribe
|
|
@@ -22729,6 +22948,14 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
22729
22948
|
path: _path + ".crop",
|
|
22730
22949
|
expected: "(RenderSceneCrop | undefined)",
|
|
22731
22950
|
value: input.crop
|
|
22951
|
+
}), undefined === input.focus || ("object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) || _report(_exceptionable, {
|
|
22952
|
+
path: _path + ".focus",
|
|
22953
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
22954
|
+
value: input.focus
|
|
22955
|
+
})) && _vo14(input.focus, _path + ".focus", true && _exceptionable) || _report(_exceptionable, {
|
|
22956
|
+
path: _path + ".focus",
|
|
22957
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
22958
|
+
value: input.focus
|
|
22732
22959
|
}), undefined === input.orientation || "number" === typeof input.orientation || _report(_exceptionable, {
|
|
22733
22960
|
path: _path + ".orientation",
|
|
22734
22961
|
expected: "(number | undefined)",
|
|
@@ -22742,7 +22969,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
22742
22969
|
expected: "(\"straight\" | boolean | null | undefined)",
|
|
22743
22970
|
value: input.alpha
|
|
22744
22971
|
}), 0 === Object.keys(input).length || (false === _exceptionable || Object.keys(input).map(key => {
|
|
22745
|
-
if (["filters", "crop", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
22972
|
+
if (["filters", "crop", "focus", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
22746
22973
|
return true;
|
|
22747
22974
|
const value = input[key];
|
|
22748
22975
|
if (undefined === value)
|
|
@@ -22941,7 +23168,31 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
22941
23168
|
"Please remove the property next time."
|
|
22942
23169
|
].join("\n")
|
|
22943
23170
|
});
|
|
22944
|
-
}).every(flag => flag))].every(flag => flag); const _vo14 = (input, _path, _exceptionable = true) => [undefined === input.
|
|
23171
|
+
}).every(flag => flag))].every(flag => flag); const _vo14 = (input, _path, _exceptionable = true) => [undefined === input.x || "number" === typeof input.x || _report(_exceptionable, {
|
|
23172
|
+
path: _path + ".x",
|
|
23173
|
+
expected: "(number | undefined)",
|
|
23174
|
+
value: input.x
|
|
23175
|
+
}), undefined === input.y || "number" === typeof input.y || _report(_exceptionable, {
|
|
23176
|
+
path: _path + ".y",
|
|
23177
|
+
expected: "(number | undefined)",
|
|
23178
|
+
value: input.y
|
|
23179
|
+
}), 0 === Object.keys(input).length || (false === _exceptionable || Object.keys(input).map(key => {
|
|
23180
|
+
if (["x", "y"].some(prop => key === prop))
|
|
23181
|
+
return true;
|
|
23182
|
+
const value = input[key];
|
|
23183
|
+
if (undefined === value)
|
|
23184
|
+
return true;
|
|
23185
|
+
return _report(_exceptionable, {
|
|
23186
|
+
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
23187
|
+
expected: "undefined",
|
|
23188
|
+
value: value,
|
|
23189
|
+
description: [
|
|
23190
|
+
`The property \`${key}\` is not defined in the object type.`,
|
|
23191
|
+
"",
|
|
23192
|
+
"Please remove the property next time."
|
|
23193
|
+
].join("\n")
|
|
23194
|
+
});
|
|
23195
|
+
}).every(flag => flag))].every(flag => flag); const _vo15 = (input, _path, _exceptionable = true) => [undefined === input.pan || (Array.isArray(input.pan) || _report(_exceptionable, {
|
|
22945
23196
|
path: _path + ".pan",
|
|
22946
23197
|
expected: "(Array<Array<number>> | undefined)",
|
|
22947
23198
|
value: input.pan
|
|
@@ -22977,7 +23228,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
22977
23228
|
"Please remove the property next time."
|
|
22978
23229
|
].join("\n")
|
|
22979
23230
|
});
|
|
22980
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23231
|
+
}).every(flag => flag))].every(flag => flag); const _vo16 = (input, _path, _exceptionable = true) => [undefined === input.language || "string" === typeof input.language || _report(_exceptionable, {
|
|
22981
23232
|
path: _path + ".language",
|
|
22982
23233
|
expected: "(string | undefined)",
|
|
22983
23234
|
value: input.language
|
|
@@ -23013,7 +23264,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23013
23264
|
"Please remove the property next time."
|
|
23014
23265
|
].join("\n")
|
|
23015
23266
|
});
|
|
23016
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23267
|
+
}).every(flag => flag))].every(flag => flag); const _vo17 = (input, _path, _exceptionable = true) => ["string" === typeof input.format || _report(_exceptionable, {
|
|
23017
23268
|
path: _path + ".format",
|
|
23018
23269
|
expected: "string",
|
|
23019
23270
|
value: input.format
|
|
@@ -23021,7 +23272,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23021
23272
|
path: _path + ".transcribe",
|
|
23022
23273
|
expected: "(__type.o8 | undefined)",
|
|
23023
23274
|
value: input.transcribe
|
|
23024
|
-
})) &&
|
|
23275
|
+
})) && _vo18(input.transcribe, _path + ".transcribe", true && _exceptionable) || _report(_exceptionable, {
|
|
23025
23276
|
path: _path + ".transcribe",
|
|
23026
23277
|
expected: "(__type.o8 | undefined)",
|
|
23027
23278
|
value: input.transcribe
|
|
@@ -23029,7 +23280,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23029
23280
|
path: _path + ".translate",
|
|
23030
23281
|
expected: "(__type.o9 | undefined)",
|
|
23031
23282
|
value: input.translate
|
|
23032
|
-
})) &&
|
|
23283
|
+
})) && _vo19(input.translate, _path + ".translate", true && _exceptionable) || _report(_exceptionable, {
|
|
23033
23284
|
path: _path + ".translate",
|
|
23034
23285
|
expected: "(__type.o9 | undefined)",
|
|
23035
23286
|
value: input.translate
|
|
@@ -23037,7 +23288,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23037
23288
|
path: _path + ".audio",
|
|
23038
23289
|
expected: "(__type.o10 | undefined)",
|
|
23039
23290
|
value: input.audio
|
|
23040
|
-
})) &&
|
|
23291
|
+
})) && _vo20(input.audio, _path + ".audio", true && _exceptionable) || _report(_exceptionable, {
|
|
23041
23292
|
path: _path + ".audio",
|
|
23042
23293
|
expected: "(__type.o10 | undefined)",
|
|
23043
23294
|
value: input.audio
|
|
@@ -23061,7 +23312,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23061
23312
|
path: _path + ".subtitle",
|
|
23062
23313
|
expected: "(SubtitleProfile | string | undefined)",
|
|
23063
23314
|
value: input.subtitle
|
|
23064
|
-
})) &&
|
|
23315
|
+
})) && _vo21(input.subtitle, _path + ".subtitle", true && _exceptionable) || _report(_exceptionable, {
|
|
23065
23316
|
path: _path + ".subtitle",
|
|
23066
23317
|
expected: "(SubtitleProfile | string | undefined)",
|
|
23067
23318
|
value: input.subtitle
|
|
@@ -23081,7 +23332,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23081
23332
|
"Please remove the property next time."
|
|
23082
23333
|
].join("\n")
|
|
23083
23334
|
});
|
|
23084
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23335
|
+
}).every(flag => flag))].every(flag => flag); const _vo18 = (input, _path, _exceptionable = true) => ["string" === typeof input.engine || _report(_exceptionable, {
|
|
23085
23336
|
path: _path + ".engine",
|
|
23086
23337
|
expected: "string",
|
|
23087
23338
|
value: input.engine
|
|
@@ -23101,7 +23352,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23101
23352
|
"Please remove the property next time."
|
|
23102
23353
|
].join("\n")
|
|
23103
23354
|
});
|
|
23104
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23355
|
+
}).every(flag => flag))].every(flag => flag); const _vo19 = (input, _path, _exceptionable = true) => ["string" === typeof input.language || _report(_exceptionable, {
|
|
23105
23356
|
path: _path + ".language",
|
|
23106
23357
|
expected: "string",
|
|
23107
23358
|
value: input.language
|
|
@@ -23121,7 +23372,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23121
23372
|
"Please remove the property next time."
|
|
23122
23373
|
].join("\n")
|
|
23123
23374
|
});
|
|
23124
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23375
|
+
}).every(flag => flag))].every(flag => flag); const _vo20 = (input, _path, _exceptionable = true) => [undefined === input.codec || "string" === typeof input.codec || _report(_exceptionable, {
|
|
23125
23376
|
path: _path + ".codec",
|
|
23126
23377
|
expected: "(string | undefined)",
|
|
23127
23378
|
value: input.codec
|
|
@@ -23153,7 +23404,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23153
23404
|
"Please remove the property next time."
|
|
23154
23405
|
].join("\n")
|
|
23155
23406
|
});
|
|
23156
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23407
|
+
}).every(flag => flag))].every(flag => flag); const _vo21 = (input, _path, _exceptionable = true) => [undefined === input.lang || "string" === typeof input.lang || _report(_exceptionable, {
|
|
23157
23408
|
path: _path + ".lang",
|
|
23158
23409
|
expected: "(string | undefined)",
|
|
23159
23410
|
value: input.lang
|
|
@@ -23165,7 +23416,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23165
23416
|
path: _path + ".ccconverter",
|
|
23166
23417
|
expected: "(__type.o11 | undefined)",
|
|
23167
23418
|
value: input.ccconverter
|
|
23168
|
-
})) &&
|
|
23419
|
+
})) && _vo22(input.ccconverter, _path + ".ccconverter", true && _exceptionable) || _report(_exceptionable, {
|
|
23169
23420
|
path: _path + ".ccconverter",
|
|
23170
23421
|
expected: "(__type.o11 | undefined)",
|
|
23171
23422
|
value: input.ccconverter
|
|
@@ -23173,7 +23424,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23173
23424
|
path: _path + ".ass",
|
|
23174
23425
|
expected: "(__type.o12 | undefined)",
|
|
23175
23426
|
value: input.ass
|
|
23176
|
-
})) &&
|
|
23427
|
+
})) && _vo23(input.ass, _path + ".ass", true && _exceptionable) || _report(_exceptionable, {
|
|
23177
23428
|
path: _path + ".ass",
|
|
23178
23429
|
expected: "(__type.o12 | undefined)",
|
|
23179
23430
|
value: input.ass
|
|
@@ -23193,7 +23444,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23193
23444
|
"Please remove the property next time."
|
|
23194
23445
|
].join("\n")
|
|
23195
23446
|
});
|
|
23196
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23447
|
+
}).every(flag => flag))].every(flag => flag); const _vo22 = (input, _path, _exceptionable = true) => [undefined === input.preset || "string" === typeof input.preset || _report(_exceptionable, {
|
|
23197
23448
|
path: _path + ".preset",
|
|
23198
23449
|
expected: "(string | undefined)",
|
|
23199
23450
|
value: input.preset
|
|
@@ -23213,7 +23464,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23213
23464
|
"Please remove the property next time."
|
|
23214
23465
|
].join("\n")
|
|
23215
23466
|
});
|
|
23216
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23467
|
+
}).every(flag => flag))].every(flag => flag); const _vo23 = (input, _path, _exceptionable = true) => [undefined === input.futureWordWrapping || "boolean" === typeof input.futureWordWrapping || _report(_exceptionable, {
|
|
23217
23468
|
path: _path + ".futureWordWrapping",
|
|
23218
23469
|
expected: "(boolean | undefined)",
|
|
23219
23470
|
value: input.futureWordWrapping
|
|
@@ -23241,7 +23492,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23241
23492
|
"Please remove the property next time."
|
|
23242
23493
|
].join("\n")
|
|
23243
23494
|
});
|
|
23244
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23495
|
+
}).every(flag => flag))].every(flag => flag); const _vo24 = (input, _path, _exceptionable = true) => ["string" === typeof input.method || _report(_exceptionable, {
|
|
23245
23496
|
path: _path + ".method",
|
|
23246
23497
|
expected: "string",
|
|
23247
23498
|
value: input.method
|
|
@@ -23261,7 +23512,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23261
23512
|
"Please remove the property next time."
|
|
23262
23513
|
].join("\n")
|
|
23263
23514
|
});
|
|
23264
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23515
|
+
}).every(flag => flag))].every(flag => flag); const _vo25 = (input, _path, _exceptionable = true) => ["number" === typeof input.level || _report(_exceptionable, {
|
|
23265
23516
|
path: _path + ".level",
|
|
23266
23517
|
expected: "number",
|
|
23267
23518
|
value: input.level
|
|
@@ -23289,7 +23540,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23289
23540
|
"Please remove the property next time."
|
|
23290
23541
|
].join("\n")
|
|
23291
23542
|
});
|
|
23292
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23543
|
+
}).every(flag => flag))].every(flag => flag); const _vo26 = (input, _path, _exceptionable = true) => [undefined === input.type || "facebook" === input.type || _report(_exceptionable, {
|
|
23293
23544
|
path: _path + ".type",
|
|
23294
23545
|
expected: "(\"facebook\" | undefined)",
|
|
23295
23546
|
value: input.type
|
|
@@ -23317,7 +23568,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23317
23568
|
path: _path + ".error",
|
|
23318
23569
|
expected: "(__type.o13 | null | undefined)",
|
|
23319
23570
|
value: input.error
|
|
23320
|
-
})) &&
|
|
23571
|
+
})) && _vo24(input.error, _path + ".error", true && _exceptionable) || _report(_exceptionable, {
|
|
23321
23572
|
path: _path + ".error",
|
|
23322
23573
|
expected: "(__type.o13 | null | undefined)",
|
|
23323
23574
|
value: input.error
|
|
@@ -23329,7 +23580,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23329
23580
|
path: _path + ".messages[" + _index17 + "]",
|
|
23330
23581
|
expected: "Message",
|
|
23331
23582
|
value: elem
|
|
23332
|
-
})) &&
|
|
23583
|
+
})) && _vo25(elem, _path + ".messages[" + _index17 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
23333
23584
|
path: _path + ".messages[" + _index17 + "]",
|
|
23334
23585
|
expected: "Message",
|
|
23335
23586
|
value: elem
|
|
@@ -23353,7 +23604,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23353
23604
|
"Please remove the property next time."
|
|
23354
23605
|
].join("\n")
|
|
23355
23606
|
});
|
|
23356
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23607
|
+
}).every(flag => flag))].every(flag => flag); const _vo27 = (input, _path, _exceptionable = true) => [undefined === input.type || "file" === input.type || _report(_exceptionable, {
|
|
23357
23608
|
path: _path + ".type",
|
|
23358
23609
|
expected: "(\"file\" | undefined)",
|
|
23359
23610
|
value: input.type
|
|
@@ -23369,7 +23620,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23369
23620
|
path: _path + ".renders",
|
|
23370
23621
|
expected: "(Record<string, FilePublishRender> | undefined)",
|
|
23371
23622
|
value: input.renders
|
|
23372
|
-
})) &&
|
|
23623
|
+
})) && _vo28(input.renders, _path + ".renders", true && _exceptionable) || _report(_exceptionable, {
|
|
23373
23624
|
path: _path + ".renders",
|
|
23374
23625
|
expected: "(Record<string, FilePublishRender> | undefined)",
|
|
23375
23626
|
value: input.renders
|
|
@@ -23377,7 +23628,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23377
23628
|
path: _path + ".draft",
|
|
23378
23629
|
expected: "(FilePublishDraft | undefined)",
|
|
23379
23630
|
value: input.draft
|
|
23380
|
-
})) &&
|
|
23631
|
+
})) && _vo32(input.draft, _path + ".draft", true && _exceptionable) || _report(_exceptionable, {
|
|
23381
23632
|
path: _path + ".draft",
|
|
23382
23633
|
expected: "(FilePublishDraft | undefined)",
|
|
23383
23634
|
value: input.draft
|
|
@@ -23385,7 +23636,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23385
23636
|
path: _path + ".remote",
|
|
23386
23637
|
expected: "(FilePublishRemote | undefined)",
|
|
23387
23638
|
value: input.remote
|
|
23388
|
-
})) &&
|
|
23639
|
+
})) && _vo33(input.remote, _path + ".remote", true && _exceptionable) || _report(_exceptionable, {
|
|
23389
23640
|
path: _path + ".remote",
|
|
23390
23641
|
expected: "(FilePublishRemote | undefined)",
|
|
23391
23642
|
value: input.remote
|
|
@@ -23393,7 +23644,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23393
23644
|
path: _path + ".published",
|
|
23394
23645
|
expected: "(FilePublishPublished | undefined)",
|
|
23395
23646
|
value: input.published
|
|
23396
|
-
})) &&
|
|
23647
|
+
})) && _vo36(input.published, _path + ".published", true && _exceptionable) || _report(_exceptionable, {
|
|
23397
23648
|
path: _path + ".published",
|
|
23398
23649
|
expected: "(FilePublishPublished | undefined)",
|
|
23399
23650
|
value: input.published
|
|
@@ -23417,7 +23668,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23417
23668
|
path: _path + ".error",
|
|
23418
23669
|
expected: "(__type.o13 | null | undefined)",
|
|
23419
23670
|
value: input.error
|
|
23420
|
-
})) &&
|
|
23671
|
+
})) && _vo24(input.error, _path + ".error", true && _exceptionable) || _report(_exceptionable, {
|
|
23421
23672
|
path: _path + ".error",
|
|
23422
23673
|
expected: "(__type.o13 | null | undefined)",
|
|
23423
23674
|
value: input.error
|
|
@@ -23429,7 +23680,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23429
23680
|
path: _path + ".messages[" + _index18 + "]",
|
|
23430
23681
|
expected: "Message",
|
|
23431
23682
|
value: elem
|
|
23432
|
-
})) &&
|
|
23683
|
+
})) && _vo25(elem, _path + ".messages[" + _index18 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
23433
23684
|
path: _path + ".messages[" + _index18 + "]",
|
|
23434
23685
|
expected: "Message",
|
|
23435
23686
|
value: elem
|
|
@@ -23453,7 +23704,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23453
23704
|
"Please remove the property next time."
|
|
23454
23705
|
].join("\n")
|
|
23455
23706
|
});
|
|
23456
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23707
|
+
}).every(flag => flag))].every(flag => flag); const _vo28 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
23457
23708
|
const value = input[key];
|
|
23458
23709
|
if (undefined === value)
|
|
23459
23710
|
return true;
|
|
@@ -23474,7 +23725,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23474
23725
|
expected: "(ResolvedFilePublishRender | __type.o14 | string)",
|
|
23475
23726
|
value: value
|
|
23476
23727
|
}));
|
|
23477
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
23728
|
+
}).every(flag => flag)].every(flag => flag); const _vo29 = (input, _path, _exceptionable = true) => [undefined === input.name || "string" === typeof input.name || _report(_exceptionable, {
|
|
23478
23729
|
path: _path + ".name",
|
|
23479
23730
|
expected: "(string | undefined)",
|
|
23480
23731
|
value: input.name
|
|
@@ -23510,7 +23761,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23510
23761
|
path: _path + ".profile",
|
|
23511
23762
|
expected: "(RenderProfileObject | undefined)",
|
|
23512
23763
|
value: input.profile
|
|
23513
|
-
})) &&
|
|
23764
|
+
})) && _vo17(input.profile, _path + ".profile", true && _exceptionable) || _report(_exceptionable, {
|
|
23514
23765
|
path: _path + ".profile",
|
|
23515
23766
|
expected: "(RenderProfileObject | undefined)",
|
|
23516
23767
|
value: input.profile
|
|
@@ -23530,11 +23781,11 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23530
23781
|
"Please remove the property next time."
|
|
23531
23782
|
].join("\n")
|
|
23532
23783
|
});
|
|
23533
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23784
|
+
}).every(flag => flag))].every(flag => flag); const _vo30 = (input, _path, _exceptionable = true) => [("object" === typeof input.__context && null !== input.__context || _report(_exceptionable, {
|
|
23534
23785
|
path: _path + ".__context",
|
|
23535
23786
|
expected: "__type.o15",
|
|
23536
23787
|
value: input.__context
|
|
23537
|
-
})) &&
|
|
23788
|
+
})) && _vo31(input.__context, _path + ".__context", true && _exceptionable) || _report(_exceptionable, {
|
|
23538
23789
|
path: _path + ".__context",
|
|
23539
23790
|
expected: "__type.o15",
|
|
23540
23791
|
value: input.__context
|
|
@@ -23542,7 +23793,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23542
23793
|
path: _path + ".__returnValue",
|
|
23543
23794
|
expected: "ResolvedFilePublishRender",
|
|
23544
23795
|
value: input.__returnValue
|
|
23545
|
-
})) &&
|
|
23796
|
+
})) && _vo29(input.__returnValue, _path + ".__returnValue", true && _exceptionable) || _report(_exceptionable, {
|
|
23546
23797
|
path: _path + ".__returnValue",
|
|
23547
23798
|
expected: "ResolvedFilePublishRender",
|
|
23548
23799
|
value: input.__returnValue
|
|
@@ -23562,11 +23813,11 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23562
23813
|
"Please remove the property next time."
|
|
23563
23814
|
].join("\n")
|
|
23564
23815
|
});
|
|
23565
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23816
|
+
}).every(flag => flag))].every(flag => flag); const _vo31 = (input, _path, _exceptionable = true) => [("object" === typeof input.publish && null !== input.publish && false === Array.isArray(input.publish) || _report(_exceptionable, {
|
|
23566
23817
|
path: _path + ".publish",
|
|
23567
23818
|
expected: "FilePublishRecord",
|
|
23568
23819
|
value: input.publish
|
|
23569
|
-
})) &&
|
|
23820
|
+
})) && _vo27(input.publish, _path + ".publish", true && _exceptionable) || _report(_exceptionable, {
|
|
23570
23821
|
path: _path + ".publish",
|
|
23571
23822
|
expected: "FilePublishRecord",
|
|
23572
23823
|
value: input.publish
|
|
@@ -23594,7 +23845,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23594
23845
|
"Please remove the property next time."
|
|
23595
23846
|
].join("\n")
|
|
23596
23847
|
});
|
|
23597
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23848
|
+
}).every(flag => flag))].every(flag => flag); const _vo32 = (input, _path, _exceptionable = true) => [undefined === input.directory || "string" === typeof input.directory || _report(_exceptionable, {
|
|
23598
23849
|
path: _path + ".directory",
|
|
23599
23850
|
expected: "(string | undefined)",
|
|
23600
23851
|
value: input.directory
|
|
@@ -23618,7 +23869,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23618
23869
|
"Please remove the property next time."
|
|
23619
23870
|
].join("\n")
|
|
23620
23871
|
});
|
|
23621
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23872
|
+
}).every(flag => flag))].every(flag => flag); const _vo33 = (input, _path, _exceptionable = true) => [undefined === input.directory || "string" === typeof input.directory || _report(_exceptionable, {
|
|
23622
23873
|
path: _path + ".directory",
|
|
23623
23874
|
expected: "(string | undefined)",
|
|
23624
23875
|
value: input.directory
|
|
@@ -23630,7 +23881,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23630
23881
|
path: _path + ".renders",
|
|
23631
23882
|
expected: "(Record<string, FilePublishRemoteRender> | undefined)",
|
|
23632
23883
|
value: input.renders
|
|
23633
|
-
})) &&
|
|
23884
|
+
})) && _vo34(input.renders, _path + ".renders", true && _exceptionable) || _report(_exceptionable, {
|
|
23634
23885
|
path: _path + ".renders",
|
|
23635
23886
|
expected: "(Record<string, FilePublishRemoteRender> | undefined)",
|
|
23636
23887
|
value: input.renders
|
|
@@ -23650,7 +23901,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23650
23901
|
"Please remove the property next time."
|
|
23651
23902
|
].join("\n")
|
|
23652
23903
|
});
|
|
23653
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23904
|
+
}).every(flag => flag))].every(flag => flag); const _vo34 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
23654
23905
|
const value = input[key];
|
|
23655
23906
|
if (undefined === value)
|
|
23656
23907
|
return true;
|
|
@@ -23658,12 +23909,12 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23658
23909
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
23659
23910
|
expected: "FilePublishRemoteRender",
|
|
23660
23911
|
value: value
|
|
23661
|
-
})) &&
|
|
23912
|
+
})) && _vo35(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || _report(_exceptionable, {
|
|
23662
23913
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
23663
23914
|
expected: "FilePublishRemoteRender",
|
|
23664
23915
|
value: value
|
|
23665
23916
|
});
|
|
23666
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
23917
|
+
}).every(flag => flag)].every(flag => flag); const _vo35 = (input, _path, _exceptionable = true) => [undefined === input.path || "string" === typeof input.path || _report(_exceptionable, {
|
|
23667
23918
|
path: _path + ".path",
|
|
23668
23919
|
expected: "(string | undefined)",
|
|
23669
23920
|
value: input.path
|
|
@@ -23675,7 +23926,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23675
23926
|
path: _path + ".messages[" + _index19 + "]",
|
|
23676
23927
|
expected: "Message",
|
|
23677
23928
|
value: elem
|
|
23678
|
-
})) &&
|
|
23929
|
+
})) && _vo25(elem, _path + ".messages[" + _index19 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
23679
23930
|
path: _path + ".messages[" + _index19 + "]",
|
|
23680
23931
|
expected: "Message",
|
|
23681
23932
|
value: elem
|
|
@@ -23711,7 +23962,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23711
23962
|
"Please remove the property next time."
|
|
23712
23963
|
].join("\n")
|
|
23713
23964
|
});
|
|
23714
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23965
|
+
}).every(flag => flag))].every(flag => flag); const _vo36 = (input, _path, _exceptionable = true) => [undefined === input.directory || "string" === typeof input.directory || _report(_exceptionable, {
|
|
23715
23966
|
path: _path + ".directory",
|
|
23716
23967
|
expected: "(string | undefined)",
|
|
23717
23968
|
value: input.directory
|
|
@@ -23735,7 +23986,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23735
23986
|
"Please remove the property next time."
|
|
23736
23987
|
].join("\n")
|
|
23737
23988
|
});
|
|
23738
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
23989
|
+
}).every(flag => flag))].every(flag => flag); const _vo37 = (input, _path, _exceptionable = true) => [undefined === input.type || "file" === input.type || _report(_exceptionable, {
|
|
23739
23990
|
path: _path + ".type",
|
|
23740
23991
|
expected: "(\"file\" | undefined)",
|
|
23741
23992
|
value: input.type
|
|
@@ -23751,7 +24002,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23751
24002
|
path: _path + ".draft",
|
|
23752
24003
|
expected: "(FilePublishDraft | undefined)",
|
|
23753
24004
|
value: input.draft
|
|
23754
|
-
})) &&
|
|
24005
|
+
})) && _vo32(input.draft, _path + ".draft", true && _exceptionable) || _report(_exceptionable, {
|
|
23755
24006
|
path: _path + ".draft",
|
|
23756
24007
|
expected: "(FilePublishDraft | undefined)",
|
|
23757
24008
|
value: input.draft
|
|
@@ -23759,7 +24010,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23759
24010
|
path: _path + ".remote",
|
|
23760
24011
|
expected: "(FilePublishRemoteLegacy | undefined)",
|
|
23761
24012
|
value: input.remote
|
|
23762
|
-
})) &&
|
|
24013
|
+
})) && _vo38(input.remote, _path + ".remote", true && _exceptionable) || _report(_exceptionable, {
|
|
23763
24014
|
path: _path + ".remote",
|
|
23764
24015
|
expected: "(FilePublishRemoteLegacy | undefined)",
|
|
23765
24016
|
value: input.remote
|
|
@@ -23767,7 +24018,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23767
24018
|
path: _path + ".published",
|
|
23768
24019
|
expected: "(FilePublishPublished | undefined)",
|
|
23769
24020
|
value: input.published
|
|
23770
|
-
})) &&
|
|
24021
|
+
})) && _vo36(input.published, _path + ".published", true && _exceptionable) || _report(_exceptionable, {
|
|
23771
24022
|
path: _path + ".published",
|
|
23772
24023
|
expected: "(FilePublishPublished | undefined)",
|
|
23773
24024
|
value: input.published
|
|
@@ -23799,7 +24050,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23799
24050
|
path: _path + ".error",
|
|
23800
24051
|
expected: "(__type.o13 | null | undefined)",
|
|
23801
24052
|
value: input.error
|
|
23802
|
-
})) &&
|
|
24053
|
+
})) && _vo24(input.error, _path + ".error", true && _exceptionable) || _report(_exceptionable, {
|
|
23803
24054
|
path: _path + ".error",
|
|
23804
24055
|
expected: "(__type.o13 | null | undefined)",
|
|
23805
24056
|
value: input.error
|
|
@@ -23811,7 +24062,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23811
24062
|
path: _path + ".messages[" + _index20 + "]",
|
|
23812
24063
|
expected: "Message",
|
|
23813
24064
|
value: elem
|
|
23814
|
-
})) &&
|
|
24065
|
+
})) && _vo25(elem, _path + ".messages[" + _index20 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
23815
24066
|
path: _path + ".messages[" + _index20 + "]",
|
|
23816
24067
|
expected: "Message",
|
|
23817
24068
|
value: elem
|
|
@@ -23835,7 +24086,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23835
24086
|
"Please remove the property next time."
|
|
23836
24087
|
].join("\n")
|
|
23837
24088
|
});
|
|
23838
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
24089
|
+
}).every(flag => flag))].every(flag => flag); const _vo38 = (input, _path, _exceptionable = true) => [undefined === input.id || "string" === typeof input.id || _report(_exceptionable, {
|
|
23839
24090
|
path: _path + ".id",
|
|
23840
24091
|
expected: "(string | undefined)",
|
|
23841
24092
|
value: input.id
|
|
@@ -23855,7 +24106,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23855
24106
|
path: _path + ".subtitle",
|
|
23856
24107
|
expected: "(__type.o16 | undefined)",
|
|
23857
24108
|
value: input.subtitle
|
|
23858
|
-
})) &&
|
|
24109
|
+
})) && _vo39(input.subtitle, _path + ".subtitle", true && _exceptionable) || _report(_exceptionable, {
|
|
23859
24110
|
path: _path + ".subtitle",
|
|
23860
24111
|
expected: "(__type.o16 | undefined)",
|
|
23861
24112
|
value: input.subtitle
|
|
@@ -23863,7 +24114,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23863
24114
|
path: _path + ".metafile",
|
|
23864
24115
|
expected: "(__type.o17 | undefined)",
|
|
23865
24116
|
value: input.metafile
|
|
23866
|
-
})) &&
|
|
24117
|
+
})) && _vo40(input.metafile, _path + ".metafile", true && _exceptionable) || _report(_exceptionable, {
|
|
23867
24118
|
path: _path + ".metafile",
|
|
23868
24119
|
expected: "(__type.o17 | undefined)",
|
|
23869
24120
|
value: input.metafile
|
|
@@ -23874,7 +24125,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23874
24125
|
if (undefined === value)
|
|
23875
24126
|
return true;
|
|
23876
24127
|
return true;
|
|
23877
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
24128
|
+
}).every(flag => flag)].every(flag => flag); const _vo39 = (input, _path, _exceptionable = true) => ["string" === typeof input.path || _report(_exceptionable, {
|
|
23878
24129
|
path: _path + ".path",
|
|
23879
24130
|
expected: "string",
|
|
23880
24131
|
value: input.path
|
|
@@ -23894,7 +24145,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23894
24145
|
"Please remove the property next time."
|
|
23895
24146
|
].join("\n")
|
|
23896
24147
|
});
|
|
23897
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
24148
|
+
}).every(flag => flag))].every(flag => flag); const _vo40 = (input, _path, _exceptionable = true) => ["string" === typeof input.path || _report(_exceptionable, {
|
|
23898
24149
|
path: _path + ".path",
|
|
23899
24150
|
expected: "string",
|
|
23900
24151
|
value: input.path
|
|
@@ -23914,7 +24165,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23914
24165
|
"Please remove the property next time."
|
|
23915
24166
|
].join("\n")
|
|
23916
24167
|
});
|
|
23917
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
24168
|
+
}).every(flag => flag))].every(flag => flag); const _vo41 = (input, _path, _exceptionable = true) => [undefined === input.type || "youtube" === input.type || _report(_exceptionable, {
|
|
23918
24169
|
path: _path + ".type",
|
|
23919
24170
|
expected: "(\"youtube\" | undefined)",
|
|
23920
24171
|
value: input.type
|
|
@@ -23922,7 +24173,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23922
24173
|
path: _path + ".draft",
|
|
23923
24174
|
expected: "(__type.o18 | undefined)",
|
|
23924
24175
|
value: input.draft
|
|
23925
|
-
})) &&
|
|
24176
|
+
})) && _vo42(input.draft, _path + ".draft", true && _exceptionable) || _report(_exceptionable, {
|
|
23926
24177
|
path: _path + ".draft",
|
|
23927
24178
|
expected: "(__type.o18 | undefined)",
|
|
23928
24179
|
value: input.draft
|
|
@@ -23946,7 +24197,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23946
24197
|
path: _path + ".error",
|
|
23947
24198
|
expected: "(__type.o13 | null | undefined)",
|
|
23948
24199
|
value: input.error
|
|
23949
|
-
})) &&
|
|
24200
|
+
})) && _vo24(input.error, _path + ".error", true && _exceptionable) || _report(_exceptionable, {
|
|
23950
24201
|
path: _path + ".error",
|
|
23951
24202
|
expected: "(__type.o13 | null | undefined)",
|
|
23952
24203
|
value: input.error
|
|
@@ -23958,7 +24209,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23958
24209
|
path: _path + ".messages[" + _index21 + "]",
|
|
23959
24210
|
expected: "Message",
|
|
23960
24211
|
value: elem
|
|
23961
|
-
})) &&
|
|
24212
|
+
})) && _vo25(elem, _path + ".messages[" + _index21 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
23962
24213
|
path: _path + ".messages[" + _index21 + "]",
|
|
23963
24214
|
expected: "Message",
|
|
23964
24215
|
value: elem
|
|
@@ -23982,11 +24233,11 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
23982
24233
|
"Please remove the property next time."
|
|
23983
24234
|
].join("\n")
|
|
23984
24235
|
});
|
|
23985
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
24236
|
+
}).every(flag => flag))].every(flag => flag); const _vo42 = (input, _path, _exceptionable = true) => [undefined === input.snippet || ("object" === typeof input.snippet && null !== input.snippet && false === Array.isArray(input.snippet) || _report(_exceptionable, {
|
|
23986
24237
|
path: _path + ".snippet",
|
|
23987
24238
|
expected: "(__type.o19 | undefined)",
|
|
23988
24239
|
value: input.snippet
|
|
23989
|
-
})) &&
|
|
24240
|
+
})) && _vo43(input.snippet, _path + ".snippet", true && _exceptionable) || _report(_exceptionable, {
|
|
23990
24241
|
path: _path + ".snippet",
|
|
23991
24242
|
expected: "(__type.o19 | undefined)",
|
|
23992
24243
|
value: input.snippet
|
|
@@ -24006,7 +24257,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
24006
24257
|
"Please remove the property next time."
|
|
24007
24258
|
].join("\n")
|
|
24008
24259
|
});
|
|
24009
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
24260
|
+
}).every(flag => flag))].every(flag => flag); const _vo43 = (input, _path, _exceptionable = true) => [undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
24010
24261
|
path: _path + ".title",
|
|
24011
24262
|
expected: "(string | undefined)",
|
|
24012
24263
|
value: input.title
|
|
@@ -24044,9 +24295,9 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
24044
24295
|
});
|
|
24045
24296
|
}).every(flag => flag))].every(flag => flag); const _vu0 = (input, _path, _exceptionable = true) => (() => {
|
|
24046
24297
|
if (undefined !== input.path)
|
|
24047
|
-
return _vo28(input, _path, true && _exceptionable);
|
|
24048
|
-
else if (undefined !== input.__context)
|
|
24049
24298
|
return _vo29(input, _path, true && _exceptionable);
|
|
24299
|
+
else if (undefined !== input.__context)
|
|
24300
|
+
return _vo30(input, _path, true && _exceptionable);
|
|
24050
24301
|
else
|
|
24051
24302
|
return _report(_exceptionable, {
|
|
24052
24303
|
path: _path,
|
|
@@ -24056,14 +24307,14 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
24056
24307
|
})(); const _vu1 = (input, _path, _exceptionable = true) => (() => {
|
|
24057
24308
|
if (_vo0(input, _path, false && _exceptionable))
|
|
24058
24309
|
return _vo0(input, _path, true && _exceptionable);
|
|
24059
|
-
if (_vo25(input, _path, false && _exceptionable))
|
|
24060
|
-
return _vo25(input, _path, true && _exceptionable);
|
|
24061
|
-
if (_vo36(input, _path, false && _exceptionable))
|
|
24062
|
-
return _vo36(input, _path, true && _exceptionable);
|
|
24063
24310
|
if (_vo26(input, _path, false && _exceptionable))
|
|
24064
24311
|
return _vo26(input, _path, true && _exceptionable);
|
|
24065
|
-
if (
|
|
24066
|
-
return
|
|
24312
|
+
if (_vo37(input, _path, false && _exceptionable))
|
|
24313
|
+
return _vo37(input, _path, true && _exceptionable);
|
|
24314
|
+
if (_vo27(input, _path, false && _exceptionable))
|
|
24315
|
+
return _vo27(input, _path, true && _exceptionable);
|
|
24316
|
+
if (_vo41(input, _path, false && _exceptionable))
|
|
24317
|
+
return _vo41(input, _path, true && _exceptionable);
|
|
24067
24318
|
return _report(_exceptionable, {
|
|
24068
24319
|
path: _path,
|
|
24069
24320
|
expected: "(EmptyPublishRecord | FacebookPublishRecord | FilePublishRecordLegacy | FilePublishRecord | YoutubePublishRecord)",
|
|
@@ -24151,14 +24402,14 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
24151
24402
|
if (undefined === value)
|
|
24152
24403
|
return true;
|
|
24153
24404
|
return null !== value && undefined !== value && ("string" === typeof value || "object" === typeof value && null !== value && _iu0(value, true && _exceptionable));
|
|
24154
|
-
}); const _io8 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile &&
|
|
24405
|
+
}); const _io8 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io24(input.profile, true && _exceptionable)) && (2 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24155
24406
|
if (["name", "path", "collisionStrategy", "ignoreEmptyScene", "preset", "type", "scene", "profile"].some(prop => key === prop))
|
|
24156
24407
|
return true;
|
|
24157
24408
|
const value = input[key];
|
|
24158
24409
|
if (undefined === value)
|
|
24159
24410
|
return true;
|
|
24160
24411
|
return false;
|
|
24161
|
-
})); const _io9 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (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, true && _exceptionable)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io15(input.video, true && _exceptionable)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) &&
|
|
24412
|
+
})); const _io9 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (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, true && _exceptionable)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io15(input.video, true && _exceptionable)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io22(input.audio, true && _exceptionable)) && (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, true && _exceptionable)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io20(input.crop, true && _exceptionable)) && (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io16(input.filters, true && _exceptionable)) && (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24162
24413
|
if (["id", "preset", "input", "lang", "subtitle", "graphics", "subtitleTracks", "video", "audio", "start", "end", "transcribe", "crop", "filters", "orientation", "rotate", "interlaced", "alpha"].some(prop => key === prop))
|
|
24163
24414
|
return true;
|
|
24164
24415
|
const value = input[key];
|
|
@@ -24198,8 +24449,8 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
24198
24449
|
if (undefined === value)
|
|
24199
24450
|
return true;
|
|
24200
24451
|
return false;
|
|
24201
|
-
})); const _io15 = (input, _exceptionable = true) => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io16(input.filters, true && _exceptionable)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io20(input.crop, true && _exceptionable)) && (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24202
|
-
if (["filters", "crop", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
24452
|
+
})); const _io15 = (input, _exceptionable = true) => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io16(input.filters, true && _exceptionable)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io20(input.crop, true && _exceptionable)) && (undefined === input.focus || "object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) && _io21(input.focus, true && _exceptionable)) && (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24453
|
+
if (["filters", "crop", "focus", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
24203
24454
|
return true;
|
|
24204
24455
|
const value = input[key];
|
|
24205
24456
|
if (undefined === value)
|
|
@@ -24240,131 +24491,138 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
24240
24491
|
if (undefined === value)
|
|
24241
24492
|
return true;
|
|
24242
24493
|
return false;
|
|
24243
|
-
})); const _io21 = (input, _exceptionable = true) => (undefined === input.
|
|
24494
|
+
})); const _io21 = (input, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24495
|
+
if (["x", "y"].some(prop => key === prop))
|
|
24496
|
+
return true;
|
|
24497
|
+
const value = input[key];
|
|
24498
|
+
if (undefined === value)
|
|
24499
|
+
return true;
|
|
24500
|
+
return false;
|
|
24501
|
+
})); const _io22 = (input, _exceptionable = true) => (undefined === input.pan || Array.isArray(input.pan) && input.pan.every((elem, _index3) => Array.isArray(elem) && elem.every((elem, _index4) => "number" === typeof elem))) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24244
24502
|
if (["pan"].some(prop => key === prop))
|
|
24245
24503
|
return true;
|
|
24246
24504
|
const value = input[key];
|
|
24247
24505
|
if (undefined === value)
|
|
24248
24506
|
return true;
|
|
24249
24507
|
return false;
|
|
24250
|
-
})); const
|
|
24508
|
+
})); const _io23 = (input, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every((elem, _index5) => "number" === typeof elem)) && (undefined === input.diarization || "boolean" === typeof input.diarization) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24251
24509
|
if (["language", "pan", "diarization"].some(prop => key === prop))
|
|
24252
24510
|
return true;
|
|
24253
24511
|
const value = input[key];
|
|
24254
24512
|
if (undefined === value)
|
|
24255
24513
|
return true;
|
|
24256
24514
|
return false;
|
|
24257
|
-
})); const
|
|
24515
|
+
})); const _io24 = (input, _exceptionable = true) => "string" === typeof input.format && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && _io25(input.transcribe, true && _exceptionable)) && (undefined === input.translate || "object" === typeof input.translate && null !== input.translate && _io26(input.translate, true && _exceptionable)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io27(input.audio, true && _exceptionable)) && true && (undefined === input.pick || Array.isArray(input.pick) && input.pick.every((elem, _index6) => "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, true && _exceptionable))) && (1 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24258
24516
|
if (["format", "transcribe", "translate", "audio", "video", "pick", "subtitle"].some(prop => key === prop))
|
|
24259
24517
|
return true;
|
|
24260
24518
|
const value = input[key];
|
|
24261
24519
|
if (undefined === value)
|
|
24262
24520
|
return true;
|
|
24263
24521
|
return false;
|
|
24264
|
-
})); const
|
|
24522
|
+
})); const _io25 = (input, _exceptionable = true) => "string" === typeof input.engine && (1 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24265
24523
|
if (["engine"].some(prop => key === prop))
|
|
24266
24524
|
return true;
|
|
24267
24525
|
const value = input[key];
|
|
24268
24526
|
if (undefined === value)
|
|
24269
24527
|
return true;
|
|
24270
24528
|
return false;
|
|
24271
|
-
})); const
|
|
24529
|
+
})); const _io26 = (input, _exceptionable = true) => "string" === typeof input.language && (1 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24272
24530
|
if (["language"].some(prop => key === prop))
|
|
24273
24531
|
return true;
|
|
24274
24532
|
const value = input[key];
|
|
24275
24533
|
if (undefined === value)
|
|
24276
24534
|
return true;
|
|
24277
24535
|
return false;
|
|
24278
|
-
})); const
|
|
24536
|
+
})); const _io27 = (input, _exceptionable = true) => (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24279
24537
|
if (["codec", "pan", "samplerate", "split"].some(prop => key === prop))
|
|
24280
24538
|
return true;
|
|
24281
24539
|
const value = input[key];
|
|
24282
24540
|
if (undefined === value)
|
|
24283
24541
|
return true;
|
|
24284
24542
|
return false;
|
|
24285
|
-
})); const
|
|
24543
|
+
})); const _io28 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (undefined === input.ass || "object" === typeof input.ass && null !== input.ass && false === Array.isArray(input.ass) && _io30(input.ass, true && _exceptionable)) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24286
24544
|
if (["lang", "style", "ccconverter", "ass"].some(prop => key === prop))
|
|
24287
24545
|
return true;
|
|
24288
24546
|
const value = input[key];
|
|
24289
24547
|
if (undefined === value)
|
|
24290
24548
|
return true;
|
|
24291
24549
|
return false;
|
|
24292
|
-
})); const
|
|
24550
|
+
})); const _io29 = (input, _exceptionable = true) => (undefined === input.preset || "string" === typeof input.preset) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24293
24551
|
if (["preset"].some(prop => key === prop))
|
|
24294
24552
|
return true;
|
|
24295
24553
|
const value = input[key];
|
|
24296
24554
|
if (undefined === value)
|
|
24297
24555
|
return true;
|
|
24298
24556
|
return false;
|
|
24299
|
-
})); const
|
|
24557
|
+
})); const _io30 = (input, _exceptionable = true) => (undefined === input.futureWordWrapping || "boolean" === typeof input.futureWordWrapping) && (undefined === input.scaledBorderAndShadow || "boolean" === typeof input.scaledBorderAndShadow) && (undefined === input.enableUnsafeLineSpacingHack || "boolean" === typeof input.enableUnsafeLineSpacingHack) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24300
24558
|
if (["futureWordWrapping", "scaledBorderAndShadow", "enableUnsafeLineSpacingHack"].some(prop => key === prop))
|
|
24301
24559
|
return true;
|
|
24302
24560
|
const value = input[key];
|
|
24303
24561
|
if (undefined === value)
|
|
24304
24562
|
return true;
|
|
24305
24563
|
return false;
|
|
24306
|
-
})); const
|
|
24564
|
+
})); const _io31 = (input, _exceptionable = true) => "object" === typeof input.__context && null !== input.__context && _io32(input.__context, true && _exceptionable) && ("object" === typeof input.__returnValue && null !== input.__returnValue && _io8(input.__returnValue, true && _exceptionable)) && (2 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24307
24565
|
if (["__context", "__returnValue"].some(prop => key === prop))
|
|
24308
24566
|
return true;
|
|
24309
24567
|
const value = input[key];
|
|
24310
24568
|
if (undefined === value)
|
|
24311
24569
|
return true;
|
|
24312
24570
|
return false;
|
|
24313
|
-
})); const
|
|
24571
|
+
})); const _io32 = (input, _exceptionable = true) => "object" === typeof input.publish && null !== input.publish && false === Array.isArray(input.publish) && _io33(input.publish, true && _exceptionable) && "string" === typeof input.directory && "string" === typeof input.name && (3 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24314
24572
|
if (["publish", "directory", "name"].some(prop => key === prop))
|
|
24315
24573
|
return true;
|
|
24316
24574
|
const value = input[key];
|
|
24317
24575
|
if (undefined === value)
|
|
24318
24576
|
return true;
|
|
24319
24577
|
return false;
|
|
24320
|
-
})); const
|
|
24578
|
+
})); const _io33 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io34(input.draft, true && _exceptionable)) && (undefined === input.remote || "object" === typeof input.remote && null !== input.remote && false === Array.isArray(input.remote) && _io35(input.remote, true && _exceptionable)) && (undefined === input.published || "object" === typeof input.published && null !== input.published && _io38(input.published, true && _exceptionable)) && (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, true && _exceptionable)) && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io40(input.error, true && _exceptionable)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every((elem, _index7) => "object" === typeof elem && null !== elem && _io1(elem, true && _exceptionable))) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24321
24579
|
if (["type", "directory", "filename", "renders", "draft", "remote", "published", "asset", "connection", "render", "error", "messages"].some(prop => key === prop))
|
|
24322
24580
|
return true;
|
|
24323
24581
|
const value = input[key];
|
|
24324
24582
|
if (undefined === value)
|
|
24325
24583
|
return true;
|
|
24326
24584
|
return false;
|
|
24327
|
-
})); const
|
|
24585
|
+
})); const _io34 = (input, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24328
24586
|
if (["directory", "filename"].some(prop => key === prop))
|
|
24329
24587
|
return true;
|
|
24330
24588
|
const value = input[key];
|
|
24331
24589
|
if (undefined === value)
|
|
24332
24590
|
return true;
|
|
24333
24591
|
return false;
|
|
24334
|
-
})); const
|
|
24592
|
+
})); const _io35 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24335
24593
|
if (["directory", "filename", "renders"].some(prop => key === prop))
|
|
24336
24594
|
return true;
|
|
24337
24595
|
const value = input[key];
|
|
24338
24596
|
if (undefined === value)
|
|
24339
24597
|
return true;
|
|
24340
24598
|
return false;
|
|
24341
|
-
})); const
|
|
24599
|
+
})); const _io36 = (input, _exceptionable = true) => Object.keys(input).every(key => {
|
|
24342
24600
|
const value = input[key];
|
|
24343
24601
|
if (undefined === value)
|
|
24344
24602
|
return true;
|
|
24345
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
24346
|
-
}); const
|
|
24603
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io37(value, true && _exceptionable);
|
|
24604
|
+
}); const _io37 = (input, _exceptionable = true) => (undefined === input.path || "string" === typeof input.path) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every((elem, _index8) => "object" === typeof elem && null !== elem && _io1(elem, true && _exceptionable))) && true && (undefined === input.size || "number" === typeof input.size) && (undefined === input.hash || "string" === typeof input.hash) && (undefined === input.source || "string" === typeof input.source) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24347
24605
|
if (["path", "messages", "query", "size", "hash", "source"].some(prop => key === prop))
|
|
24348
24606
|
return true;
|
|
24349
24607
|
const value = input[key];
|
|
24350
24608
|
if (undefined === value)
|
|
24351
24609
|
return true;
|
|
24352
24610
|
return false;
|
|
24353
|
-
})); const
|
|
24611
|
+
})); const _io38 = (input, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory) && "string" === typeof input.filename && (1 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24354
24612
|
if (["directory", "filename"].some(prop => key === prop))
|
|
24355
24613
|
return true;
|
|
24356
24614
|
const value = input[key];
|
|
24357
24615
|
if (undefined === value)
|
|
24358
24616
|
return true;
|
|
24359
24617
|
return false;
|
|
24360
|
-
})); const
|
|
24618
|
+
})); const _io39 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io24(input.profile, true && _exceptionable)) && (1 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24361
24619
|
if (["preset", "type", "scene", "profile"].some(prop => key === prop))
|
|
24362
24620
|
return true;
|
|
24363
24621
|
const value = input[key];
|
|
24364
24622
|
if (undefined === value)
|
|
24365
24623
|
return true;
|
|
24366
24624
|
return false;
|
|
24367
|
-
})); const
|
|
24625
|
+
})); const _io40 = (input, _exceptionable = true) => "string" === typeof input.method && (1 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
24368
24626
|
if (["method"].some(prop => key === prop))
|
|
24369
24627
|
return true;
|
|
24370
24628
|
const value = input[key];
|
|
@@ -24375,7 +24633,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
24375
24633
|
if (undefined !== input.path)
|
|
24376
24634
|
return _io8(input, true && _exceptionable);
|
|
24377
24635
|
else if (undefined !== input.__context)
|
|
24378
|
-
return
|
|
24636
|
+
return _io31(input, true && _exceptionable);
|
|
24379
24637
|
else
|
|
24380
24638
|
return false;
|
|
24381
24639
|
})(); const _iu1 = (input, _exceptionable = true) => (() => {
|
|
@@ -24670,7 +24928,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
24670
24928
|
path: _path + ".profile",
|
|
24671
24929
|
expected: "(RenderProfileObject | undefined)",
|
|
24672
24930
|
value: input.profile
|
|
24673
|
-
})) &&
|
|
24931
|
+
})) && _vo24(input.profile, _path + ".profile", true && _exceptionable) || _report(_exceptionable, {
|
|
24674
24932
|
path: _path + ".profile",
|
|
24675
24933
|
expected: "(RenderProfileObject | undefined)",
|
|
24676
24934
|
value: input.profile
|
|
@@ -24738,7 +24996,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
24738
24996
|
path: _path + ".audio",
|
|
24739
24997
|
expected: "(__type.o6 | undefined)",
|
|
24740
24998
|
value: input.audio
|
|
24741
|
-
})) &&
|
|
24999
|
+
})) && _vo22(input.audio, _path + ".audio", true && _exceptionable) || _report(_exceptionable, {
|
|
24742
25000
|
path: _path + ".audio",
|
|
24743
25001
|
expected: "(__type.o6 | undefined)",
|
|
24744
25002
|
value: input.audio
|
|
@@ -24754,7 +25012,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
24754
25012
|
path: _path + ".transcribe",
|
|
24755
25013
|
expected: "(__type.o7 | undefined)",
|
|
24756
25014
|
value: input.transcribe
|
|
24757
|
-
})) &&
|
|
25015
|
+
})) && _vo23(input.transcribe, _path + ".transcribe", true && _exceptionable) || _report(_exceptionable, {
|
|
24758
25016
|
path: _path + ".transcribe",
|
|
24759
25017
|
expected: "(__type.o7 | undefined)",
|
|
24760
25018
|
value: input.transcribe
|
|
@@ -25047,6 +25305,14 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25047
25305
|
path: _path + ".crop",
|
|
25048
25306
|
expected: "(RenderSceneCrop | undefined)",
|
|
25049
25307
|
value: input.crop
|
|
25308
|
+
}), undefined === input.focus || ("object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) || _report(_exceptionable, {
|
|
25309
|
+
path: _path + ".focus",
|
|
25310
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
25311
|
+
value: input.focus
|
|
25312
|
+
})) && _vo21(input.focus, _path + ".focus", true && _exceptionable) || _report(_exceptionable, {
|
|
25313
|
+
path: _path + ".focus",
|
|
25314
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
25315
|
+
value: input.focus
|
|
25050
25316
|
}), undefined === input.orientation || "number" === typeof input.orientation || _report(_exceptionable, {
|
|
25051
25317
|
path: _path + ".orientation",
|
|
25052
25318
|
expected: "(number | undefined)",
|
|
@@ -25060,7 +25326,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25060
25326
|
expected: "(\"straight\" | boolean | null | undefined)",
|
|
25061
25327
|
value: input.alpha
|
|
25062
25328
|
}), 0 === Object.keys(input).length || (false === _exceptionable || Object.keys(input).map(key => {
|
|
25063
|
-
if (["filters", "crop", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
25329
|
+
if (["filters", "crop", "focus", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
25064
25330
|
return true;
|
|
25065
25331
|
const value = input[key];
|
|
25066
25332
|
if (undefined === value)
|
|
@@ -25259,7 +25525,31 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25259
25525
|
"Please remove the property next time."
|
|
25260
25526
|
].join("\n")
|
|
25261
25527
|
});
|
|
25262
|
-
}).every(flag => flag))].every(flag => flag); const _vo21 = (input, _path, _exceptionable = true) => [undefined === input.
|
|
25528
|
+
}).every(flag => flag))].every(flag => flag); const _vo21 = (input, _path, _exceptionable = true) => [undefined === input.x || "number" === typeof input.x || _report(_exceptionable, {
|
|
25529
|
+
path: _path + ".x",
|
|
25530
|
+
expected: "(number | undefined)",
|
|
25531
|
+
value: input.x
|
|
25532
|
+
}), undefined === input.y || "number" === typeof input.y || _report(_exceptionable, {
|
|
25533
|
+
path: _path + ".y",
|
|
25534
|
+
expected: "(number | undefined)",
|
|
25535
|
+
value: input.y
|
|
25536
|
+
}), 0 === Object.keys(input).length || (false === _exceptionable || Object.keys(input).map(key => {
|
|
25537
|
+
if (["x", "y"].some(prop => key === prop))
|
|
25538
|
+
return true;
|
|
25539
|
+
const value = input[key];
|
|
25540
|
+
if (undefined === value)
|
|
25541
|
+
return true;
|
|
25542
|
+
return _report(_exceptionable, {
|
|
25543
|
+
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
25544
|
+
expected: "undefined",
|
|
25545
|
+
value: value,
|
|
25546
|
+
description: [
|
|
25547
|
+
`The property \`${key}\` is not defined in the object type.`,
|
|
25548
|
+
"",
|
|
25549
|
+
"Please remove the property next time."
|
|
25550
|
+
].join("\n")
|
|
25551
|
+
});
|
|
25552
|
+
}).every(flag => flag))].every(flag => flag); const _vo22 = (input, _path, _exceptionable = true) => [undefined === input.pan || (Array.isArray(input.pan) || _report(_exceptionable, {
|
|
25263
25553
|
path: _path + ".pan",
|
|
25264
25554
|
expected: "(Array<Array<number>> | undefined)",
|
|
25265
25555
|
value: input.pan
|
|
@@ -25295,7 +25585,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25295
25585
|
"Please remove the property next time."
|
|
25296
25586
|
].join("\n")
|
|
25297
25587
|
});
|
|
25298
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
25588
|
+
}).every(flag => flag))].every(flag => flag); const _vo23 = (input, _path, _exceptionable = true) => [undefined === input.language || "string" === typeof input.language || _report(_exceptionable, {
|
|
25299
25589
|
path: _path + ".language",
|
|
25300
25590
|
expected: "(string | undefined)",
|
|
25301
25591
|
value: input.language
|
|
@@ -25331,7 +25621,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25331
25621
|
"Please remove the property next time."
|
|
25332
25622
|
].join("\n")
|
|
25333
25623
|
});
|
|
25334
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
25624
|
+
}).every(flag => flag))].every(flag => flag); const _vo24 = (input, _path, _exceptionable = true) => ["string" === typeof input.format || _report(_exceptionable, {
|
|
25335
25625
|
path: _path + ".format",
|
|
25336
25626
|
expected: "string",
|
|
25337
25627
|
value: input.format
|
|
@@ -25339,7 +25629,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25339
25629
|
path: _path + ".transcribe",
|
|
25340
25630
|
expected: "(__type.o8 | undefined)",
|
|
25341
25631
|
value: input.transcribe
|
|
25342
|
-
})) &&
|
|
25632
|
+
})) && _vo25(input.transcribe, _path + ".transcribe", true && _exceptionable) || _report(_exceptionable, {
|
|
25343
25633
|
path: _path + ".transcribe",
|
|
25344
25634
|
expected: "(__type.o8 | undefined)",
|
|
25345
25635
|
value: input.transcribe
|
|
@@ -25347,7 +25637,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25347
25637
|
path: _path + ".translate",
|
|
25348
25638
|
expected: "(__type.o9 | undefined)",
|
|
25349
25639
|
value: input.translate
|
|
25350
|
-
})) &&
|
|
25640
|
+
})) && _vo26(input.translate, _path + ".translate", true && _exceptionable) || _report(_exceptionable, {
|
|
25351
25641
|
path: _path + ".translate",
|
|
25352
25642
|
expected: "(__type.o9 | undefined)",
|
|
25353
25643
|
value: input.translate
|
|
@@ -25355,7 +25645,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25355
25645
|
path: _path + ".audio",
|
|
25356
25646
|
expected: "(__type.o10 | undefined)",
|
|
25357
25647
|
value: input.audio
|
|
25358
|
-
})) &&
|
|
25648
|
+
})) && _vo27(input.audio, _path + ".audio", true && _exceptionable) || _report(_exceptionable, {
|
|
25359
25649
|
path: _path + ".audio",
|
|
25360
25650
|
expected: "(__type.o10 | undefined)",
|
|
25361
25651
|
value: input.audio
|
|
@@ -25379,7 +25669,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25379
25669
|
path: _path + ".subtitle",
|
|
25380
25670
|
expected: "(SubtitleProfile | string | undefined)",
|
|
25381
25671
|
value: input.subtitle
|
|
25382
|
-
})) &&
|
|
25672
|
+
})) && _vo28(input.subtitle, _path + ".subtitle", true && _exceptionable) || _report(_exceptionable, {
|
|
25383
25673
|
path: _path + ".subtitle",
|
|
25384
25674
|
expected: "(SubtitleProfile | string | undefined)",
|
|
25385
25675
|
value: input.subtitle
|
|
@@ -25399,7 +25689,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25399
25689
|
"Please remove the property next time."
|
|
25400
25690
|
].join("\n")
|
|
25401
25691
|
});
|
|
25402
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
25692
|
+
}).every(flag => flag))].every(flag => flag); const _vo25 = (input, _path, _exceptionable = true) => ["string" === typeof input.engine || _report(_exceptionable, {
|
|
25403
25693
|
path: _path + ".engine",
|
|
25404
25694
|
expected: "string",
|
|
25405
25695
|
value: input.engine
|
|
@@ -25419,7 +25709,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25419
25709
|
"Please remove the property next time."
|
|
25420
25710
|
].join("\n")
|
|
25421
25711
|
});
|
|
25422
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
25712
|
+
}).every(flag => flag))].every(flag => flag); const _vo26 = (input, _path, _exceptionable = true) => ["string" === typeof input.language || _report(_exceptionable, {
|
|
25423
25713
|
path: _path + ".language",
|
|
25424
25714
|
expected: "string",
|
|
25425
25715
|
value: input.language
|
|
@@ -25439,7 +25729,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25439
25729
|
"Please remove the property next time."
|
|
25440
25730
|
].join("\n")
|
|
25441
25731
|
});
|
|
25442
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
25732
|
+
}).every(flag => flag))].every(flag => flag); const _vo27 = (input, _path, _exceptionable = true) => [undefined === input.codec || "string" === typeof input.codec || _report(_exceptionable, {
|
|
25443
25733
|
path: _path + ".codec",
|
|
25444
25734
|
expected: "(string | undefined)",
|
|
25445
25735
|
value: input.codec
|
|
@@ -25471,7 +25761,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25471
25761
|
"Please remove the property next time."
|
|
25472
25762
|
].join("\n")
|
|
25473
25763
|
});
|
|
25474
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
25764
|
+
}).every(flag => flag))].every(flag => flag); const _vo28 = (input, _path, _exceptionable = true) => [undefined === input.lang || "string" === typeof input.lang || _report(_exceptionable, {
|
|
25475
25765
|
path: _path + ".lang",
|
|
25476
25766
|
expected: "(string | undefined)",
|
|
25477
25767
|
value: input.lang
|
|
@@ -25483,7 +25773,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25483
25773
|
path: _path + ".ccconverter",
|
|
25484
25774
|
expected: "(__type.o11 | undefined)",
|
|
25485
25775
|
value: input.ccconverter
|
|
25486
|
-
})) &&
|
|
25776
|
+
})) && _vo29(input.ccconverter, _path + ".ccconverter", true && _exceptionable) || _report(_exceptionable, {
|
|
25487
25777
|
path: _path + ".ccconverter",
|
|
25488
25778
|
expected: "(__type.o11 | undefined)",
|
|
25489
25779
|
value: input.ccconverter
|
|
@@ -25491,7 +25781,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25491
25781
|
path: _path + ".ass",
|
|
25492
25782
|
expected: "(__type.o12 | undefined)",
|
|
25493
25783
|
value: input.ass
|
|
25494
|
-
})) &&
|
|
25784
|
+
})) && _vo30(input.ass, _path + ".ass", true && _exceptionable) || _report(_exceptionable, {
|
|
25495
25785
|
path: _path + ".ass",
|
|
25496
25786
|
expected: "(__type.o12 | undefined)",
|
|
25497
25787
|
value: input.ass
|
|
@@ -25511,7 +25801,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25511
25801
|
"Please remove the property next time."
|
|
25512
25802
|
].join("\n")
|
|
25513
25803
|
});
|
|
25514
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
25804
|
+
}).every(flag => flag))].every(flag => flag); const _vo29 = (input, _path, _exceptionable = true) => [undefined === input.preset || "string" === typeof input.preset || _report(_exceptionable, {
|
|
25515
25805
|
path: _path + ".preset",
|
|
25516
25806
|
expected: "(string | undefined)",
|
|
25517
25807
|
value: input.preset
|
|
@@ -25531,7 +25821,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25531
25821
|
"Please remove the property next time."
|
|
25532
25822
|
].join("\n")
|
|
25533
25823
|
});
|
|
25534
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
25824
|
+
}).every(flag => flag))].every(flag => flag); const _vo30 = (input, _path, _exceptionable = true) => [undefined === input.futureWordWrapping || "boolean" === typeof input.futureWordWrapping || _report(_exceptionable, {
|
|
25535
25825
|
path: _path + ".futureWordWrapping",
|
|
25536
25826
|
expected: "(boolean | undefined)",
|
|
25537
25827
|
value: input.futureWordWrapping
|
|
@@ -25559,11 +25849,11 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25559
25849
|
"Please remove the property next time."
|
|
25560
25850
|
].join("\n")
|
|
25561
25851
|
});
|
|
25562
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
25852
|
+
}).every(flag => flag))].every(flag => flag); const _vo31 = (input, _path, _exceptionable = true) => [("object" === typeof input.__context && null !== input.__context || _report(_exceptionable, {
|
|
25563
25853
|
path: _path + ".__context",
|
|
25564
25854
|
expected: "__type.o14",
|
|
25565
25855
|
value: input.__context
|
|
25566
|
-
})) &&
|
|
25856
|
+
})) && _vo32(input.__context, _path + ".__context", true && _exceptionable) || _report(_exceptionable, {
|
|
25567
25857
|
path: _path + ".__context",
|
|
25568
25858
|
expected: "__type.o14",
|
|
25569
25859
|
value: input.__context
|
|
@@ -25591,11 +25881,11 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25591
25881
|
"Please remove the property next time."
|
|
25592
25882
|
].join("\n")
|
|
25593
25883
|
});
|
|
25594
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
25884
|
+
}).every(flag => flag))].every(flag => flag); const _vo32 = (input, _path, _exceptionable = true) => [("object" === typeof input.publish && null !== input.publish && false === Array.isArray(input.publish) || _report(_exceptionable, {
|
|
25595
25885
|
path: _path + ".publish",
|
|
25596
25886
|
expected: "FilePublishRecord",
|
|
25597
25887
|
value: input.publish
|
|
25598
|
-
})) &&
|
|
25888
|
+
})) && _vo33(input.publish, _path + ".publish", true && _exceptionable) || _report(_exceptionable, {
|
|
25599
25889
|
path: _path + ".publish",
|
|
25600
25890
|
expected: "FilePublishRecord",
|
|
25601
25891
|
value: input.publish
|
|
@@ -25623,7 +25913,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25623
25913
|
"Please remove the property next time."
|
|
25624
25914
|
].join("\n")
|
|
25625
25915
|
});
|
|
25626
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
25916
|
+
}).every(flag => flag))].every(flag => flag); const _vo33 = (input, _path, _exceptionable = true) => [undefined === input.type || "file" === input.type || _report(_exceptionable, {
|
|
25627
25917
|
path: _path + ".type",
|
|
25628
25918
|
expected: "(\"file\" | undefined)",
|
|
25629
25919
|
value: input.type
|
|
@@ -25647,7 +25937,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25647
25937
|
path: _path + ".draft",
|
|
25648
25938
|
expected: "(FilePublishDraft | undefined)",
|
|
25649
25939
|
value: input.draft
|
|
25650
|
-
})) &&
|
|
25940
|
+
})) && _vo34(input.draft, _path + ".draft", true && _exceptionable) || _report(_exceptionable, {
|
|
25651
25941
|
path: _path + ".draft",
|
|
25652
25942
|
expected: "(FilePublishDraft | undefined)",
|
|
25653
25943
|
value: input.draft
|
|
@@ -25655,7 +25945,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25655
25945
|
path: _path + ".remote",
|
|
25656
25946
|
expected: "(FilePublishRemote | undefined)",
|
|
25657
25947
|
value: input.remote
|
|
25658
|
-
})) &&
|
|
25948
|
+
})) && _vo35(input.remote, _path + ".remote", true && _exceptionable) || _report(_exceptionable, {
|
|
25659
25949
|
path: _path + ".remote",
|
|
25660
25950
|
expected: "(FilePublishRemote | undefined)",
|
|
25661
25951
|
value: input.remote
|
|
@@ -25663,7 +25953,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25663
25953
|
path: _path + ".published",
|
|
25664
25954
|
expected: "(FilePublishPublished | undefined)",
|
|
25665
25955
|
value: input.published
|
|
25666
|
-
})) &&
|
|
25956
|
+
})) && _vo38(input.published, _path + ".published", true && _exceptionable) || _report(_exceptionable, {
|
|
25667
25957
|
path: _path + ".published",
|
|
25668
25958
|
expected: "(FilePublishPublished | undefined)",
|
|
25669
25959
|
value: input.published
|
|
@@ -25679,7 +25969,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25679
25969
|
path: _path + ".render",
|
|
25680
25970
|
expected: "(PublishRenderBase | undefined)",
|
|
25681
25971
|
value: input.render
|
|
25682
|
-
})) &&
|
|
25972
|
+
})) && _vo39(input.render, _path + ".render", true && _exceptionable) || _report(_exceptionable, {
|
|
25683
25973
|
path: _path + ".render",
|
|
25684
25974
|
expected: "(PublishRenderBase | undefined)",
|
|
25685
25975
|
value: input.render
|
|
@@ -25687,7 +25977,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25687
25977
|
path: _path + ".error",
|
|
25688
25978
|
expected: "(__type.o15 | null | undefined)",
|
|
25689
25979
|
value: input.error
|
|
25690
|
-
})) &&
|
|
25980
|
+
})) && _vo40(input.error, _path + ".error", true && _exceptionable) || _report(_exceptionable, {
|
|
25691
25981
|
path: _path + ".error",
|
|
25692
25982
|
expected: "(__type.o15 | null | undefined)",
|
|
25693
25983
|
value: input.error
|
|
@@ -25723,7 +26013,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25723
26013
|
"Please remove the property next time."
|
|
25724
26014
|
].join("\n")
|
|
25725
26015
|
});
|
|
25726
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
26016
|
+
}).every(flag => flag))].every(flag => flag); const _vo34 = (input, _path, _exceptionable = true) => [undefined === input.directory || "string" === typeof input.directory || _report(_exceptionable, {
|
|
25727
26017
|
path: _path + ".directory",
|
|
25728
26018
|
expected: "(string | undefined)",
|
|
25729
26019
|
value: input.directory
|
|
@@ -25747,7 +26037,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25747
26037
|
"Please remove the property next time."
|
|
25748
26038
|
].join("\n")
|
|
25749
26039
|
});
|
|
25750
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
26040
|
+
}).every(flag => flag))].every(flag => flag); const _vo35 = (input, _path, _exceptionable = true) => [undefined === input.directory || "string" === typeof input.directory || _report(_exceptionable, {
|
|
25751
26041
|
path: _path + ".directory",
|
|
25752
26042
|
expected: "(string | undefined)",
|
|
25753
26043
|
value: input.directory
|
|
@@ -25759,7 +26049,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25759
26049
|
path: _path + ".renders",
|
|
25760
26050
|
expected: "(Record<string, FilePublishRemoteRender> | undefined)",
|
|
25761
26051
|
value: input.renders
|
|
25762
|
-
})) &&
|
|
26052
|
+
})) && _vo36(input.renders, _path + ".renders", true && _exceptionable) || _report(_exceptionable, {
|
|
25763
26053
|
path: _path + ".renders",
|
|
25764
26054
|
expected: "(Record<string, FilePublishRemoteRender> | undefined)",
|
|
25765
26055
|
value: input.renders
|
|
@@ -25779,7 +26069,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25779
26069
|
"Please remove the property next time."
|
|
25780
26070
|
].join("\n")
|
|
25781
26071
|
});
|
|
25782
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
26072
|
+
}).every(flag => flag))].every(flag => flag); const _vo36 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
25783
26073
|
const value = input[key];
|
|
25784
26074
|
if (undefined === value)
|
|
25785
26075
|
return true;
|
|
@@ -25787,12 +26077,12 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25787
26077
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
25788
26078
|
expected: "FilePublishRemoteRender",
|
|
25789
26079
|
value: value
|
|
25790
|
-
})) &&
|
|
26080
|
+
})) && _vo37(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || _report(_exceptionable, {
|
|
25791
26081
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
25792
26082
|
expected: "FilePublishRemoteRender",
|
|
25793
26083
|
value: value
|
|
25794
26084
|
});
|
|
25795
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
26085
|
+
}).every(flag => flag)].every(flag => flag); const _vo37 = (input, _path, _exceptionable = true) => [undefined === input.path || "string" === typeof input.path || _report(_exceptionable, {
|
|
25796
26086
|
path: _path + ".path",
|
|
25797
26087
|
expected: "(string | undefined)",
|
|
25798
26088
|
value: input.path
|
|
@@ -25840,7 +26130,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25840
26130
|
"Please remove the property next time."
|
|
25841
26131
|
].join("\n")
|
|
25842
26132
|
});
|
|
25843
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
26133
|
+
}).every(flag => flag))].every(flag => flag); const _vo38 = (input, _path, _exceptionable = true) => [undefined === input.directory || "string" === typeof input.directory || _report(_exceptionable, {
|
|
25844
26134
|
path: _path + ".directory",
|
|
25845
26135
|
expected: "(string | undefined)",
|
|
25846
26136
|
value: input.directory
|
|
@@ -25864,7 +26154,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25864
26154
|
"Please remove the property next time."
|
|
25865
26155
|
].join("\n")
|
|
25866
26156
|
});
|
|
25867
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
26157
|
+
}).every(flag => flag))].every(flag => flag); const _vo39 = (input, _path, _exceptionable = true) => [undefined === input.preset || "string" === typeof input.preset || _report(_exceptionable, {
|
|
25868
26158
|
path: _path + ".preset",
|
|
25869
26159
|
expected: "(string | undefined)",
|
|
25870
26160
|
value: input.preset
|
|
@@ -25884,7 +26174,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25884
26174
|
path: _path + ".profile",
|
|
25885
26175
|
expected: "(RenderProfileObject | undefined)",
|
|
25886
26176
|
value: input.profile
|
|
25887
|
-
})) &&
|
|
26177
|
+
})) && _vo24(input.profile, _path + ".profile", true && _exceptionable) || _report(_exceptionable, {
|
|
25888
26178
|
path: _path + ".profile",
|
|
25889
26179
|
expected: "(RenderProfileObject | undefined)",
|
|
25890
26180
|
value: input.profile
|
|
@@ -25904,7 +26194,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25904
26194
|
"Please remove the property next time."
|
|
25905
26195
|
].join("\n")
|
|
25906
26196
|
});
|
|
25907
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
26197
|
+
}).every(flag => flag))].every(flag => flag); const _vo40 = (input, _path, _exceptionable = true) => ["string" === typeof input.method || _report(_exceptionable, {
|
|
25908
26198
|
path: _path + ".method",
|
|
25909
26199
|
expected: "string",
|
|
25910
26200
|
value: input.method
|
|
@@ -25928,7 +26218,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
25928
26218
|
if (undefined !== input.path)
|
|
25929
26219
|
return _vo8(input, _path, true && _exceptionable);
|
|
25930
26220
|
else if (undefined !== input.__context)
|
|
25931
|
-
return
|
|
26221
|
+
return _vo31(input, _path, true && _exceptionable);
|
|
25932
26222
|
else
|
|
25933
26223
|
return _report(_exceptionable, {
|
|
25934
26224
|
path: _path,
|
|
@@ -27154,14 +27444,14 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
27154
27444
|
if (undefined === value)
|
|
27155
27445
|
return true;
|
|
27156
27446
|
return false;
|
|
27157
|
-
})); const _io1 = (input, _exceptionable = true) => "object" === typeof input.scene && null !== input.scene && false === Array.isArray(input.scene) && _io2(input.scene, true && _exceptionable) && ("object" === typeof input.profile && null !== input.profile &&
|
|
27447
|
+
})); const _io1 = (input, _exceptionable = true) => "object" === typeof input.scene && null !== input.scene && false === Array.isArray(input.scene) && _io2(input.scene, true && _exceptionable) && ("object" === typeof input.profile && null !== input.profile && _io17(input.profile, true && _exceptionable)) && (2 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
27158
27448
|
if (["scene", "profile"].some(prop => key === prop))
|
|
27159
27449
|
return true;
|
|
27160
27450
|
const value = input[key];
|
|
27161
27451
|
if (undefined === value)
|
|
27162
27452
|
return true;
|
|
27163
27453
|
return false;
|
|
27164
|
-
})); const _io2 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (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, true && _exceptionable)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io8(input.video, true && _exceptionable)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) &&
|
|
27454
|
+
})); const _io2 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (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, true && _exceptionable)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io8(input.video, true && _exceptionable)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io15(input.audio, true && _exceptionable)) && (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, true && _exceptionable)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io13(input.crop, true && _exceptionable)) && (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io9(input.filters, true && _exceptionable)) && (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
27165
27455
|
if (["id", "preset", "input", "lang", "subtitle", "graphics", "subtitleTracks", "video", "audio", "start", "end", "transcribe", "crop", "filters", "orientation", "rotate", "interlaced", "alpha"].some(prop => key === prop))
|
|
27166
27456
|
return true;
|
|
27167
27457
|
const value = input[key];
|
|
@@ -27201,8 +27491,8 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
27201
27491
|
if (undefined === value)
|
|
27202
27492
|
return true;
|
|
27203
27493
|
return false;
|
|
27204
|
-
})); const _io8 = (input, _exceptionable = true) => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io9(input.filters, true && _exceptionable)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io13(input.crop, true && _exceptionable)) && (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
27205
|
-
if (["filters", "crop", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
27494
|
+
})); const _io8 = (input, _exceptionable = true) => (undefined === input.filters || "object" === typeof input.filters && null !== input.filters && false === Array.isArray(input.filters) && _io9(input.filters, true && _exceptionable)) && (undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io13(input.crop, true && _exceptionable)) && (undefined === input.focus || "object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) && _io14(input.focus, true && _exceptionable)) && (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
27495
|
+
if (["filters", "crop", "focus", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
27206
27496
|
return true;
|
|
27207
27497
|
const value = input[key];
|
|
27208
27498
|
if (undefined === value)
|
|
@@ -27243,63 +27533,70 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
27243
27533
|
if (undefined === value)
|
|
27244
27534
|
return true;
|
|
27245
27535
|
return false;
|
|
27246
|
-
})); const _io14 = (input, _exceptionable = true) => (undefined === input.
|
|
27536
|
+
})); const _io14 = (input, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
27537
|
+
if (["x", "y"].some(prop => key === prop))
|
|
27538
|
+
return true;
|
|
27539
|
+
const value = input[key];
|
|
27540
|
+
if (undefined === value)
|
|
27541
|
+
return true;
|
|
27542
|
+
return false;
|
|
27543
|
+
})); const _io15 = (input, _exceptionable = true) => (undefined === input.pan || Array.isArray(input.pan) && input.pan.every((elem, _index1) => Array.isArray(elem) && elem.every((elem, _index2) => "number" === typeof elem))) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
27247
27544
|
if (["pan"].some(prop => key === prop))
|
|
27248
27545
|
return true;
|
|
27249
27546
|
const value = input[key];
|
|
27250
27547
|
if (undefined === value)
|
|
27251
27548
|
return true;
|
|
27252
27549
|
return false;
|
|
27253
|
-
})); const
|
|
27550
|
+
})); const _io16 = (input, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every((elem, _index3) => "number" === typeof elem)) && (undefined === input.diarization || "boolean" === typeof input.diarization) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
27254
27551
|
if (["language", "pan", "diarization"].some(prop => key === prop))
|
|
27255
27552
|
return true;
|
|
27256
27553
|
const value = input[key];
|
|
27257
27554
|
if (undefined === value)
|
|
27258
27555
|
return true;
|
|
27259
27556
|
return false;
|
|
27260
|
-
})); const
|
|
27557
|
+
})); const _io17 = (input, _exceptionable = true) => "string" === typeof input.format && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && _io18(input.transcribe, true && _exceptionable)) && (undefined === input.translate || "object" === typeof input.translate && null !== input.translate && _io19(input.translate, true && _exceptionable)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io20(input.audio, true && _exceptionable)) && true && (undefined === input.pick || Array.isArray(input.pick) && input.pick.every((elem, _index4) => "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, true && _exceptionable))) && (1 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
27261
27558
|
if (["format", "transcribe", "translate", "audio", "video", "pick", "subtitle"].some(prop => key === prop))
|
|
27262
27559
|
return true;
|
|
27263
27560
|
const value = input[key];
|
|
27264
27561
|
if (undefined === value)
|
|
27265
27562
|
return true;
|
|
27266
27563
|
return false;
|
|
27267
|
-
})); const
|
|
27564
|
+
})); const _io18 = (input, _exceptionable = true) => "string" === typeof input.engine && (1 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
27268
27565
|
if (["engine"].some(prop => key === prop))
|
|
27269
27566
|
return true;
|
|
27270
27567
|
const value = input[key];
|
|
27271
27568
|
if (undefined === value)
|
|
27272
27569
|
return true;
|
|
27273
27570
|
return false;
|
|
27274
|
-
})); const
|
|
27571
|
+
})); const _io19 = (input, _exceptionable = true) => "string" === typeof input.language && (1 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
27275
27572
|
if (["language"].some(prop => key === prop))
|
|
27276
27573
|
return true;
|
|
27277
27574
|
const value = input[key];
|
|
27278
27575
|
if (undefined === value)
|
|
27279
27576
|
return true;
|
|
27280
27577
|
return false;
|
|
27281
|
-
})); const
|
|
27578
|
+
})); const _io20 = (input, _exceptionable = true) => (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) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
27282
27579
|
if (["codec", "pan", "samplerate", "split"].some(prop => key === prop))
|
|
27283
27580
|
return true;
|
|
27284
27581
|
const value = input[key];
|
|
27285
27582
|
if (undefined === value)
|
|
27286
27583
|
return true;
|
|
27287
27584
|
return false;
|
|
27288
|
-
})); const
|
|
27585
|
+
})); const _io21 = (input, _exceptionable = true) => (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, true && _exceptionable)) && (undefined === input.ass || "object" === typeof input.ass && null !== input.ass && false === Array.isArray(input.ass) && _io23(input.ass, true && _exceptionable)) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
27289
27586
|
if (["lang", "style", "ccconverter", "ass"].some(prop => key === prop))
|
|
27290
27587
|
return true;
|
|
27291
27588
|
const value = input[key];
|
|
27292
27589
|
if (undefined === value)
|
|
27293
27590
|
return true;
|
|
27294
27591
|
return false;
|
|
27295
|
-
})); const
|
|
27592
|
+
})); const _io22 = (input, _exceptionable = true) => (undefined === input.preset || "string" === typeof input.preset) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
27296
27593
|
if (["preset"].some(prop => key === prop))
|
|
27297
27594
|
return true;
|
|
27298
27595
|
const value = input[key];
|
|
27299
27596
|
if (undefined === value)
|
|
27300
27597
|
return true;
|
|
27301
27598
|
return false;
|
|
27302
|
-
})); const
|
|
27599
|
+
})); const _io23 = (input, _exceptionable = true) => (undefined === input.futureWordWrapping || "boolean" === typeof input.futureWordWrapping) && (undefined === input.scaledBorderAndShadow || "boolean" === typeof input.scaledBorderAndShadow) && (undefined === input.enableUnsafeLineSpacingHack || "boolean" === typeof input.enableUnsafeLineSpacingHack) && (0 === Object.keys(input).length || Object.keys(input).every(key => {
|
|
27303
27600
|
if (["futureWordWrapping", "scaledBorderAndShadow", "enableUnsafeLineSpacingHack"].some(prop => key === prop))
|
|
27304
27601
|
return true;
|
|
27305
27602
|
const value = input[key];
|
|
@@ -27354,7 +27651,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
27354
27651
|
path: _path + ".profile",
|
|
27355
27652
|
expected: "RenderProfileObject",
|
|
27356
27653
|
value: input.profile
|
|
27357
|
-
})) &&
|
|
27654
|
+
})) && _vo17(input.profile, _path + ".profile", true && _exceptionable) || _report(_exceptionable, {
|
|
27358
27655
|
path: _path + ".profile",
|
|
27359
27656
|
expected: "RenderProfileObject",
|
|
27360
27657
|
value: input.profile
|
|
@@ -27422,7 +27719,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
27422
27719
|
path: _path + ".audio",
|
|
27423
27720
|
expected: "(__type.o7 | undefined)",
|
|
27424
27721
|
value: input.audio
|
|
27425
|
-
})) &&
|
|
27722
|
+
})) && _vo15(input.audio, _path + ".audio", true && _exceptionable) || _report(_exceptionable, {
|
|
27426
27723
|
path: _path + ".audio",
|
|
27427
27724
|
expected: "(__type.o7 | undefined)",
|
|
27428
27725
|
value: input.audio
|
|
@@ -27438,7 +27735,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
27438
27735
|
path: _path + ".transcribe",
|
|
27439
27736
|
expected: "(__type.o8 | undefined)",
|
|
27440
27737
|
value: input.transcribe
|
|
27441
|
-
})) &&
|
|
27738
|
+
})) && _vo16(input.transcribe, _path + ".transcribe", true && _exceptionable) || _report(_exceptionable, {
|
|
27442
27739
|
path: _path + ".transcribe",
|
|
27443
27740
|
expected: "(__type.o8 | undefined)",
|
|
27444
27741
|
value: input.transcribe
|
|
@@ -27731,6 +28028,14 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
27731
28028
|
path: _path + ".crop",
|
|
27732
28029
|
expected: "(RenderSceneCrop | undefined)",
|
|
27733
28030
|
value: input.crop
|
|
28031
|
+
}), undefined === input.focus || ("object" === typeof input.focus && null !== input.focus && false === Array.isArray(input.focus) || _report(_exceptionable, {
|
|
28032
|
+
path: _path + ".focus",
|
|
28033
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
28034
|
+
value: input.focus
|
|
28035
|
+
})) && _vo14(input.focus, _path + ".focus", true && _exceptionable) || _report(_exceptionable, {
|
|
28036
|
+
path: _path + ".focus",
|
|
28037
|
+
expected: "(RenderSceneFocus | undefined)",
|
|
28038
|
+
value: input.focus
|
|
27734
28039
|
}), undefined === input.orientation || "number" === typeof input.orientation || _report(_exceptionable, {
|
|
27735
28040
|
path: _path + ".orientation",
|
|
27736
28041
|
expected: "(number | undefined)",
|
|
@@ -27744,7 +28049,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
27744
28049
|
expected: "(\"straight\" | boolean | null | undefined)",
|
|
27745
28050
|
value: input.alpha
|
|
27746
28051
|
}), 0 === Object.keys(input).length || (false === _exceptionable || Object.keys(input).map(key => {
|
|
27747
|
-
if (["filters", "crop", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
28052
|
+
if (["filters", "crop", "focus", "orientation", "interlaced", "alpha"].some(prop => key === prop))
|
|
27748
28053
|
return true;
|
|
27749
28054
|
const value = input[key];
|
|
27750
28055
|
if (undefined === value)
|
|
@@ -27943,7 +28248,31 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
27943
28248
|
"Please remove the property next time."
|
|
27944
28249
|
].join("\n")
|
|
27945
28250
|
});
|
|
27946
|
-
}).every(flag => flag))].every(flag => flag); const _vo14 = (input, _path, _exceptionable = true) => [undefined === input.
|
|
28251
|
+
}).every(flag => flag))].every(flag => flag); const _vo14 = (input, _path, _exceptionable = true) => [undefined === input.x || "number" === typeof input.x || _report(_exceptionable, {
|
|
28252
|
+
path: _path + ".x",
|
|
28253
|
+
expected: "(number | undefined)",
|
|
28254
|
+
value: input.x
|
|
28255
|
+
}), undefined === input.y || "number" === typeof input.y || _report(_exceptionable, {
|
|
28256
|
+
path: _path + ".y",
|
|
28257
|
+
expected: "(number | undefined)",
|
|
28258
|
+
value: input.y
|
|
28259
|
+
}), 0 === Object.keys(input).length || (false === _exceptionable || Object.keys(input).map(key => {
|
|
28260
|
+
if (["x", "y"].some(prop => key === prop))
|
|
28261
|
+
return true;
|
|
28262
|
+
const value = input[key];
|
|
28263
|
+
if (undefined === value)
|
|
28264
|
+
return true;
|
|
28265
|
+
return _report(_exceptionable, {
|
|
28266
|
+
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
28267
|
+
expected: "undefined",
|
|
28268
|
+
value: value,
|
|
28269
|
+
description: [
|
|
28270
|
+
`The property \`${key}\` is not defined in the object type.`,
|
|
28271
|
+
"",
|
|
28272
|
+
"Please remove the property next time."
|
|
28273
|
+
].join("\n")
|
|
28274
|
+
});
|
|
28275
|
+
}).every(flag => flag))].every(flag => flag); const _vo15 = (input, _path, _exceptionable = true) => [undefined === input.pan || (Array.isArray(input.pan) || _report(_exceptionable, {
|
|
27947
28276
|
path: _path + ".pan",
|
|
27948
28277
|
expected: "(Array<Array<number>> | undefined)",
|
|
27949
28278
|
value: input.pan
|
|
@@ -27979,7 +28308,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
27979
28308
|
"Please remove the property next time."
|
|
27980
28309
|
].join("\n")
|
|
27981
28310
|
});
|
|
27982
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
28311
|
+
}).every(flag => flag))].every(flag => flag); const _vo16 = (input, _path, _exceptionable = true) => [undefined === input.language || "string" === typeof input.language || _report(_exceptionable, {
|
|
27983
28312
|
path: _path + ".language",
|
|
27984
28313
|
expected: "(string | undefined)",
|
|
27985
28314
|
value: input.language
|
|
@@ -28015,7 +28344,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
28015
28344
|
"Please remove the property next time."
|
|
28016
28345
|
].join("\n")
|
|
28017
28346
|
});
|
|
28018
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
28347
|
+
}).every(flag => flag))].every(flag => flag); const _vo17 = (input, _path, _exceptionable = true) => ["string" === typeof input.format || _report(_exceptionable, {
|
|
28019
28348
|
path: _path + ".format",
|
|
28020
28349
|
expected: "string",
|
|
28021
28350
|
value: input.format
|
|
@@ -28023,7 +28352,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
28023
28352
|
path: _path + ".transcribe",
|
|
28024
28353
|
expected: "(__type.o9 | undefined)",
|
|
28025
28354
|
value: input.transcribe
|
|
28026
|
-
})) &&
|
|
28355
|
+
})) && _vo18(input.transcribe, _path + ".transcribe", true && _exceptionable) || _report(_exceptionable, {
|
|
28027
28356
|
path: _path + ".transcribe",
|
|
28028
28357
|
expected: "(__type.o9 | undefined)",
|
|
28029
28358
|
value: input.transcribe
|
|
@@ -28031,7 +28360,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
28031
28360
|
path: _path + ".translate",
|
|
28032
28361
|
expected: "(__type.o10 | undefined)",
|
|
28033
28362
|
value: input.translate
|
|
28034
|
-
})) &&
|
|
28363
|
+
})) && _vo19(input.translate, _path + ".translate", true && _exceptionable) || _report(_exceptionable, {
|
|
28035
28364
|
path: _path + ".translate",
|
|
28036
28365
|
expected: "(__type.o10 | undefined)",
|
|
28037
28366
|
value: input.translate
|
|
@@ -28039,7 +28368,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
28039
28368
|
path: _path + ".audio",
|
|
28040
28369
|
expected: "(__type.o11 | undefined)",
|
|
28041
28370
|
value: input.audio
|
|
28042
|
-
})) &&
|
|
28371
|
+
})) && _vo20(input.audio, _path + ".audio", true && _exceptionable) || _report(_exceptionable, {
|
|
28043
28372
|
path: _path + ".audio",
|
|
28044
28373
|
expected: "(__type.o11 | undefined)",
|
|
28045
28374
|
value: input.audio
|
|
@@ -28063,7 +28392,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
28063
28392
|
path: _path + ".subtitle",
|
|
28064
28393
|
expected: "(SubtitleProfile | string | undefined)",
|
|
28065
28394
|
value: input.subtitle
|
|
28066
|
-
})) &&
|
|
28395
|
+
})) && _vo21(input.subtitle, _path + ".subtitle", true && _exceptionable) || _report(_exceptionable, {
|
|
28067
28396
|
path: _path + ".subtitle",
|
|
28068
28397
|
expected: "(SubtitleProfile | string | undefined)",
|
|
28069
28398
|
value: input.subtitle
|
|
@@ -28083,7 +28412,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
28083
28412
|
"Please remove the property next time."
|
|
28084
28413
|
].join("\n")
|
|
28085
28414
|
});
|
|
28086
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
28415
|
+
}).every(flag => flag))].every(flag => flag); const _vo18 = (input, _path, _exceptionable = true) => ["string" === typeof input.engine || _report(_exceptionable, {
|
|
28087
28416
|
path: _path + ".engine",
|
|
28088
28417
|
expected: "string",
|
|
28089
28418
|
value: input.engine
|
|
@@ -28103,7 +28432,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
28103
28432
|
"Please remove the property next time."
|
|
28104
28433
|
].join("\n")
|
|
28105
28434
|
});
|
|
28106
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
28435
|
+
}).every(flag => flag))].every(flag => flag); const _vo19 = (input, _path, _exceptionable = true) => ["string" === typeof input.language || _report(_exceptionable, {
|
|
28107
28436
|
path: _path + ".language",
|
|
28108
28437
|
expected: "string",
|
|
28109
28438
|
value: input.language
|
|
@@ -28123,7 +28452,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
28123
28452
|
"Please remove the property next time."
|
|
28124
28453
|
].join("\n")
|
|
28125
28454
|
});
|
|
28126
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
28455
|
+
}).every(flag => flag))].every(flag => flag); const _vo20 = (input, _path, _exceptionable = true) => [undefined === input.codec || "string" === typeof input.codec || _report(_exceptionable, {
|
|
28127
28456
|
path: _path + ".codec",
|
|
28128
28457
|
expected: "(string | undefined)",
|
|
28129
28458
|
value: input.codec
|
|
@@ -28155,7 +28484,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
28155
28484
|
"Please remove the property next time."
|
|
28156
28485
|
].join("\n")
|
|
28157
28486
|
});
|
|
28158
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
28487
|
+
}).every(flag => flag))].every(flag => flag); const _vo21 = (input, _path, _exceptionable = true) => [undefined === input.lang || "string" === typeof input.lang || _report(_exceptionable, {
|
|
28159
28488
|
path: _path + ".lang",
|
|
28160
28489
|
expected: "(string | undefined)",
|
|
28161
28490
|
value: input.lang
|
|
@@ -28167,7 +28496,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
28167
28496
|
path: _path + ".ccconverter",
|
|
28168
28497
|
expected: "(__type.o12 | undefined)",
|
|
28169
28498
|
value: input.ccconverter
|
|
28170
|
-
})) &&
|
|
28499
|
+
})) && _vo22(input.ccconverter, _path + ".ccconverter", true && _exceptionable) || _report(_exceptionable, {
|
|
28171
28500
|
path: _path + ".ccconverter",
|
|
28172
28501
|
expected: "(__type.o12 | undefined)",
|
|
28173
28502
|
value: input.ccconverter
|
|
@@ -28175,7 +28504,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
28175
28504
|
path: _path + ".ass",
|
|
28176
28505
|
expected: "(__type.o13 | undefined)",
|
|
28177
28506
|
value: input.ass
|
|
28178
|
-
})) &&
|
|
28507
|
+
})) && _vo23(input.ass, _path + ".ass", true && _exceptionable) || _report(_exceptionable, {
|
|
28179
28508
|
path: _path + ".ass",
|
|
28180
28509
|
expected: "(__type.o13 | undefined)",
|
|
28181
28510
|
value: input.ass
|
|
@@ -28195,7 +28524,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
28195
28524
|
"Please remove the property next time."
|
|
28196
28525
|
].join("\n")
|
|
28197
28526
|
});
|
|
28198
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
28527
|
+
}).every(flag => flag))].every(flag => flag); const _vo22 = (input, _path, _exceptionable = true) => [undefined === input.preset || "string" === typeof input.preset || _report(_exceptionable, {
|
|
28199
28528
|
path: _path + ".preset",
|
|
28200
28529
|
expected: "(string | undefined)",
|
|
28201
28530
|
value: input.preset
|
|
@@ -28215,7 +28544,7 @@ function _validateEqualsDomainRecord(domain, input) {
|
|
|
28215
28544
|
"Please remove the property next time."
|
|
28216
28545
|
].join("\n")
|
|
28217
28546
|
});
|
|
28218
|
-
}).every(flag => flag))].every(flag => flag); const
|
|
28547
|
+
}).every(flag => flag))].every(flag => flag); const _vo23 = (input, _path, _exceptionable = true) => [undefined === input.futureWordWrapping || "boolean" === typeof input.futureWordWrapping || _report(_exceptionable, {
|
|
28219
28548
|
path: _path + ".futureWordWrapping",
|
|
28220
28549
|
expected: "(boolean | undefined)",
|
|
28221
28550
|
value: input.futureWordWrapping
|