@nxtedition/types 23.0.57 → 23.0.59
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/nxtpression.d.ts +1 -1
- package/dist/common/search.d.ts +9 -0
- package/dist/common/settings.d.ts +26 -1
- package/dist/nxtpression.d.ts +197 -11
- package/dist/records/domains/calendarevent.d.ts +27 -0
- package/dist/records/domains/calendarevent.js +1 -0
- package/dist/records/domains/condition.d.ts +5 -0
- package/dist/records/domains/condition.js +1 -0
- package/dist/records/domains/harvest.d.ts +10 -0
- package/dist/records/domains/harvest.js +1 -0
- package/dist/records/domains/index.d.ts +11 -1
- package/dist/records/domains/index.js +5 -0
- package/dist/records/domains/ingestclip.d.ts +21 -0
- package/dist/records/domains/ingestclip.js +1 -0
- package/dist/records/domains/panel.d.ts +8 -1
- package/dist/records/domains/published.d.ts +7 -3
- package/dist/records/domains/script.d.ts +4 -0
- package/dist/records/domains/search.d.ts +25 -4
- package/dist/records/domains/shotbox.d.ts +33 -0
- package/dist/records/domains/shotbox.js +1 -0
- package/dist/records/validate/assert-guard.js +1255 -444
- package/dist/records/validate/assert.js +1260 -442
- package/dist/records/validate/is.js +59 -33
- package/dist/records/validate/schemas.js +699 -66
- package/dist/records/validate/stringify.js +110 -79
- package/dist/records/validate/utils.js +1 -1
- package/dist/records/validate/validate-equals.js +1835 -634
- package/dist/records/validate/validate.js +1187 -427
- package/dist/rpc.d.ts +4 -1
- package/package.json +1 -1
|
@@ -3192,6 +3192,88 @@ function _validateDomainRecord(domain, input) {
|
|
|
3192
3192
|
};
|
|
3193
3193
|
}; })()(input);
|
|
3194
3194
|
}
|
|
3195
|
+
case ":calendarevent": {
|
|
3196
|
+
return (() => { const _io0 = input => (null === input.start || undefined === input.start || "string" === typeof input.start) && (null === input.end || undefined === input.end || "string" === typeof input.end) && (undefined === input.description || "string" === typeof input.description) && (null === input.recurrence || undefined === input.recurrence || "object" === typeof input.recurrence && null !== input.recurrence && false === Array.isArray(input.recurrence) && _io1(input.recurrence)) && (undefined === input.color || "string" === typeof input.color); const _io1 = input => (undefined === input.interval || "number" === typeof input.interval) && (null === input.frequency || undefined === input.frequency || "days" === input.frequency || "weeks" === input.frequency || "months" === input.frequency || "years" === input.frequency) && (null === input.byweekday || undefined === input.byweekday || Array.isArray(input.byweekday) && input.byweekday.every(elem => "number" === typeof elem)) && (null === input.count || undefined === input.count) && (null === input.until || undefined === input.until || "string" === typeof input.until); const _vo0 = (input, _path, _exceptionable = true) => [null === input.start || undefined === input.start || "string" === typeof input.start || _report(_exceptionable, {
|
|
3197
|
+
path: _path + ".start",
|
|
3198
|
+
expected: "(null | string | undefined)",
|
|
3199
|
+
value: input.start
|
|
3200
|
+
}), null === input.end || undefined === input.end || "string" === typeof input.end || _report(_exceptionable, {
|
|
3201
|
+
path: _path + ".end",
|
|
3202
|
+
expected: "(null | string | undefined)",
|
|
3203
|
+
value: input.end
|
|
3204
|
+
}), undefined === input.description || "string" === typeof input.description || _report(_exceptionable, {
|
|
3205
|
+
path: _path + ".description",
|
|
3206
|
+
expected: "(string | undefined)",
|
|
3207
|
+
value: input.description
|
|
3208
|
+
}), null === input.recurrence || undefined === input.recurrence || ("object" === typeof input.recurrence && null !== input.recurrence && false === Array.isArray(input.recurrence) || _report(_exceptionable, {
|
|
3209
|
+
path: _path + ".recurrence",
|
|
3210
|
+
expected: "(CalendarEventDomainRecurrenceRule | null | undefined)",
|
|
3211
|
+
value: input.recurrence
|
|
3212
|
+
})) && _vo1(input.recurrence, _path + ".recurrence", true && _exceptionable) || _report(_exceptionable, {
|
|
3213
|
+
path: _path + ".recurrence",
|
|
3214
|
+
expected: "(CalendarEventDomainRecurrenceRule | null | undefined)",
|
|
3215
|
+
value: input.recurrence
|
|
3216
|
+
}), undefined === input.color || "string" === typeof input.color || _report(_exceptionable, {
|
|
3217
|
+
path: _path + ".color",
|
|
3218
|
+
expected: "(string | undefined)",
|
|
3219
|
+
value: input.color
|
|
3220
|
+
})].every(flag => flag); const _vo1 = (input, _path, _exceptionable = true) => [undefined === input.interval || "number" === typeof input.interval || _report(_exceptionable, {
|
|
3221
|
+
path: _path + ".interval",
|
|
3222
|
+
expected: "(number | undefined)",
|
|
3223
|
+
value: input.interval
|
|
3224
|
+
}), null === input.frequency || undefined === input.frequency || "days" === input.frequency || "weeks" === input.frequency || "months" === input.frequency || "years" === input.frequency || _report(_exceptionable, {
|
|
3225
|
+
path: _path + ".frequency",
|
|
3226
|
+
expected: "(\"days\" | \"months\" | \"weeks\" | \"years\" | null | undefined)",
|
|
3227
|
+
value: input.frequency
|
|
3228
|
+
}), null === input.byweekday || undefined === input.byweekday || (Array.isArray(input.byweekday) || _report(_exceptionable, {
|
|
3229
|
+
path: _path + ".byweekday",
|
|
3230
|
+
expected: "(Array<number> | null | undefined)",
|
|
3231
|
+
value: input.byweekday
|
|
3232
|
+
})) && input.byweekday.map((elem, _index2) => "number" === typeof elem || _report(_exceptionable, {
|
|
3233
|
+
path: _path + ".byweekday[" + _index2 + "]",
|
|
3234
|
+
expected: "number",
|
|
3235
|
+
value: elem
|
|
3236
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
3237
|
+
path: _path + ".byweekday",
|
|
3238
|
+
expected: "(Array<number> | null | undefined)",
|
|
3239
|
+
value: input.byweekday
|
|
3240
|
+
}), null === input.count || undefined === input.count || _report(_exceptionable, {
|
|
3241
|
+
path: _path + ".count",
|
|
3242
|
+
expected: "(null | undefined)",
|
|
3243
|
+
value: input.count
|
|
3244
|
+
}), null === input.until || undefined === input.until || "string" === typeof input.until || _report(_exceptionable, {
|
|
3245
|
+
path: _path + ".until",
|
|
3246
|
+
expected: "(null | string | undefined)",
|
|
3247
|
+
value: input.until
|
|
3248
|
+
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let errors; let _report; return input => {
|
|
3249
|
+
if (false === __is(input)) {
|
|
3250
|
+
errors = [];
|
|
3251
|
+
_report = __typia_transform__validateReport._validateReport(errors);
|
|
3252
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || _report(true, {
|
|
3253
|
+
path: _path + "",
|
|
3254
|
+
expected: "CalendarEventDomainRecord",
|
|
3255
|
+
value: input
|
|
3256
|
+
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
3257
|
+
path: _path + "",
|
|
3258
|
+
expected: "CalendarEventDomainRecord",
|
|
3259
|
+
value: input
|
|
3260
|
+
}))(input, "$input", true);
|
|
3261
|
+
const success = 0 === errors.length;
|
|
3262
|
+
return success ? {
|
|
3263
|
+
success,
|
|
3264
|
+
data: input
|
|
3265
|
+
} : {
|
|
3266
|
+
success,
|
|
3267
|
+
errors,
|
|
3268
|
+
data: input
|
|
3269
|
+
};
|
|
3270
|
+
}
|
|
3271
|
+
return {
|
|
3272
|
+
success: true,
|
|
3273
|
+
data: input
|
|
3274
|
+
};
|
|
3275
|
+
}; })()(input);
|
|
3276
|
+
}
|
|
3195
3277
|
case ":clone": {
|
|
3196
3278
|
return (() => { const _io0 = input => Array.isArray(input.rules) && input.rules.every(elem => "object" === typeof elem && null !== elem && _io1(elem)); const _io1 = input => "string" === typeof input.domain && (null === input.path || undefined === input.path || "string" === typeof input.path) && (null === input.template || undefined === input.template || "string" === typeof input.template); const _vo0 = (input, _path, _exceptionable = true) => [(Array.isArray(input.rules) || _report(_exceptionable, {
|
|
3197
3279
|
path: _path + ".rules",
|
|
@@ -3758,6 +3840,48 @@ function _validateDomainRecord(domain, input) {
|
|
|
3758
3840
|
};
|
|
3759
3841
|
}; })()(input);
|
|
3760
3842
|
}
|
|
3843
|
+
case ":condition": {
|
|
3844
|
+
return (() => { const _io0 = input => (undefined === input.field || "string" === typeof input.field) && (undefined === input.type || "string" === typeof input.type) && (undefined === input.op || "string" === typeof input.op) && true; const _vo0 = (input, _path, _exceptionable = true) => [undefined === input.field || "string" === typeof input.field || _report(_exceptionable, {
|
|
3845
|
+
path: _path + ".field",
|
|
3846
|
+
expected: "(string | undefined)",
|
|
3847
|
+
value: input.field
|
|
3848
|
+
}), undefined === input.type || "string" === typeof input.type || _report(_exceptionable, {
|
|
3849
|
+
path: _path + ".type",
|
|
3850
|
+
expected: "(string | undefined)",
|
|
3851
|
+
value: input.type
|
|
3852
|
+
}), undefined === input.op || "string" === typeof input.op || _report(_exceptionable, {
|
|
3853
|
+
path: _path + ".op",
|
|
3854
|
+
expected: "(string | undefined)",
|
|
3855
|
+
value: input.op
|
|
3856
|
+
}), true].every(flag => flag); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let errors; let _report; return input => {
|
|
3857
|
+
if (false === __is(input)) {
|
|
3858
|
+
errors = [];
|
|
3859
|
+
_report = __typia_transform__validateReport._validateReport(errors);
|
|
3860
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || _report(true, {
|
|
3861
|
+
path: _path + "",
|
|
3862
|
+
expected: "SearchCondition",
|
|
3863
|
+
value: input
|
|
3864
|
+
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
3865
|
+
path: _path + "",
|
|
3866
|
+
expected: "SearchCondition",
|
|
3867
|
+
value: input
|
|
3868
|
+
}))(input, "$input", true);
|
|
3869
|
+
const success = 0 === errors.length;
|
|
3870
|
+
return success ? {
|
|
3871
|
+
success,
|
|
3872
|
+
data: input
|
|
3873
|
+
} : {
|
|
3874
|
+
success,
|
|
3875
|
+
errors,
|
|
3876
|
+
data: input
|
|
3877
|
+
};
|
|
3878
|
+
}
|
|
3879
|
+
return {
|
|
3880
|
+
success: true,
|
|
3881
|
+
data: input
|
|
3882
|
+
};
|
|
3883
|
+
}; })()(input);
|
|
3884
|
+
}
|
|
3761
3885
|
case ":connection": {
|
|
3762
3886
|
return (() => { const _io0 = input => (undefined === input.protocol || "ftp" === input.protocol) && (undefined === input.host || "string" === typeof input.host) && (undefined === input.username || "string" === typeof input.username) && (undefined === input.password || "string" === typeof input.password) && (undefined === input.utf8 || "boolean" === typeof input.utf8) && (undefined === input.timezone || "string" === typeof input.timezone) && (undefined === input.type || "file" === input.type) && (undefined === input.port || "string" === typeof input.port || "number" === typeof input.port) && (undefined === input.ignoreMissing || "boolean" === typeof input.ignoreMissing) && (undefined === input.concurrency || "number" === typeof input.concurrency) && (undefined === input.stabilityThreshold || "number" === typeof input.stabilityThreshold) && (undefined === input.pollInterval || "number" === typeof input.pollInterval) && (undefined === input.listConcurrency || "number" === typeof input.listConcurrency) && (undefined === input.metafile || "object" === typeof input.metafile && null !== input.metafile && false === Array.isArray(input.metafile) && _io1(input.metafile)) && (undefined === input.userNotificationsEnabled || "boolean" === typeof input.userNotificationsEnabled); const _io1 = input => undefined === input.content || "string" === typeof input.content; const _io2 = input => (undefined === input.protocol || "http" === input.protocol) && (undefined === input.secure || "boolean" === typeof input.secure) && (undefined === input.authType || "none" === input.authType || "oauth2" === input.authType) && (undefined === input.oauth2 || "object" === typeof input.oauth2 && null !== input.oauth2 && false === Array.isArray(input.oauth2) && _io3(input.oauth2)) && (undefined === input.actions || "object" === typeof input.actions && null !== input.actions && false === Array.isArray(input.actions) && _io8(input.actions)) && (undefined === input.type || "file" === input.type) && (undefined === input.host || "string" === typeof input.host) && (undefined === input.port || "string" === typeof input.port || "number" === typeof input.port) && (undefined === input.ignoreMissing || "boolean" === typeof input.ignoreMissing) && (undefined === input.concurrency || "number" === typeof input.concurrency) && (undefined === input.stabilityThreshold || "number" === typeof input.stabilityThreshold) && (undefined === input.pollInterval || "number" === typeof input.pollInterval) && (undefined === input.listConcurrency || "number" === typeof input.listConcurrency) && (undefined === input.metafile || "object" === typeof input.metafile && null !== input.metafile && false === Array.isArray(input.metafile) && _io1(input.metafile)) && (undefined === input.userNotificationsEnabled || "boolean" === typeof input.userNotificationsEnabled); const _io3 = input => (undefined === input.client || "object" === typeof input.client && null !== input.client && false === Array.isArray(input.client) && _io4(input.client)) && (undefined === input.auth || "object" === typeof input.auth && null !== input.auth && false === Array.isArray(input.auth) && _io5(input.auth)) && (undefined === input.tokenParams || "object" === typeof input.tokenParams && null !== input.tokenParams && false === Array.isArray(input.tokenParams) && _io6(input.tokenParams)) && (undefined === input.grantType || "password" === input.grantType) && (undefined === input.token || "object" === typeof input.token && null !== input.token && _io7(input.token)) && (undefined === input.error || "string" === typeof input.error); const _io4 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.secret || "string" === typeof input.secret) && (undefined === input.secretParamName || "string" === typeof input.secretParamName) && (undefined === input.idParamName || "string" === typeof input.idParamName); const _io5 = input => (undefined === input.tokenHost || "string" === typeof input.tokenHost) && (undefined === input.tokenPath || "string" === typeof input.tokenPath) && (undefined === input.refreshPath || "string" === typeof input.refreshPath) && (undefined === input.revokePath || "string" === typeof input.revokePath); const _io6 = input => Object.keys(input).every(key => {
|
|
3763
3887
|
const value = input[key];
|
|
@@ -7769,6 +7893,158 @@ function _validateDomainRecord(domain, input) {
|
|
|
7769
7893
|
};
|
|
7770
7894
|
}; })()(input);
|
|
7771
7895
|
}
|
|
7896
|
+
case ":harvest": {
|
|
7897
|
+
return (() => { const _io0 = input => (undefined === input.active || "boolean" === typeof input.active) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.revisions || "boolean" === typeof input.revisions) && (undefined === input.concurrency || "number" === typeof input.concurrency) && (undefined === input.throttle || "number" === typeof input.throttle); const _vo0 = (input, _path, _exceptionable = true) => [undefined === input.active || "boolean" === typeof input.active || _report(_exceptionable, {
|
|
7898
|
+
path: _path + ".active",
|
|
7899
|
+
expected: "(boolean | undefined)",
|
|
7900
|
+
value: input.active
|
|
7901
|
+
}), undefined === input.tags || (Array.isArray(input.tags) || _report(_exceptionable, {
|
|
7902
|
+
path: _path + ".tags",
|
|
7903
|
+
expected: "(Array<string> | undefined)",
|
|
7904
|
+
value: input.tags
|
|
7905
|
+
})) && input.tags.map((elem, _index2) => "string" === typeof elem || _report(_exceptionable, {
|
|
7906
|
+
path: _path + ".tags[" + _index2 + "]",
|
|
7907
|
+
expected: "string",
|
|
7908
|
+
value: elem
|
|
7909
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
7910
|
+
path: _path + ".tags",
|
|
7911
|
+
expected: "(Array<string> | undefined)",
|
|
7912
|
+
value: input.tags
|
|
7913
|
+
}), undefined === input.revisions || "boolean" === typeof input.revisions || _report(_exceptionable, {
|
|
7914
|
+
path: _path + ".revisions",
|
|
7915
|
+
expected: "(boolean | undefined)",
|
|
7916
|
+
value: input.revisions
|
|
7917
|
+
}), undefined === input.concurrency || "number" === typeof input.concurrency || _report(_exceptionable, {
|
|
7918
|
+
path: _path + ".concurrency",
|
|
7919
|
+
expected: "(number | undefined)",
|
|
7920
|
+
value: input.concurrency
|
|
7921
|
+
}), undefined === input.throttle || "number" === typeof input.throttle || _report(_exceptionable, {
|
|
7922
|
+
path: _path + ".throttle",
|
|
7923
|
+
expected: "(number | undefined)",
|
|
7924
|
+
value: input.throttle
|
|
7925
|
+
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let errors; let _report; return input => {
|
|
7926
|
+
if (false === __is(input)) {
|
|
7927
|
+
errors = [];
|
|
7928
|
+
_report = __typia_transform__validateReport._validateReport(errors);
|
|
7929
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || _report(true, {
|
|
7930
|
+
path: _path + "",
|
|
7931
|
+
expected: "HarvestDomainRecord",
|
|
7932
|
+
value: input
|
|
7933
|
+
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
7934
|
+
path: _path + "",
|
|
7935
|
+
expected: "HarvestDomainRecord",
|
|
7936
|
+
value: input
|
|
7937
|
+
}))(input, "$input", true);
|
|
7938
|
+
const success = 0 === errors.length;
|
|
7939
|
+
return success ? {
|
|
7940
|
+
success,
|
|
7941
|
+
data: input
|
|
7942
|
+
} : {
|
|
7943
|
+
success,
|
|
7944
|
+
errors,
|
|
7945
|
+
data: input
|
|
7946
|
+
};
|
|
7947
|
+
}
|
|
7948
|
+
return {
|
|
7949
|
+
success: true,
|
|
7950
|
+
data: input
|
|
7951
|
+
};
|
|
7952
|
+
}; })()(input);
|
|
7953
|
+
}
|
|
7954
|
+
case ":ingestclip": {
|
|
7955
|
+
return (() => { const _io0 = input => (undefined === input.time || "number" === typeof input.time) && (undefined === input.duration || "number" === typeof input.duration) && (undefined === input.type || "string" === typeof input.type) && (undefined === input.record || "string" === typeof input.record) && (undefined === input.data || "boolean" === typeof input.data) && (undefined === input.gallery || "string" === typeof input.gallery) && (undefined === input.rundown || "string" === typeof input.rundown) && (undefined === input.segment || "string" === typeof input.segment) && (undefined === input.story || "string" === typeof input.story) && (undefined === input.event || "string" === typeof input.event) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.start || "number" === typeof input.start) && (undefined === input.end || "number" === typeof input.end) && (undefined === input.channel || "string" === typeof input.channel) && (undefined === input.schedule || "string" === typeof input.schedule) && (undefined === input.parent || "string" === typeof input.parent); const _vo0 = (input, _path, _exceptionable = true) => [undefined === input.time || "number" === typeof input.time || _report(_exceptionable, {
|
|
7956
|
+
path: _path + ".time",
|
|
7957
|
+
expected: "(number | undefined)",
|
|
7958
|
+
value: input.time
|
|
7959
|
+
}), undefined === input.duration || "number" === typeof input.duration || _report(_exceptionable, {
|
|
7960
|
+
path: _path + ".duration",
|
|
7961
|
+
expected: "(number | undefined)",
|
|
7962
|
+
value: input.duration
|
|
7963
|
+
}), undefined === input.type || "string" === typeof input.type || _report(_exceptionable, {
|
|
7964
|
+
path: _path + ".type",
|
|
7965
|
+
expected: "(string | undefined)",
|
|
7966
|
+
value: input.type
|
|
7967
|
+
}), undefined === input.record || "string" === typeof input.record || _report(_exceptionable, {
|
|
7968
|
+
path: _path + ".record",
|
|
7969
|
+
expected: "(string | undefined)",
|
|
7970
|
+
value: input.record
|
|
7971
|
+
}), undefined === input.data || "boolean" === typeof input.data || _report(_exceptionable, {
|
|
7972
|
+
path: _path + ".data",
|
|
7973
|
+
expected: "(boolean | undefined)",
|
|
7974
|
+
value: input.data
|
|
7975
|
+
}), undefined === input.gallery || "string" === typeof input.gallery || _report(_exceptionable, {
|
|
7976
|
+
path: _path + ".gallery",
|
|
7977
|
+
expected: "(string | undefined)",
|
|
7978
|
+
value: input.gallery
|
|
7979
|
+
}), undefined === input.rundown || "string" === typeof input.rundown || _report(_exceptionable, {
|
|
7980
|
+
path: _path + ".rundown",
|
|
7981
|
+
expected: "(string | undefined)",
|
|
7982
|
+
value: input.rundown
|
|
7983
|
+
}), undefined === input.segment || "string" === typeof input.segment || _report(_exceptionable, {
|
|
7984
|
+
path: _path + ".segment",
|
|
7985
|
+
expected: "(string | undefined)",
|
|
7986
|
+
value: input.segment
|
|
7987
|
+
}), undefined === input.story || "string" === typeof input.story || _report(_exceptionable, {
|
|
7988
|
+
path: _path + ".story",
|
|
7989
|
+
expected: "(string | undefined)",
|
|
7990
|
+
value: input.story
|
|
7991
|
+
}), undefined === input.event || "string" === typeof input.event || _report(_exceptionable, {
|
|
7992
|
+
path: _path + ".event",
|
|
7993
|
+
expected: "(string | undefined)",
|
|
7994
|
+
value: input.event
|
|
7995
|
+
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
7996
|
+
path: _path + ".title",
|
|
7997
|
+
expected: "(string | undefined)",
|
|
7998
|
+
value: input.title
|
|
7999
|
+
}), undefined === input.start || "number" === typeof input.start || _report(_exceptionable, {
|
|
8000
|
+
path: _path + ".start",
|
|
8001
|
+
expected: "(number | undefined)",
|
|
8002
|
+
value: input.start
|
|
8003
|
+
}), undefined === input.end || "number" === typeof input.end || _report(_exceptionable, {
|
|
8004
|
+
path: _path + ".end",
|
|
8005
|
+
expected: "(number | undefined)",
|
|
8006
|
+
value: input.end
|
|
8007
|
+
}), undefined === input.channel || "string" === typeof input.channel || _report(_exceptionable, {
|
|
8008
|
+
path: _path + ".channel",
|
|
8009
|
+
expected: "(string | undefined)",
|
|
8010
|
+
value: input.channel
|
|
8011
|
+
}), undefined === input.schedule || "string" === typeof input.schedule || _report(_exceptionable, {
|
|
8012
|
+
path: _path + ".schedule",
|
|
8013
|
+
expected: "(string | undefined)",
|
|
8014
|
+
value: input.schedule
|
|
8015
|
+
}), undefined === input.parent || "string" === typeof input.parent || _report(_exceptionable, {
|
|
8016
|
+
path: _path + ".parent",
|
|
8017
|
+
expected: "(string | undefined)",
|
|
8018
|
+
value: input.parent
|
|
8019
|
+
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let errors; let _report; return input => {
|
|
8020
|
+
if (false === __is(input)) {
|
|
8021
|
+
errors = [];
|
|
8022
|
+
_report = __typia_transform__validateReport._validateReport(errors);
|
|
8023
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || _report(true, {
|
|
8024
|
+
path: _path + "",
|
|
8025
|
+
expected: "IngestclipDomainRecord",
|
|
8026
|
+
value: input
|
|
8027
|
+
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
8028
|
+
path: _path + "",
|
|
8029
|
+
expected: "IngestclipDomainRecord",
|
|
8030
|
+
value: input
|
|
8031
|
+
}))(input, "$input", true);
|
|
8032
|
+
const success = 0 === errors.length;
|
|
8033
|
+
return success ? {
|
|
8034
|
+
success,
|
|
8035
|
+
data: input
|
|
8036
|
+
} : {
|
|
8037
|
+
success,
|
|
8038
|
+
errors,
|
|
8039
|
+
data: input
|
|
8040
|
+
};
|
|
8041
|
+
}
|
|
8042
|
+
return {
|
|
8043
|
+
success: true,
|
|
8044
|
+
data: input
|
|
8045
|
+
};
|
|
8046
|
+
}; })()(input);
|
|
8047
|
+
}
|
|
7772
8048
|
case ":media.source": {
|
|
7773
8049
|
return (() => { const _io0 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (null === input.input || undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && _io1(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && _io2(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io5(input.video)) && (undefined === input.start || "number" === typeof input.start) && (undefined === input.end || "number" === typeof input.end) && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) && _io7(input.transcribe)); const _io1 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file); const _io2 = input => Object.keys(input).every(key => {
|
|
7774
8050
|
const value = input[key];
|
|
@@ -9442,16 +9718,16 @@ function _validateDomainRecord(domain, input) {
|
|
|
9442
9718
|
}; })()(input);
|
|
9443
9719
|
}
|
|
9444
9720
|
case ":panel": {
|
|
9445
|
-
return (() => { const _io0 = input => (undefined === input.title || "string" === typeof input.title) && (null !== input.supports && (undefined === input.supports || "string" === typeof input.supports || Array.isArray(input.supports) && input.supports.every(elem => "string" === typeof elem))) && (undefined === input.priority || "number" === typeof input.priority) && (undefined === input.editorPriority || "number" === typeof input.editorPriority) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io1(input.properties)) && (undefined === input.layout || "object" === typeof input.layout && null !== input.layout && false === Array.isArray(input.layout) &&
|
|
9721
|
+
return (() => { const _io0 = input => (undefined === input.title || "string" === typeof input.title) && (null !== input.supports && (undefined === input.supports || "string" === typeof input.supports || Array.isArray(input.supports) && input.supports.every(elem => "string" === typeof elem))) && (undefined === input.priority || "number" === typeof input.priority) && (undefined === input.editorPriority || "number" === typeof input.editorPriority) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io1(input.properties)) && (undefined === input.layout || "object" === typeof input.layout && null !== input.layout && false === Array.isArray(input.layout) && _io6(input.layout)) && true && true; const _io1 = input => Object.keys(input).every(key => {
|
|
9446
9722
|
const value = input[key];
|
|
9447
9723
|
if (undefined === value)
|
|
9448
9724
|
return true;
|
|
9449
9725
|
return "object" === typeof value && null !== value && _io2(value);
|
|
9450
|
-
}); const _io2 = input => ("string" === input.type || "number" === input.type || "boolean" === input.type || "object" === input.type || "array" === input.type || "asset" === input.type || "datetime" === input.type || "rpc" === input.type) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.domain || "string" === typeof input.domain) && (undefined === input.path || "string" === typeof input.path) && true && (undefined === input.index || "object" === typeof input.index && null !== input.index && _io3(input.index)) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.oneOf || Array.isArray(input.oneOf)); const _io3 = input => "string" === typeof input.label && "string" === typeof input.path; const _io4 = input => null !== input.panel && (undefined === input.panel || "string" === typeof input.panel || (Array.isArray(input.panel) && (_ia0(input.panel) || false) || "object" === typeof input.panel && null !== input.panel && _iu0(input.panel))) && (null !== input.editor && (undefined === input.editor || "string" === typeof input.editor || (Array.isArray(input.editor) && (_ia0(input.editor) || false) || "object" === typeof input.editor && null !== input.editor && _iu0(input.editor)))); const
|
|
9726
|
+
}); const _io2 = input => ("string" === input.type || "number" === input.type || "boolean" === input.type || "object" === input.type || "array" === input.type || "asset" === input.type || "datetime" === input.type || "rpc" === input.type) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.domain || "string" === typeof input.domain) && (undefined === input.path || "string" === typeof input.path) && true && (undefined === input.index || "object" === typeof input.index && null !== input.index && _io3(input.index)) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.oneOf || Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io4(elem))) && (undefined === input.anyOf || Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io5(elem))); const _io3 = input => "string" === typeof input.label && "string" === typeof input.path; const _io4 = input => true && (undefined === input.title || "string" === typeof input.title); const _io5 = input => true && (undefined === input.title || "string" === typeof input.title); const _io6 = input => null !== input.panel && (undefined === input.panel || "string" === typeof input.panel || (Array.isArray(input.panel) && (_ia0(input.panel) || false) || "object" === typeof input.panel && null !== input.panel && _iu0(input.panel))) && (null !== input.editor && (undefined === input.editor || "string" === typeof input.editor || (Array.isArray(input.editor) && (_ia0(input.editor) || false) || "object" === typeof input.editor && null !== input.editor && _iu0(input.editor)))); const _io7 = input => "divider" === input.type && (undefined === input.title || "string" === typeof input.title); const _io8 = input => "string" === typeof input.property && (undefined === input.width || "string" === typeof input.width || "number" === typeof input.width) && (null !== input.widget && (undefined === input.widget || "default" === input.widget || "assetTypes" === input.widget || "assetTags" === input.widget || "geopoint" === input.widget || "poster" === input.widget || "textarea" === input.widget || "tags" === input.widget || "object" === typeof input.widget && null !== input.widget && _io9(input.widget))); const _io9 = input => ("default" === input.type || "assetTypes" === input.type || "assetTags" === input.type || "geopoint" === input.type || "poster" === input.type || "textarea" === input.type || "tags" === input.type) && (undefined === input.readOnly || "boolean" === typeof input.readOnly); const _iu0 = input => (() => {
|
|
9451
9727
|
if (undefined !== input.type)
|
|
9452
|
-
return
|
|
9728
|
+
return _io7(input);
|
|
9453
9729
|
else if (undefined !== input.property)
|
|
9454
|
-
return
|
|
9730
|
+
return _io8(input);
|
|
9455
9731
|
else
|
|
9456
9732
|
return false;
|
|
9457
9733
|
})(); const _ia0 = input => input.every(elem => null !== elem && undefined !== elem && ("string" === typeof elem || (Array.isArray(elem) && (_ia0(elem) || false) || "object" === typeof elem && null !== elem && _iu0(elem)))); const _vo0 = (input, _path, _exceptionable = true) => [undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
@@ -9466,8 +9742,8 @@ function _validateDomainRecord(domain, input) {
|
|
|
9466
9742
|
path: _path + ".supports",
|
|
9467
9743
|
expected: "(Array<string> | string | undefined)",
|
|
9468
9744
|
value: input.supports
|
|
9469
|
-
})) && input.supports.map((elem,
|
|
9470
|
-
path: _path + ".supports[" +
|
|
9745
|
+
})) && input.supports.map((elem, _index5) => "string" === typeof elem || _report(_exceptionable, {
|
|
9746
|
+
path: _path + ".supports[" + _index5 + "]",
|
|
9471
9747
|
expected: "string",
|
|
9472
9748
|
value: elem
|
|
9473
9749
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -9492,37 +9768,13 @@ function _validateDomainRecord(domain, input) {
|
|
|
9492
9768
|
value: input.properties
|
|
9493
9769
|
}), undefined === input.layout || ("object" === typeof input.layout && null !== input.layout && false === Array.isArray(input.layout) || _report(_exceptionable, {
|
|
9494
9770
|
path: _path + ".layout",
|
|
9495
|
-
expected: "(__type.
|
|
9771
|
+
expected: "(__type.o4 | undefined)",
|
|
9496
9772
|
value: input.layout
|
|
9497
|
-
})) &&
|
|
9773
|
+
})) && _vo6(input.layout, _path + ".layout", true && _exceptionable) || _report(_exceptionable, {
|
|
9498
9774
|
path: _path + ".layout",
|
|
9499
|
-
expected: "(__type.
|
|
9775
|
+
expected: "(__type.o4 | undefined)",
|
|
9500
9776
|
value: input.layout
|
|
9501
|
-
}), (
|
|
9502
|
-
path: _path + ".filter",
|
|
9503
|
-
expected: "(__type.o3 | string | undefined)",
|
|
9504
|
-
value: input.filter
|
|
9505
|
-
})) && (undefined === input.filter || "string" === typeof input.filter || ("object" === typeof input.filter && null !== input.filter || _report(_exceptionable, {
|
|
9506
|
-
path: _path + ".filter",
|
|
9507
|
-
expected: "(__type.o3 | string | undefined)",
|
|
9508
|
-
value: input.filter
|
|
9509
|
-
})) && _vo8(input.filter, _path + ".filter", true && _exceptionable) || _report(_exceptionable, {
|
|
9510
|
-
path: _path + ".filter",
|
|
9511
|
-
expected: "(__type.o3 | string | undefined)",
|
|
9512
|
-
value: input.filter
|
|
9513
|
-
})), (null !== input.expand || _report(_exceptionable, {
|
|
9514
|
-
path: _path + ".expand",
|
|
9515
|
-
expected: "(__type.o3 | string | undefined)",
|
|
9516
|
-
value: input.expand
|
|
9517
|
-
})) && (undefined === input.expand || "string" === typeof input.expand || ("object" === typeof input.expand && null !== input.expand || _report(_exceptionable, {
|
|
9518
|
-
path: _path + ".expand",
|
|
9519
|
-
expected: "(__type.o3 | string | undefined)",
|
|
9520
|
-
value: input.expand
|
|
9521
|
-
})) && _vo8(input.expand, _path + ".expand", true && _exceptionable) || _report(_exceptionable, {
|
|
9522
|
-
path: _path + ".expand",
|
|
9523
|
-
expected: "(__type.o3 | string | undefined)",
|
|
9524
|
-
value: input.expand
|
|
9525
|
-
}))].every(flag => flag); const _vo1 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
9777
|
+
}), true, true].every(flag => flag); const _vo1 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
9526
9778
|
const value = input[key];
|
|
9527
9779
|
if (undefined === value)
|
|
9528
9780
|
return true;
|
|
@@ -9567,10 +9819,38 @@ function _validateDomainRecord(domain, input) {
|
|
|
9567
9819
|
path: _path + ".required",
|
|
9568
9820
|
expected: "(boolean | undefined)",
|
|
9569
9821
|
value: input.required
|
|
9570
|
-
}), undefined === input.oneOf || Array.isArray(input.oneOf) || _report(_exceptionable, {
|
|
9822
|
+
}), undefined === input.oneOf || (Array.isArray(input.oneOf) || _report(_exceptionable, {
|
|
9823
|
+
path: _path + ".oneOf",
|
|
9824
|
+
expected: "(Array<__type> | undefined)",
|
|
9825
|
+
value: input.oneOf
|
|
9826
|
+
})) && input.oneOf.map((elem, _index6) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || _report(_exceptionable, {
|
|
9827
|
+
path: _path + ".oneOf[" + _index6 + "]",
|
|
9828
|
+
expected: "__type.o2",
|
|
9829
|
+
value: elem
|
|
9830
|
+
})) && _vo4(elem, _path + ".oneOf[" + _index6 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
9831
|
+
path: _path + ".oneOf[" + _index6 + "]",
|
|
9832
|
+
expected: "__type.o2",
|
|
9833
|
+
value: elem
|
|
9834
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
9571
9835
|
path: _path + ".oneOf",
|
|
9572
|
-
expected: "(Array<
|
|
9836
|
+
expected: "(Array<__type> | undefined)",
|
|
9573
9837
|
value: input.oneOf
|
|
9838
|
+
}), undefined === input.anyOf || (Array.isArray(input.anyOf) || _report(_exceptionable, {
|
|
9839
|
+
path: _path + ".anyOf",
|
|
9840
|
+
expected: "(Array<__type>.o1 | undefined)",
|
|
9841
|
+
value: input.anyOf
|
|
9842
|
+
})) && input.anyOf.map((elem, _index7) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || _report(_exceptionable, {
|
|
9843
|
+
path: _path + ".anyOf[" + _index7 + "]",
|
|
9844
|
+
expected: "__type.o3",
|
|
9845
|
+
value: elem
|
|
9846
|
+
})) && _vo5(elem, _path + ".anyOf[" + _index7 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
9847
|
+
path: _path + ".anyOf[" + _index7 + "]",
|
|
9848
|
+
expected: "__type.o3",
|
|
9849
|
+
value: elem
|
|
9850
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
9851
|
+
path: _path + ".anyOf",
|
|
9852
|
+
expected: "(Array<__type>.o1 | undefined)",
|
|
9853
|
+
value: input.anyOf
|
|
9574
9854
|
})].every(flag => flag); const _vo3 = (input, _path, _exceptionable = true) => ["string" === typeof input.label || _report(_exceptionable, {
|
|
9575
9855
|
path: _path + ".label",
|
|
9576
9856
|
expected: "string",
|
|
@@ -9579,7 +9859,15 @@ function _validateDomainRecord(domain, input) {
|
|
|
9579
9859
|
path: _path + ".path",
|
|
9580
9860
|
expected: "string",
|
|
9581
9861
|
value: input.path
|
|
9582
|
-
})].every(flag => flag); const _vo4 = (input, _path, _exceptionable = true) => [
|
|
9862
|
+
})].every(flag => flag); const _vo4 = (input, _path, _exceptionable = true) => [true, undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
9863
|
+
path: _path + ".title",
|
|
9864
|
+
expected: "(string | undefined)",
|
|
9865
|
+
value: input.title
|
|
9866
|
+
})].every(flag => flag); const _vo5 = (input, _path, _exceptionable = true) => [true, undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
9867
|
+
path: _path + ".title",
|
|
9868
|
+
expected: "(string | undefined)",
|
|
9869
|
+
value: input.title
|
|
9870
|
+
})].every(flag => flag); const _vo6 = (input, _path, _exceptionable = true) => [(null !== input.panel || _report(_exceptionable, {
|
|
9583
9871
|
path: _path + ".panel",
|
|
9584
9872
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string | undefined)",
|
|
9585
9873
|
value: input.panel
|
|
@@ -9611,7 +9899,7 @@ function _validateDomainRecord(domain, input) {
|
|
|
9611
9899
|
path: _path + ".editor",
|
|
9612
9900
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string | undefined)",
|
|
9613
9901
|
value: input.editor
|
|
9614
|
-
}))].every(flag => flag); const
|
|
9902
|
+
}))].every(flag => flag); const _vo7 = (input, _path, _exceptionable = true) => ["divider" === input.type || _report(_exceptionable, {
|
|
9615
9903
|
path: _path + ".type",
|
|
9616
9904
|
expected: "\"divider\"",
|
|
9617
9905
|
value: input.type
|
|
@@ -9619,7 +9907,7 @@ function _validateDomainRecord(domain, input) {
|
|
|
9619
9907
|
path: _path + ".title",
|
|
9620
9908
|
expected: "(string | undefined)",
|
|
9621
9909
|
value: input.title
|
|
9622
|
-
})].every(flag => flag); const
|
|
9910
|
+
})].every(flag => flag); const _vo8 = (input, _path, _exceptionable = true) => ["string" === typeof input.property || _report(_exceptionable, {
|
|
9623
9911
|
path: _path + ".property",
|
|
9624
9912
|
expected: "string",
|
|
9625
9913
|
value: input.property
|
|
@@ -9635,11 +9923,11 @@ function _validateDomainRecord(domain, input) {
|
|
|
9635
9923
|
path: _path + ".widget",
|
|
9636
9924
|
expected: "(\"assetTags\" | \"assetTypes\" | \"default\" | \"geopoint\" | \"poster\" | \"tags\" | \"textarea\" | WidgetItem | undefined)",
|
|
9637
9925
|
value: input.widget
|
|
9638
|
-
})) &&
|
|
9926
|
+
})) && _vo9(input.widget, _path + ".widget", true && _exceptionable) || _report(_exceptionable, {
|
|
9639
9927
|
path: _path + ".widget",
|
|
9640
9928
|
expected: "(\"assetTags\" | \"assetTypes\" | \"default\" | \"geopoint\" | \"poster\" | \"tags\" | \"textarea\" | WidgetItem | undefined)",
|
|
9641
9929
|
value: input.widget
|
|
9642
|
-
}))].every(flag => flag); const
|
|
9930
|
+
}))].every(flag => flag); const _vo9 = (input, _path, _exceptionable = true) => ["default" === input.type || "assetTypes" === input.type || "assetTags" === input.type || "geopoint" === input.type || "poster" === input.type || "textarea" === input.type || "tags" === input.type || _report(_exceptionable, {
|
|
9643
9931
|
path: _path + ".type",
|
|
9644
9932
|
expected: "(\"assetTags\" | \"assetTypes\" | \"default\" | \"geopoint\" | \"poster\" | \"tags\" | \"textarea\")",
|
|
9645
9933
|
value: input.type
|
|
@@ -9647,47 +9935,35 @@ function _validateDomainRecord(domain, input) {
|
|
|
9647
9935
|
path: _path + ".readOnly",
|
|
9648
9936
|
expected: "(boolean | undefined)",
|
|
9649
9937
|
value: input.readOnly
|
|
9650
|
-
})].every(flag => flag); const
|
|
9651
|
-
path: _path + ".__context",
|
|
9652
|
-
expected: "object",
|
|
9653
|
-
value: input.__context
|
|
9654
|
-
})) && _vo9(input.__context, _path + ".__context", true && _exceptionable) || _report(_exceptionable, {
|
|
9655
|
-
path: _path + ".__context",
|
|
9656
|
-
expected: "object",
|
|
9657
|
-
value: input.__context
|
|
9658
|
-
}), "string" === typeof input.__returnValue || _report(_exceptionable, {
|
|
9659
|
-
path: _path + ".__returnValue",
|
|
9660
|
-
expected: "string",
|
|
9661
|
-
value: input.__returnValue
|
|
9662
|
-
})].every(flag => flag); const _vo9 = (input, _path, _exceptionable = true) => true; const _vu0 = (input, _path, _exceptionable = true) => (() => {
|
|
9938
|
+
})].every(flag => flag); const _vu0 = (input, _path, _exceptionable = true) => (() => {
|
|
9663
9939
|
if (undefined !== input.type)
|
|
9664
|
-
return
|
|
9940
|
+
return _vo7(input, _path, true && _exceptionable);
|
|
9665
9941
|
else if (undefined !== input.property)
|
|
9666
|
-
return
|
|
9942
|
+
return _vo8(input, _path, true && _exceptionable);
|
|
9667
9943
|
else
|
|
9668
9944
|
return _report(_exceptionable, {
|
|
9669
9945
|
path: _path,
|
|
9670
9946
|
expected: "(PanelLayoutDivider | PanelLayoutItem)",
|
|
9671
9947
|
value: input
|
|
9672
9948
|
});
|
|
9673
|
-
})(); const _va0 = (input, _path, _exceptionable = true) => input.map((elem,
|
|
9674
|
-
path: _path + "[" +
|
|
9949
|
+
})(); const _va0 = (input, _path, _exceptionable = true) => input.map((elem, _index8) => (null !== elem || _report(_exceptionable, {
|
|
9950
|
+
path: _path + "[" + _index8 + "]",
|
|
9675
9951
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string)",
|
|
9676
9952
|
value: elem
|
|
9677
9953
|
})) && (undefined !== elem || _report(_exceptionable, {
|
|
9678
|
-
path: _path + "[" +
|
|
9954
|
+
path: _path + "[" + _index8 + "]",
|
|
9679
9955
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string)",
|
|
9680
9956
|
value: elem
|
|
9681
|
-
})) && ("string" === typeof elem || (Array.isArray(elem) && (_va0(elem, _path + "[" +
|
|
9682
|
-
path: _path + "[" +
|
|
9957
|
+
})) && ("string" === typeof elem || (Array.isArray(elem) && (_va0(elem, _path + "[" + _index8 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
9958
|
+
path: _path + "[" + _index8 + "]",
|
|
9683
9959
|
expected: "Array<PanelLayout>",
|
|
9684
9960
|
value: elem
|
|
9685
|
-
})) || "object" === typeof elem && null !== elem && _vu0(elem, _path + "[" +
|
|
9686
|
-
path: _path + "[" +
|
|
9961
|
+
})) || "object" === typeof elem && null !== elem && _vu0(elem, _path + "[" + _index8 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
9962
|
+
path: _path + "[" + _index8 + "]",
|
|
9687
9963
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string)",
|
|
9688
9964
|
value: elem
|
|
9689
9965
|
})) || _report(_exceptionable, {
|
|
9690
|
-
path: _path + "[" +
|
|
9966
|
+
path: _path + "[" + _index8 + "]",
|
|
9691
9967
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string)",
|
|
9692
9968
|
value: elem
|
|
9693
9969
|
}))).every(flag => flag); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let errors; let _report; return input => {
|
|
@@ -12226,34 +12502,54 @@ function _validateDomainRecord(domain, input) {
|
|
|
12226
12502
|
}; })()(input);
|
|
12227
12503
|
}
|
|
12228
12504
|
case ":published": {
|
|
12229
|
-
return (() => { const _io0 = input => "string" === typeof input.type && "string" === typeof input.parent && (Array.isArray(input.asset) && input.asset.every(elem => "string" === typeof elem)) && "number" === typeof input.time && "string" === typeof input.connection && (undefined === input.user || "string" === typeof input.user) && (undefined === input.error || "boolean" === typeof input.error); const _vo0 = (input, _path, _exceptionable = true) => ["string" === typeof input.type || _report(_exceptionable, {
|
|
12505
|
+
return (() => { const _io0 = input => "string" === typeof input.type && (undefined === input.parent || "string" === typeof input.parent) && (null !== input.asset && (undefined === input.asset || "string" === typeof input.asset || Array.isArray(input.asset) && input.asset.every(elem => "string" === typeof elem))) && (undefined === input.assets || Array.isArray(input.assets) && input.assets.every(elem => "string" === typeof elem)) && "number" === typeof input.time && (undefined === input.connection || "string" === typeof input.connection) && (undefined === input.gallery || "string" === typeof input.gallery) && (undefined === input.user || "string" === typeof input.user) && (undefined === input.error || "boolean" === typeof input.error); const _vo0 = (input, _path, _exceptionable = true) => ["string" === typeof input.type || _report(_exceptionable, {
|
|
12230
12506
|
path: _path + ".type",
|
|
12231
12507
|
expected: "string",
|
|
12232
12508
|
value: input.type
|
|
12233
|
-
}), "string" === typeof input.parent || _report(_exceptionable, {
|
|
12509
|
+
}), undefined === input.parent || "string" === typeof input.parent || _report(_exceptionable, {
|
|
12234
12510
|
path: _path + ".parent",
|
|
12235
|
-
expected: "string",
|
|
12511
|
+
expected: "(string | undefined)",
|
|
12236
12512
|
value: input.parent
|
|
12237
|
-
}), (
|
|
12513
|
+
}), (null !== input.asset || _report(_exceptionable, {
|
|
12238
12514
|
path: _path + ".asset",
|
|
12239
|
-
expected: "Array<string>",
|
|
12515
|
+
expected: "(Array<string> | string | undefined)",
|
|
12516
|
+
value: input.asset
|
|
12517
|
+
})) && (undefined === input.asset || "string" === typeof input.asset || (Array.isArray(input.asset) || _report(_exceptionable, {
|
|
12518
|
+
path: _path + ".asset",
|
|
12519
|
+
expected: "(Array<string> | string | undefined)",
|
|
12240
12520
|
value: input.asset
|
|
12241
|
-
})) && input.asset.map((elem,
|
|
12242
|
-
path: _path + ".asset[" +
|
|
12521
|
+
})) && input.asset.map((elem, _index3) => "string" === typeof elem || _report(_exceptionable, {
|
|
12522
|
+
path: _path + ".asset[" + _index3 + "]",
|
|
12243
12523
|
expected: "string",
|
|
12244
12524
|
value: elem
|
|
12245
12525
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
12246
12526
|
path: _path + ".asset",
|
|
12247
|
-
expected: "Array<string>",
|
|
12527
|
+
expected: "(Array<string> | string | undefined)",
|
|
12248
12528
|
value: input.asset
|
|
12529
|
+
})), undefined === input.assets || (Array.isArray(input.assets) || _report(_exceptionable, {
|
|
12530
|
+
path: _path + ".assets",
|
|
12531
|
+
expected: "(Array<string> | undefined)",
|
|
12532
|
+
value: input.assets
|
|
12533
|
+
})) && input.assets.map((elem, _index4) => "string" === typeof elem || _report(_exceptionable, {
|
|
12534
|
+
path: _path + ".assets[" + _index4 + "]",
|
|
12535
|
+
expected: "string",
|
|
12536
|
+
value: elem
|
|
12537
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
12538
|
+
path: _path + ".assets",
|
|
12539
|
+
expected: "(Array<string> | undefined)",
|
|
12540
|
+
value: input.assets
|
|
12249
12541
|
}), "number" === typeof input.time || _report(_exceptionable, {
|
|
12250
12542
|
path: _path + ".time",
|
|
12251
12543
|
expected: "number",
|
|
12252
12544
|
value: input.time
|
|
12253
|
-
}), "string" === typeof input.connection || _report(_exceptionable, {
|
|
12545
|
+
}), undefined === input.connection || "string" === typeof input.connection || _report(_exceptionable, {
|
|
12254
12546
|
path: _path + ".connection",
|
|
12255
|
-
expected: "string",
|
|
12547
|
+
expected: "(string | undefined)",
|
|
12256
12548
|
value: input.connection
|
|
12549
|
+
}), undefined === input.gallery || "string" === typeof input.gallery || _report(_exceptionable, {
|
|
12550
|
+
path: _path + ".gallery",
|
|
12551
|
+
expected: "(string | undefined)",
|
|
12552
|
+
value: input.gallery
|
|
12257
12553
|
}), undefined === input.user || "string" === typeof input.user || _report(_exceptionable, {
|
|
12258
12554
|
path: _path + ".user",
|
|
12259
12555
|
expected: "(string | undefined)",
|
|
@@ -13432,10 +13728,34 @@ function _validateDomainRecord(domain, input) {
|
|
|
13432
13728
|
}; })()(input);
|
|
13433
13729
|
}
|
|
13434
13730
|
case ":script": {
|
|
13435
|
-
return (() => { const _io0 = input => "string" === typeof input.value; const _vo0 = (input, _path, _exceptionable = true) => ["string" === typeof input.value || _report(_exceptionable, {
|
|
13731
|
+
return (() => { const _io0 = input => "string" === typeof input.value && (undefined === input.refs || Array.isArray(input.refs) && input.refs.every(elem => "object" === typeof elem && null !== elem && _io1(elem))); const _io1 = input => "string" === typeof input.mixin && (undefined === input.asset || "string" === typeof input.asset); const _vo0 = (input, _path, _exceptionable = true) => ["string" === typeof input.value || _report(_exceptionable, {
|
|
13436
13732
|
path: _path + ".value",
|
|
13437
13733
|
expected: "string",
|
|
13438
13734
|
value: input.value
|
|
13735
|
+
}), undefined === input.refs || (Array.isArray(input.refs) || _report(_exceptionable, {
|
|
13736
|
+
path: _path + ".refs",
|
|
13737
|
+
expected: "(Array<__type> | undefined)",
|
|
13738
|
+
value: input.refs
|
|
13739
|
+
})) && input.refs.map((elem, _index2) => ("object" === typeof elem && null !== elem || _report(_exceptionable, {
|
|
13740
|
+
path: _path + ".refs[" + _index2 + "]",
|
|
13741
|
+
expected: "__type",
|
|
13742
|
+
value: elem
|
|
13743
|
+
})) && _vo1(elem, _path + ".refs[" + _index2 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
13744
|
+
path: _path + ".refs[" + _index2 + "]",
|
|
13745
|
+
expected: "__type",
|
|
13746
|
+
value: elem
|
|
13747
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
13748
|
+
path: _path + ".refs",
|
|
13749
|
+
expected: "(Array<__type> | undefined)",
|
|
13750
|
+
value: input.refs
|
|
13751
|
+
})].every(flag => flag); const _vo1 = (input, _path, _exceptionable = true) => ["string" === typeof input.mixin || _report(_exceptionable, {
|
|
13752
|
+
path: _path + ".mixin",
|
|
13753
|
+
expected: "string",
|
|
13754
|
+
value: input.mixin
|
|
13755
|
+
}), undefined === input.asset || "string" === typeof input.asset || _report(_exceptionable, {
|
|
13756
|
+
path: _path + ".asset",
|
|
13757
|
+
expected: "(string | undefined)",
|
|
13758
|
+
value: input.asset
|
|
13439
13759
|
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
|
|
13440
13760
|
if (false === __is(input)) {
|
|
13441
13761
|
errors = [];
|
|
@@ -14186,25 +14506,25 @@ function _validateDomainRecord(domain, input) {
|
|
|
14186
14506
|
}; })()(input);
|
|
14187
14507
|
}
|
|
14188
14508
|
case ":search": {
|
|
14189
|
-
return (() => { const _io0 = input => (undefined === input.type || "conditions_and" === input.type) && (undefined === input.sort || Array.isArray(input.sort) && input.sort.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io1(elem))) && (undefined === input.showDefault || "boolean" === typeof input.showDefault) && (undefined === input.showDeleted || "boolean" === typeof input.showDeleted) && (undefined === input.showHidden || "boolean" === typeof input.showHidden) && (undefined === input.view || "GRID_VIEW" === input.view || "LIST_VIEW" === input.view || "CALENDAR_VIEW" === input.view || "MAP_VIEW" === input.view || "AGENDA_VIEW" === input.view || "RESOURCE_VIEW" === input.view) && (undefined === input.conditions || Array.isArray(input.conditions)) && (null === input.visibleColumnKeys || undefined === input.visibleColumnKeys || Array.isArray(input.visibleColumnKeys) && input.visibleColumnKeys.every(elem => "string" === typeof elem)) && (null === input.connectionId || undefined === input.connectionId || "string" === typeof input.connectionId); const _io1 = input => Object.keys(input).every(key => {
|
|
14509
|
+
return (() => { const _io0 = input => (undefined === input.type || "conditions_and" === input.type || "conditions_or" === input.type) && (undefined === input.sort || Array.isArray(input.sort) && input.sort.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io1(elem))) && (undefined === input.showDefault || "boolean" === typeof input.showDefault) && (undefined === input.showDeleted || "boolean" === typeof input.showDeleted) && (undefined === input.showHidden || "boolean" === typeof input.showHidden) && (null === input.view || undefined === input.view || "GRID_VIEW" === input.view || "LIST_VIEW" === input.view || "CALENDAR_VIEW" === input.view || "MAP_VIEW" === input.view || "AGENDA_VIEW" === input.view || "RESOURCE_VIEW" === input.view) && (undefined === input.conditions || Array.isArray(input.conditions) && input.conditions.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io2(elem))) && (null === input.visibleColumnKeys || undefined === input.visibleColumnKeys || Array.isArray(input.visibleColumnKeys) && input.visibleColumnKeys.every(elem => "string" === typeof elem)) && (null === input.connectionId || undefined === input.connectionId || "string" === typeof input.connectionId) && (undefined === input.calendar || "object" === typeof input.calendar && null !== input.calendar && false === Array.isArray(input.calendar) && _io3(input.calendar)) && (undefined === input.refreshInterval || "number" === typeof input.refreshInterval) && (undefined === input.color || "string" === typeof input.color) && (undefined === input.icon || "string" === typeof input.icon); const _io1 = input => Object.keys(input).every(key => {
|
|
14190
14510
|
const value = input[key];
|
|
14191
14511
|
if (undefined === value)
|
|
14192
14512
|
return true;
|
|
14193
14513
|
return "asc" === value || "desc" === value;
|
|
14194
|
-
}); const _vo0 = (input, _path, _exceptionable = true) => [undefined === input.type || "conditions_and" === input.type || _report(_exceptionable, {
|
|
14514
|
+
}); const _io2 = input => (undefined === input.field || "string" === typeof input.field) && (undefined === input.type || "string" === typeof input.type) && (undefined === input.op || "string" === typeof input.op) && true; const _io3 = input => (null === input.view || undefined === input.view || "day" === input.view || "week" === input.view || "month" === input.view || "work_week" === input.view) && (null === input.dateAccessor || undefined === input.dateAccessor || "string" === typeof input.dateAccessor) && (undefined === input.agenda || "boolean" === typeof input.agenda); const _vo0 = (input, _path, _exceptionable = true) => [undefined === input.type || "conditions_and" === input.type || "conditions_or" === input.type || _report(_exceptionable, {
|
|
14195
14515
|
path: _path + ".type",
|
|
14196
|
-
expected: "(\"conditions_and\" | undefined)",
|
|
14516
|
+
expected: "(\"conditions_and\" | \"conditions_or\" | undefined)",
|
|
14197
14517
|
value: input.type
|
|
14198
14518
|
}), undefined === input.sort || (Array.isArray(input.sort) || _report(_exceptionable, {
|
|
14199
14519
|
path: _path + ".sort",
|
|
14200
14520
|
expected: "(Array<__type> | undefined)",
|
|
14201
14521
|
value: input.sort
|
|
14202
|
-
})) && input.sort.map((elem,
|
|
14203
|
-
path: _path + ".sort[" +
|
|
14522
|
+
})) && input.sort.map((elem, _index4) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || _report(_exceptionable, {
|
|
14523
|
+
path: _path + ".sort[" + _index4 + "]",
|
|
14204
14524
|
expected: "__type",
|
|
14205
14525
|
value: elem
|
|
14206
|
-
})) && _vo1(elem, _path + ".sort[" +
|
|
14207
|
-
path: _path + ".sort[" +
|
|
14526
|
+
})) && _vo1(elem, _path + ".sort[" + _index4 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
14527
|
+
path: _path + ".sort[" + _index4 + "]",
|
|
14208
14528
|
expected: "__type",
|
|
14209
14529
|
value: elem
|
|
14210
14530
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -14223,20 +14543,32 @@ function _validateDomainRecord(domain, input) {
|
|
|
14223
14543
|
path: _path + ".showHidden",
|
|
14224
14544
|
expected: "(boolean | undefined)",
|
|
14225
14545
|
value: input.showHidden
|
|
14226
|
-
}), undefined === input.view || "GRID_VIEW" === input.view || "LIST_VIEW" === input.view || "CALENDAR_VIEW" === input.view || "MAP_VIEW" === input.view || "AGENDA_VIEW" === input.view || "RESOURCE_VIEW" === input.view || _report(_exceptionable, {
|
|
14546
|
+
}), null === input.view || undefined === input.view || "GRID_VIEW" === input.view || "LIST_VIEW" === input.view || "CALENDAR_VIEW" === input.view || "MAP_VIEW" === input.view || "AGENDA_VIEW" === input.view || "RESOURCE_VIEW" === input.view || _report(_exceptionable, {
|
|
14227
14547
|
path: _path + ".view",
|
|
14228
|
-
expected: "(\"AGENDA_VIEW\" | \"CALENDAR_VIEW\" | \"GRID_VIEW\" | \"LIST_VIEW\" | \"MAP_VIEW\" | \"RESOURCE_VIEW\" | undefined)",
|
|
14548
|
+
expected: "(\"AGENDA_VIEW\" | \"CALENDAR_VIEW\" | \"GRID_VIEW\" | \"LIST_VIEW\" | \"MAP_VIEW\" | \"RESOURCE_VIEW\" | null | undefined)",
|
|
14229
14549
|
value: input.view
|
|
14230
|
-
}), undefined === input.conditions || Array.isArray(input.conditions) || _report(_exceptionable, {
|
|
14550
|
+
}), undefined === input.conditions || (Array.isArray(input.conditions) || _report(_exceptionable, {
|
|
14231
14551
|
path: _path + ".conditions",
|
|
14232
|
-
expected: "(Array<
|
|
14552
|
+
expected: "(Array<SearchCondition> | undefined)",
|
|
14553
|
+
value: input.conditions
|
|
14554
|
+
})) && input.conditions.map((elem, _index5) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || _report(_exceptionable, {
|
|
14555
|
+
path: _path + ".conditions[" + _index5 + "]",
|
|
14556
|
+
expected: "SearchCondition",
|
|
14557
|
+
value: elem
|
|
14558
|
+
})) && _vo2(elem, _path + ".conditions[" + _index5 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
14559
|
+
path: _path + ".conditions[" + _index5 + "]",
|
|
14560
|
+
expected: "SearchCondition",
|
|
14561
|
+
value: elem
|
|
14562
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
14563
|
+
path: _path + ".conditions",
|
|
14564
|
+
expected: "(Array<SearchCondition> | undefined)",
|
|
14233
14565
|
value: input.conditions
|
|
14234
14566
|
}), null === input.visibleColumnKeys || undefined === input.visibleColumnKeys || (Array.isArray(input.visibleColumnKeys) || _report(_exceptionable, {
|
|
14235
14567
|
path: _path + ".visibleColumnKeys",
|
|
14236
14568
|
expected: "(Array<string> | null | undefined)",
|
|
14237
14569
|
value: input.visibleColumnKeys
|
|
14238
|
-
})) && input.visibleColumnKeys.map((elem,
|
|
14239
|
-
path: _path + ".visibleColumnKeys[" +
|
|
14570
|
+
})) && input.visibleColumnKeys.map((elem, _index6) => "string" === typeof elem || _report(_exceptionable, {
|
|
14571
|
+
path: _path + ".visibleColumnKeys[" + _index6 + "]",
|
|
14240
14572
|
expected: "string",
|
|
14241
14573
|
value: elem
|
|
14242
14574
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -14247,6 +14579,26 @@ function _validateDomainRecord(domain, input) {
|
|
|
14247
14579
|
path: _path + ".connectionId",
|
|
14248
14580
|
expected: "(null | string | undefined)",
|
|
14249
14581
|
value: input.connectionId
|
|
14582
|
+
}), undefined === input.calendar || ("object" === typeof input.calendar && null !== input.calendar && false === Array.isArray(input.calendar) || _report(_exceptionable, {
|
|
14583
|
+
path: _path + ".calendar",
|
|
14584
|
+
expected: "(__type.o1 | undefined)",
|
|
14585
|
+
value: input.calendar
|
|
14586
|
+
})) && _vo3(input.calendar, _path + ".calendar", true && _exceptionable) || _report(_exceptionable, {
|
|
14587
|
+
path: _path + ".calendar",
|
|
14588
|
+
expected: "(__type.o1 | undefined)",
|
|
14589
|
+
value: input.calendar
|
|
14590
|
+
}), undefined === input.refreshInterval || "number" === typeof input.refreshInterval || _report(_exceptionable, {
|
|
14591
|
+
path: _path + ".refreshInterval",
|
|
14592
|
+
expected: "(number | undefined)",
|
|
14593
|
+
value: input.refreshInterval
|
|
14594
|
+
}), undefined === input.color || "string" === typeof input.color || _report(_exceptionable, {
|
|
14595
|
+
path: _path + ".color",
|
|
14596
|
+
expected: "(string | undefined)",
|
|
14597
|
+
value: input.color
|
|
14598
|
+
}), undefined === input.icon || "string" === typeof input.icon || _report(_exceptionable, {
|
|
14599
|
+
path: _path + ".icon",
|
|
14600
|
+
expected: "(string | undefined)",
|
|
14601
|
+
value: input.icon
|
|
14250
14602
|
})].every(flag => flag); const _vo1 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
14251
14603
|
const value = input[key];
|
|
14252
14604
|
if (undefined === value)
|
|
@@ -14256,7 +14608,31 @@ function _validateDomainRecord(domain, input) {
|
|
|
14256
14608
|
expected: "(\"asc\" | \"desc\")",
|
|
14257
14609
|
value: value
|
|
14258
14610
|
});
|
|
14259
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
14611
|
+
}).every(flag => flag)].every(flag => flag); const _vo2 = (input, _path, _exceptionable = true) => [undefined === input.field || "string" === typeof input.field || _report(_exceptionable, {
|
|
14612
|
+
path: _path + ".field",
|
|
14613
|
+
expected: "(string | undefined)",
|
|
14614
|
+
value: input.field
|
|
14615
|
+
}), undefined === input.type || "string" === typeof input.type || _report(_exceptionable, {
|
|
14616
|
+
path: _path + ".type",
|
|
14617
|
+
expected: "(string | undefined)",
|
|
14618
|
+
value: input.type
|
|
14619
|
+
}), undefined === input.op || "string" === typeof input.op || _report(_exceptionable, {
|
|
14620
|
+
path: _path + ".op",
|
|
14621
|
+
expected: "(string | undefined)",
|
|
14622
|
+
value: input.op
|
|
14623
|
+
}), true].every(flag => flag); const _vo3 = (input, _path, _exceptionable = true) => [null === input.view || undefined === input.view || "day" === input.view || "week" === input.view || "month" === input.view || "work_week" === input.view || _report(_exceptionable, {
|
|
14624
|
+
path: _path + ".view",
|
|
14625
|
+
expected: "(\"day\" | \"month\" | \"week\" | \"work_week\" | null | undefined)",
|
|
14626
|
+
value: input.view
|
|
14627
|
+
}), null === input.dateAccessor || undefined === input.dateAccessor || "string" === typeof input.dateAccessor || _report(_exceptionable, {
|
|
14628
|
+
path: _path + ".dateAccessor",
|
|
14629
|
+
expected: "(null | string | undefined)",
|
|
14630
|
+
value: input.dateAccessor
|
|
14631
|
+
}), undefined === input.agenda || "boolean" === typeof input.agenda || _report(_exceptionable, {
|
|
14632
|
+
path: _path + ".agenda",
|
|
14633
|
+
expected: "(boolean | undefined)",
|
|
14634
|
+
value: input.agenda
|
|
14635
|
+
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let errors; let _report; return input => {
|
|
14260
14636
|
if (false === __is(input)) {
|
|
14261
14637
|
errors = [];
|
|
14262
14638
|
_report = __typia_transform__validateReport._validateReport(errors);
|
|
@@ -14286,9 +14662,9 @@ function _validateDomainRecord(domain, input) {
|
|
|
14286
14662
|
}; })()(input);
|
|
14287
14663
|
}
|
|
14288
14664
|
case ":search?": {
|
|
14289
|
-
return (() => { const _io0 = input => Array.isArray(input.hits) && input.hits.every(elem => "string" === typeof elem) && (undefined === input.total || "number" === typeof input.total) && (undefined === input.relation || "string" === typeof input.relation) && (undefined === input.error || "string" === typeof input.error); const _vo0 = (input, _path, _exceptionable = true) => [(Array.isArray(input.hits) || _report(_exceptionable, {
|
|
14665
|
+
return (() => { const _io0 = input => (undefined === input.hits || Array.isArray(input.hits) && input.hits.every(elem => "string" === typeof elem)) && (undefined === input.total || "number" === typeof input.total) && (undefined === input.relation || "string" === typeof input.relation) && (undefined === input.error || "string" === typeof input.error); const _vo0 = (input, _path, _exceptionable = true) => [undefined === input.hits || (Array.isArray(input.hits) || _report(_exceptionable, {
|
|
14290
14666
|
path: _path + ".hits",
|
|
14291
|
-
expected: "Array<string>",
|
|
14667
|
+
expected: "(Array<string> | undefined)",
|
|
14292
14668
|
value: input.hits
|
|
14293
14669
|
})) && input.hits.map((elem, _index2) => "string" === typeof elem || _report(_exceptionable, {
|
|
14294
14670
|
path: _path + ".hits[" + _index2 + "]",
|
|
@@ -14296,7 +14672,7 @@ function _validateDomainRecord(domain, input) {
|
|
|
14296
14672
|
value: elem
|
|
14297
14673
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
14298
14674
|
path: _path + ".hits",
|
|
14299
|
-
expected: "Array<string>",
|
|
14675
|
+
expected: "(Array<string> | undefined)",
|
|
14300
14676
|
value: input.hits
|
|
14301
14677
|
}), undefined === input.total || "number" === typeof input.total || _report(_exceptionable, {
|
|
14302
14678
|
path: _path + ".total",
|
|
@@ -14310,11 +14686,11 @@ function _validateDomainRecord(domain, input) {
|
|
|
14310
14686
|
path: _path + ".error",
|
|
14311
14687
|
expected: "(string | undefined)",
|
|
14312
14688
|
value: input.error
|
|
14313
|
-
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && _io0(input); let errors; let _report; return input => {
|
|
14689
|
+
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let errors; let _report; return input => {
|
|
14314
14690
|
if (false === __is(input)) {
|
|
14315
14691
|
errors = [];
|
|
14316
14692
|
_report = __typia_transform__validateReport._validateReport(errors);
|
|
14317
|
-
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || _report(true, {
|
|
14693
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || _report(true, {
|
|
14318
14694
|
path: _path + "",
|
|
14319
14695
|
expected: "SearchRecordProvided",
|
|
14320
14696
|
value: input
|
|
@@ -14339,85 +14715,169 @@ function _validateDomainRecord(domain, input) {
|
|
|
14339
14715
|
};
|
|
14340
14716
|
}; })()(input);
|
|
14341
14717
|
}
|
|
14718
|
+
case ":search.conditions": {
|
|
14719
|
+
return (() => { const _io0 = input => undefined === input.value || Array.isArray(input.value) && input.value.every(elem => "string" === typeof elem); const _vo0 = (input, _path, _exceptionable = true) => [undefined === input.value || (Array.isArray(input.value) || _report(_exceptionable, {
|
|
14720
|
+
path: _path + ".value",
|
|
14721
|
+
expected: "(Array<string> | undefined)",
|
|
14722
|
+
value: input.value
|
|
14723
|
+
})) && input.value.map((elem, _index2) => "string" === typeof elem || _report(_exceptionable, {
|
|
14724
|
+
path: _path + ".value[" + _index2 + "]",
|
|
14725
|
+
expected: "string",
|
|
14726
|
+
value: elem
|
|
14727
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
14728
|
+
path: _path + ".value",
|
|
14729
|
+
expected: "(Array<string> | undefined)",
|
|
14730
|
+
value: input.value
|
|
14731
|
+
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let errors; let _report; return input => {
|
|
14732
|
+
if (false === __is(input)) {
|
|
14733
|
+
errors = [];
|
|
14734
|
+
_report = __typia_transform__validateReport._validateReport(errors);
|
|
14735
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || _report(true, {
|
|
14736
|
+
path: _path + "",
|
|
14737
|
+
expected: "SearchDomainConditionsRecord",
|
|
14738
|
+
value: input
|
|
14739
|
+
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
14740
|
+
path: _path + "",
|
|
14741
|
+
expected: "SearchDomainConditionsRecord",
|
|
14742
|
+
value: input
|
|
14743
|
+
}))(input, "$input", true);
|
|
14744
|
+
const success = 0 === errors.length;
|
|
14745
|
+
return success ? {
|
|
14746
|
+
success,
|
|
14747
|
+
data: input
|
|
14748
|
+
} : {
|
|
14749
|
+
success,
|
|
14750
|
+
errors,
|
|
14751
|
+
data: input
|
|
14752
|
+
};
|
|
14753
|
+
}
|
|
14754
|
+
return {
|
|
14755
|
+
success: true,
|
|
14756
|
+
data: input
|
|
14757
|
+
};
|
|
14758
|
+
}; })()(input);
|
|
14759
|
+
}
|
|
14760
|
+
case ":search.visibleColumnKeys": {
|
|
14761
|
+
return (() => { const _io0 = input => undefined === input.value || Array.isArray(input.value) && input.value.every(elem => "string" === typeof elem); const _vo0 = (input, _path, _exceptionable = true) => [undefined === input.value || (Array.isArray(input.value) || _report(_exceptionable, {
|
|
14762
|
+
path: _path + ".value",
|
|
14763
|
+
expected: "(Array<string> | undefined)",
|
|
14764
|
+
value: input.value
|
|
14765
|
+
})) && input.value.map((elem, _index2) => "string" === typeof elem || _report(_exceptionable, {
|
|
14766
|
+
path: _path + ".value[" + _index2 + "]",
|
|
14767
|
+
expected: "string",
|
|
14768
|
+
value: elem
|
|
14769
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
14770
|
+
path: _path + ".value",
|
|
14771
|
+
expected: "(Array<string> | undefined)",
|
|
14772
|
+
value: input.value
|
|
14773
|
+
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let errors; let _report; return input => {
|
|
14774
|
+
if (false === __is(input)) {
|
|
14775
|
+
errors = [];
|
|
14776
|
+
_report = __typia_transform__validateReport._validateReport(errors);
|
|
14777
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || _report(true, {
|
|
14778
|
+
path: _path + "",
|
|
14779
|
+
expected: "SearchDomainVisibleColumnKeysRecord",
|
|
14780
|
+
value: input
|
|
14781
|
+
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
14782
|
+
path: _path + "",
|
|
14783
|
+
expected: "SearchDomainVisibleColumnKeysRecord",
|
|
14784
|
+
value: input
|
|
14785
|
+
}))(input, "$input", true);
|
|
14786
|
+
const success = 0 === errors.length;
|
|
14787
|
+
return success ? {
|
|
14788
|
+
success,
|
|
14789
|
+
data: input
|
|
14790
|
+
} : {
|
|
14791
|
+
success,
|
|
14792
|
+
errors,
|
|
14793
|
+
data: input
|
|
14794
|
+
};
|
|
14795
|
+
}
|
|
14796
|
+
return {
|
|
14797
|
+
success: true,
|
|
14798
|
+
data: input
|
|
14799
|
+
};
|
|
14800
|
+
}; })()(input);
|
|
14801
|
+
}
|
|
14342
14802
|
case ":settings": {
|
|
14343
|
-
return (() => { const
|
|
14803
|
+
return (() => { const _iv22 = new Set(["name", "fontname", "fontsize", "primaryColour", "secondaryColour", "outlineColour", "backColour", "bold", "italic", "underline", "strikeOut", "scaleX", "scaleY", "spacing", "angle", "borderStyle", "outline", "shadow", "alignment", "marginL", "marginR", "marginV", "encoding"]); const _iv26 = new Set(["default", "manual", "az", "za", "newest", "oldest", "mostrecent", "leastrecent", "earliestdeadline", "latestdeadline"]); const _vv54 = new Set(["name", "fontname", "fontsize", "primaryColour", "secondaryColour", "outlineColour", "backColour", "bold", "italic", "underline", "strikeOut", "scaleX", "scaleY", "spacing", "angle", "borderStyle", "outline", "shadow", "alignment", "marginL", "marginR", "marginV", "encoding"]); const _vv58 = new Set(["default", "manual", "az", "za", "newest", "oldest", "mostrecent", "leastrecent", "earliestdeadline", "latestdeadline"]); const _io0 = input => (undefined === input.autoLogoutTime || "number" === typeof input.autoLogoutTime) && (undefined === input.permission || "object" === typeof input.permission && null !== input.permission && false === Array.isArray(input.permission) && _io1(input.permission)) && (undefined === input["module"] || "object" === typeof input["module"] && null !== input["module"] && false === Array.isArray(input["module"]) && _io2(input["module"])) && (undefined === input.upload || "object" === typeof input.upload && null !== input.upload && false === Array.isArray(input.upload) && _io6(input.upload)) && (undefined === input.download || "object" === typeof input.download && null !== input.download && false === Array.isArray(input.download) && _io7(input.download)) && (undefined === input.browser || "object" === typeof input.browser && null !== input.browser && false === Array.isArray(input.browser) && _io8(input.browser)) && (undefined === input.toolbarTags || "object" === typeof input.toolbarTags && null !== input.toolbarTags && false === Array.isArray(input.toolbarTags) && _io12(input.toolbarTags)) && (undefined === input.exclusiveTagGroups || Array.isArray(input.exclusiveTagGroups) && input.exclusiveTagGroups.every(elem => Array.isArray(elem) && elem.every(elem => "string" === typeof elem))) && (undefined === input.deadlines || "object" === typeof input.deadlines && null !== input.deadlines && false === Array.isArray(input.deadlines) && _io13(input.deadlines)) && (undefined === input.assignees || "object" === typeof input.assignees && null !== input.assignees && false === Array.isArray(input.assignees) && _io14(input.assignees)) && (undefined === input.comments || "object" === typeof input.comments && null !== input.comments && false === Array.isArray(input.comments) && _io15(input.comments)) && (undefined === input.clock || "object" === typeof input.clock && null !== input.clock && false === Array.isArray(input.clock) && _io16(input.clock)) && (undefined === input.swarm || "object" === typeof input.swarm && null !== input.swarm && false === Array.isArray(input.swarm) && _io17(input.swarm)) && (undefined === input.dashboard || "object" === typeof input.dashboard && null !== input.dashboard && false === Array.isArray(input.dashboard) && _io18(input.dashboard)) && (undefined === input.script || "object" === typeof input.script && null !== input.script && false === Array.isArray(input.script) && _io20(input.script)) && (undefined === input.events || "object" === typeof input.events && null !== input.events && false === Array.isArray(input.events) && _io25(input.events)) && (undefined === input.rundown || "object" === typeof input.rundown && null !== input.rundown && false === Array.isArray(input.rundown) && _io28(input.rundown)) && (undefined === input.gallery || "object" === typeof input.gallery && null !== input.gallery && false === Array.isArray(input.gallery) && _io29(input.gallery)) && (undefined === input.history || "boolean" === typeof input.history) && (undefined === input.keymap || "object" === typeof input.keymap && null !== input.keymap && false === Array.isArray(input.keymap) && _io30(input.keymap)) && (undefined === input.media || "object" === typeof input.media && null !== input.media && false === Array.isArray(input.media) && _io43(input.media)) && (undefined === input.edit || "object" === typeof input.edit && null !== input.edit && false === Array.isArray(input.edit) && _io56(input.edit)) && (undefined === input.commands || Array.isArray(input.commands) && input.commands.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io58(elem))) && (undefined === input.predefinedTags || Array.isArray(input.predefinedTags) && input.predefinedTags.every(elem => "string" === typeof elem)) && (undefined === input.storyboard || "object" === typeof input.storyboard && null !== input.storyboard && false === Array.isArray(input.storyboard) && _io59(input.storyboard)) && (undefined === input.print || "object" === typeof input.print && null !== input.print && false === Array.isArray(input.print) && _io68(input.print)) && (undefined === input.hiddenPreviews || Array.isArray(input.hiddenPreviews) && input.hiddenPreviews.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io69(elem))) && (undefined === input.plugins || "object" === typeof input.plugins && null !== input.plugins && false === Array.isArray(input.plugins) && _io70(input.plugins)) && (undefined === input.crashScreen || "boolean" === typeof input.crashScreen) && (undefined === input.debug || "boolean" === typeof input.debug) && (undefined === input.featurePreview || "object" === typeof input.featurePreview && null !== input.featurePreview && false === Array.isArray(input.featurePreview) && _io73(input.featurePreview)) && (undefined === input.flags || "object" === typeof input.flags && null !== input.flags && false === Array.isArray(input.flags) && _io74(input.flags)) && (undefined === input.notifications || "object" === typeof input.notifications && null !== input.notifications && false === Array.isArray(input.notifications) && _io75(input.notifications)) && (undefined === input.suppressDeleteAlert || "boolean" === typeof input.suppressDeleteAlert) && (undefined === input.clone || "object" === typeof input.clone && null !== input.clone && false === Array.isArray(input.clone) && _io78(input.clone)) && (undefined === input.utilsAssetEditorPanel || "object" === typeof input.utilsAssetEditorPanel && null !== input.utilsAssetEditorPanel && false === Array.isArray(input.utilsAssetEditorPanel) && _io80(input.utilsAssetEditorPanel)); const _io1 = input => (undefined === input.overrideUserContact || "boolean" === typeof input.overrideUserContact) && (undefined === input.overrideUserLogin || "boolean" === typeof input.overrideUserLogin); const _io2 = input => (undefined === input.editor || "string" === typeof input.editor) && (undefined === input.tabs || "object" === typeof input.tabs && null !== input.tabs && false === Array.isArray(input.tabs) && _io3(input.tabs)); const _io3 = input => (undefined === input.settingsPanelStore || "object" === typeof input.settingsPanelStore && null !== input.settingsPanelStore && false === Array.isArray(input.settingsPanelStore) && _io4(input.settingsPanelStore)) && Object.keys(input).every(key => {
|
|
14344
14804
|
if (["settingsPanelStore"].some(prop => key === prop))
|
|
14345
14805
|
return true;
|
|
14346
14806
|
const value = input[key];
|
|
14347
14807
|
if (undefined === value)
|
|
14348
14808
|
return true;
|
|
14349
14809
|
return undefined === value || "object" === typeof value && null !== value && false === Array.isArray(value) && _io5(value);
|
|
14350
|
-
}); const _io4 = input => (undefined === input.activeSectionIndex || "number" === typeof input.activeSectionIndex) && (undefined === input.activeTab || "string" === typeof input.activeTab); const _io5 = input => undefined === input.activeTab || "string" === typeof input.activeTab; const _io6 = input => (undefined === input.defaultGrouping || "" === input.defaultGrouping || "collection" === input.defaultGrouping || "stitch" === input.defaultGrouping) && (undefined === input.hideStoryboardCollection || "boolean" === typeof input.hideStoryboardCollection) && (undefined === input.displayUploadFilesDialog || "always" === input.displayUploadFilesDialog || "never" === input.displayUploadFilesDialog || "ifMultipleFiles" === input.displayUploadFilesDialog); const _io7 = input => (undefined === input.displaySaveDialog || "boolean" === typeof input.displaySaveDialog) && (undefined === input.batchDownloadDialogMode || "file" === input.batchDownloadDialogMode || "directory" === input.batchDownloadDialogMode); const _io8 = input => (undefined === input.map || "object" === typeof input.map && null !== input.map && false === Array.isArray(input.map) && _io9(input.map)) && (undefined === input.createMenu || "object" === typeof input.createMenu && null !== input.createMenu && false === Array.isArray(input.createMenu) && _io11(input.createMenu)); const _io9 = input => (undefined === input.clustering || "boolean" === typeof input.clustering) && (undefined === input.zoom || "number" === typeof input.zoom) && (undefined === input.center || "object" === typeof input.center && null !== input.center && false === Array.isArray(input.center) && _io10(input.center)); const _io10 = input => (undefined === input.lat || "number" === typeof input.lat) && (undefined === input.lon || "number" === typeof input.lon); const _io11 = input => undefined === input.sortOrder || Array.isArray(input.sortOrder) && input.sortOrder.every(elem => "string" === typeof elem); const _io12 = input => undefined === input.exclude || Array.isArray(input.exclude) && input.exclude.every(elem => "string" === typeof elem); const _io13 = input => (undefined === input.include || Array.isArray(input.include) && input.include.every(elem => "string" === typeof elem)) && (undefined === input.exclude || Array.isArray(input.exclude) && input.exclude.every(elem => "string" === typeof elem)); const _io14 = input => (undefined === input.include || Array.isArray(input.include) && input.include.every(elem => "string" === typeof elem)) && (undefined === input.exclude || Array.isArray(input.exclude) && input.exclude.every(elem => "string" === typeof elem)); const _io15 = input => (undefined === input.include || Array.isArray(input.include) && input.include.every(elem => "string" === typeof elem)) && (undefined === input.exclude || Array.isArray(input.exclude) && input.exclude.every(elem => "string" === typeof elem)); const _io16 = input => (undefined === input.enable || "boolean" === typeof input.enable) && (undefined === input.show24Hours || "boolean" === typeof input.show24Hours) && (undefined === input.showAmPm || "boolean" === typeof input.showAmPm) && (undefined === input.showSeconds || "boolean" === typeof input.showSeconds) && (undefined === input.showDayOfWeek || "boolean" === typeof input.showDayOfWeek) && (undefined === input.showDate || "boolean" === typeof input.showDate) && (undefined === input.format || "string" === typeof input.format); const _io17 = input => (undefined === input.color || "string" === typeof input.color) && (undefined === input.name || "string" === typeof input.name); const _io18 = input => (undefined === input.maxMru || "number" === typeof input.maxMru) && (undefined === input.maxTabs || "number" === typeof input.maxTabs); const _io19 = input => (undefined === input.createMenu || "object" === typeof input.createMenu && null !== input.createMenu && false === Array.isArray(input.createMenu) &&
|
|
14810
|
+
}); const _io4 = input => (undefined === input.activeSectionIndex || "number" === typeof input.activeSectionIndex) && (null === input.activeTab || undefined === input.activeTab || "string" === typeof input.activeTab) && (undefined === input.priority || "number" === typeof input.priority); const _io5 = input => (null === input.activeTab || undefined === input.activeTab || "string" === typeof input.activeTab) && (undefined === input.priority || "number" === typeof input.priority); const _io6 = input => (undefined === input.defaultGrouping || "" === input.defaultGrouping || "collection" === input.defaultGrouping || "stitch" === input.defaultGrouping) && (undefined === input.hideStoryboardCollection || "boolean" === typeof input.hideStoryboardCollection) && (undefined === input.displayUploadFilesDialog || "always" === input.displayUploadFilesDialog || "never" === input.displayUploadFilesDialog || "ifMultipleFiles" === input.displayUploadFilesDialog); const _io7 = input => (undefined === input.displaySaveDialog || "boolean" === typeof input.displaySaveDialog) && (undefined === input.batchDownloadDialogMode || "file" === input.batchDownloadDialogMode || "directory" === input.batchDownloadDialogMode); const _io8 = input => (undefined === input.map || "object" === typeof input.map && null !== input.map && false === Array.isArray(input.map) && _io9(input.map)) && (undefined === input.createMenu || "object" === typeof input.createMenu && null !== input.createMenu && false === Array.isArray(input.createMenu) && _io11(input.createMenu)); const _io9 = input => (undefined === input.clustering || "boolean" === typeof input.clustering) && (undefined === input.zoom || "number" === typeof input.zoom) && (undefined === input.center || "object" === typeof input.center && null !== input.center && false === Array.isArray(input.center) && _io10(input.center)); const _io10 = input => (undefined === input.lat || "number" === typeof input.lat) && (undefined === input.lon || "number" === typeof input.lon); const _io11 = input => undefined === input.sortOrder || Array.isArray(input.sortOrder) && input.sortOrder.every(elem => "string" === typeof elem); const _io12 = input => (undefined === input.include || Array.isArray(input.include) && input.include.every(elem => "string" === typeof elem)) && (undefined === input.exclude || Array.isArray(input.exclude) && input.exclude.every(elem => "string" === typeof elem)); const _io13 = input => (undefined === input.include || Array.isArray(input.include) && input.include.every(elem => "string" === typeof elem)) && (undefined === input.exclude || Array.isArray(input.exclude) && input.exclude.every(elem => "string" === typeof elem)); const _io14 = input => (undefined === input.include || Array.isArray(input.include) && input.include.every(elem => "string" === typeof elem)) && (undefined === input.exclude || Array.isArray(input.exclude) && input.exclude.every(elem => "string" === typeof elem)); const _io15 = input => (undefined === input.include || Array.isArray(input.include) && input.include.every(elem => "string" === typeof elem)) && (undefined === input.exclude || Array.isArray(input.exclude) && input.exclude.every(elem => "string" === typeof elem)); const _io16 = input => (undefined === input.enable || "boolean" === typeof input.enable) && (undefined === input.show24Hours || "boolean" === typeof input.show24Hours) && (undefined === input.showAmPm || "boolean" === typeof input.showAmPm) && (undefined === input.showSeconds || "boolean" === typeof input.showSeconds) && (undefined === input.showDayOfWeek || "boolean" === typeof input.showDayOfWeek) && (undefined === input.showDate || "boolean" === typeof input.showDate) && (undefined === input.format || "string" === typeof input.format); const _io17 = input => (undefined === input.color || "string" === typeof input.color) && (undefined === input.name || "string" === typeof input.name); const _io18 = input => (undefined === input.maxMru || "number" === typeof input.maxMru) && (undefined === input.maxTabs || "number" === typeof input.maxTabs) && (undefined === input.layout || "object" === typeof input.layout && null !== input.layout && false === Array.isArray(input.layout) && _io19(input.layout)); const _io19 = input => (undefined === input.bookmarks || "number" === typeof input.bookmarks) && (undefined === input.browser || "number" === typeof input.browser); const _io20 = input => (undefined === input.createMenu || "object" === typeof input.createMenu && null !== input.createMenu && false === Array.isArray(input.createMenu) && _io21(input.createMenu)) && (undefined === input.colorTags || Array.isArray(input.colorTags) && input.colorTags.every(elem => "object" === typeof elem && null !== elem && _io22(elem))) && (undefined === input.readType || "characters" === input.readType || "words" === input.readType || "wordsPerMinute" === input.readType) && (undefined === input.readRate || "number" === typeof input.readRate) && (undefined === input.collapsedNodes || "object" === typeof input.collapsedNodes && null !== input.collapsedNodes && false === Array.isArray(input.collapsedNodes) && _io23(input.collapsedNodes)); const _io21 = input => (undefined === input.sortBy || "index" === input.sortBy || "title" === input.sortBy) && (undefined === input.showPreview || "boolean" === typeof input.showPreview); const _io22 = input => (null === input.name || "string" === typeof input.name) && (null === input.icon || "string" === typeof input.icon) && (null === input.color || "string" === typeof input.color) && (null === input.description || "string" === typeof input.description); const _io23 = input => Object.keys(input).every(key => {
|
|
14351
14811
|
const value = input[key];
|
|
14352
14812
|
if (undefined === value)
|
|
14353
14813
|
return true;
|
|
14354
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
14355
|
-
}); const
|
|
14356
|
-
const value = input[key];
|
|
14357
|
-
if (undefined === value)
|
|
14358
|
-
return true;
|
|
14359
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io26(value);
|
|
14360
|
-
}); const _io26 = input => (undefined === input.event || "string" === typeof input.event) && (undefined === input.property || "string" === typeof input.property); const _io27 = input => undefined === input.eventThumbnails || "boolean" === typeof input.eventThumbnails; const _io28 = input => (undefined === input.dimOnBlur || "boolean" === typeof input.dimOnBlur) && (undefined === input.float || "rundown" === input.float || "gallery" === input.float || "disabled" === input.float); const _io29 = input => (undefined === input.display || "object" === typeof input.display && null !== input.display && false === Array.isArray(input.display) && _io30(input.display)) && (undefined === input.browser || "object" === typeof input.browser && null !== input.browser && false === Array.isArray(input.browser) && _io32(input.browser)) && (undefined === input.gallery || "object" === typeof input.gallery && null !== input.gallery && false === Array.isArray(input.gallery) && _io33(input.gallery)) && (undefined === input.global || "object" === typeof input.global && null !== input.global && false === Array.isArray(input.global) && _io34(input.global)) && (undefined === input.player || "object" === typeof input.player && null !== input.player && false === Array.isArray(input.player) && _io35(input.player)) && (undefined === input.script || "object" === typeof input.script && null !== input.script && false === Array.isArray(input.script) && _io36(input.script)) && (undefined === input.codeEditor || "object" === typeof input.codeEditor && null !== input.codeEditor && false === Array.isArray(input.codeEditor) && _io37(input.codeEditor)) && (undefined === input.bookmarks || "object" === typeof input.bookmarks && null !== input.bookmarks && false === Array.isArray(input.bookmarks) && _io38(input.bookmarks)) && (undefined === input.edit || "object" === typeof input.edit && null !== input.edit && false === Array.isArray(input.edit) && _io39(input.edit)) && (undefined === input.rundown || "object" === typeof input.rundown && null !== input.rundown && false === Array.isArray(input.rundown) && _io40(input.rundown)) && (undefined === input.segment || "object" === typeof input.segment && null !== input.segment && false === Array.isArray(input.segment) && _io41(input.segment)); const _io30 = input => Object.keys(input).every(key => {
|
|
14814
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io24(value);
|
|
14815
|
+
}); const _io24 = input => (undefined === input.preview || "boolean" === typeof input.preview) && (undefined === input.children || "boolean" === typeof input.children); const _io25 = input => (undefined === input.graphicBaseTemplate || "string" === typeof input.graphicBaseTemplate) && (undefined === input.favorites || Array.isArray(input.favorites) && input.favorites.every(elem => "string" === typeof elem)) && (undefined === input.defaults || "object" === typeof input.defaults && null !== input.defaults && false === Array.isArray(input.defaults) && _io26(input.defaults)); const _io26 = input => Object.keys(input).every(key => {
|
|
14361
14816
|
const value = input[key];
|
|
14362
14817
|
if (undefined === value)
|
|
14363
14818
|
return true;
|
|
14364
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
14365
|
-
}); const
|
|
14819
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io27(value);
|
|
14820
|
+
}); const _io27 = input => (undefined === input.event || "string" === typeof input.event) && (undefined === input.property || "string" === typeof input.property); const _io28 = input => undefined === input.eventThumbnails || "boolean" === typeof input.eventThumbnails; const _io29 = input => (undefined === input.dimOnBlur || "boolean" === typeof input.dimOnBlur) && (undefined === input.float || "rundown" === input.float || "gallery" === input.float || "disabled" === input.float) && (undefined === input.countFloatedDuration || "boolean" === typeof input.countFloatedDuration); const _io30 = input => (undefined === input.display || "object" === typeof input.display && null !== input.display && false === Array.isArray(input.display) && _io31(input.display)) && (undefined === input.browser || "object" === typeof input.browser && null !== input.browser && false === Array.isArray(input.browser) && _io33(input.browser)) && (undefined === input.gallery || "object" === typeof input.gallery && null !== input.gallery && false === Array.isArray(input.gallery) && _io34(input.gallery)) && (undefined === input.global || "object" === typeof input.global && null !== input.global && false === Array.isArray(input.global) && _io35(input.global)) && (undefined === input.player || "object" === typeof input.player && null !== input.player && false === Array.isArray(input.player) && _io36(input.player)) && (undefined === input.script || "object" === typeof input.script && null !== input.script && false === Array.isArray(input.script) && _io37(input.script)) && (undefined === input.codeEditor || "object" === typeof input.codeEditor && null !== input.codeEditor && false === Array.isArray(input.codeEditor) && _io38(input.codeEditor)) && (undefined === input.bookmarks || "object" === typeof input.bookmarks && null !== input.bookmarks && false === Array.isArray(input.bookmarks) && _io39(input.bookmarks)) && (undefined === input.edit || "object" === typeof input.edit && null !== input.edit && false === Array.isArray(input.edit) && _io40(input.edit)) && (undefined === input.rundown || "object" === typeof input.rundown && null !== input.rundown && false === Array.isArray(input.rundown) && _io41(input.rundown)) && (undefined === input.segment || "object" === typeof input.segment && null !== input.segment && false === Array.isArray(input.segment) && _io42(input.segment)); const _io31 = input => Object.keys(input).every(key => {
|
|
14366
14821
|
const value = input[key];
|
|
14367
14822
|
if (undefined === value)
|
|
14368
14823
|
return true;
|
|
14369
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
14370
|
-
}); const _io33 = input => Object.keys(input).every(key => {
|
|
14824
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
14825
|
+
}); const _io32 = input => (undefined === input.title || "string" === typeof input.title) && (undefined === input.sequence || "string" === typeof input.sequence); const _io33 = input => Object.keys(input).every(key => {
|
|
14371
14826
|
const value = input[key];
|
|
14372
14827
|
if (undefined === value)
|
|
14373
14828
|
return true;
|
|
14374
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
14829
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
14375
14830
|
}); const _io34 = input => Object.keys(input).every(key => {
|
|
14376
14831
|
const value = input[key];
|
|
14377
14832
|
if (undefined === value)
|
|
14378
14833
|
return true;
|
|
14379
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
14834
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
14380
14835
|
}); const _io35 = input => Object.keys(input).every(key => {
|
|
14381
14836
|
const value = input[key];
|
|
14382
14837
|
if (undefined === value)
|
|
14383
14838
|
return true;
|
|
14384
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
14839
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
14385
14840
|
}); const _io36 = input => Object.keys(input).every(key => {
|
|
14386
14841
|
const value = input[key];
|
|
14387
14842
|
if (undefined === value)
|
|
14388
14843
|
return true;
|
|
14389
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
14844
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
14390
14845
|
}); const _io37 = input => Object.keys(input).every(key => {
|
|
14391
14846
|
const value = input[key];
|
|
14392
14847
|
if (undefined === value)
|
|
14393
14848
|
return true;
|
|
14394
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
14849
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
14395
14850
|
}); const _io38 = input => Object.keys(input).every(key => {
|
|
14396
14851
|
const value = input[key];
|
|
14397
14852
|
if (undefined === value)
|
|
14398
14853
|
return true;
|
|
14399
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
14854
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
14400
14855
|
}); const _io39 = input => Object.keys(input).every(key => {
|
|
14401
14856
|
const value = input[key];
|
|
14402
14857
|
if (undefined === value)
|
|
14403
14858
|
return true;
|
|
14404
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
14859
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
14405
14860
|
}); const _io40 = input => Object.keys(input).every(key => {
|
|
14406
14861
|
const value = input[key];
|
|
14407
14862
|
if (undefined === value)
|
|
14408
14863
|
return true;
|
|
14409
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
14864
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
14410
14865
|
}); const _io41 = input => Object.keys(input).every(key => {
|
|
14411
14866
|
const value = input[key];
|
|
14412
14867
|
if (undefined === value)
|
|
14413
14868
|
return true;
|
|
14414
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
14415
|
-
}); const _io42 = input => (undefined === input.defaultFrameRate || "number" === typeof input.defaultFrameRate) && (undefined === input.placeholder || "string" === typeof input.placeholder) && (undefined === input.guide || "object" === typeof input.guide && null !== input.guide && false === Array.isArray(input.guide) && _io43(input.guide)) && (undefined === input.stepManyFrames || "number" === typeof input.stepManyFrames) && (undefined === input.liveZoomDuration || "number" === typeof input.liveZoomDuration) && (undefined === input.importTitleTemplate || "string" === typeof input.importTitleTemplate) && (undefined === input.tile || "object" === typeof input.tile && null !== input.tile && false === Array.isArray(input.tile) && _io44(input.tile)) && (undefined === input.timecodeReference || "string" === typeof input.timecodeReference) && (undefined === input.maxSubclipDuration || "number" === typeof input.maxSubclipDuration) && (undefined === input.rewindStep || "number" === typeof input.rewindStep) && (undefined === input.forwardStep || "number" === typeof input.forwardStep) && (undefined === input.interlacedPlayback || "string" === typeof input.interlacedPlayback) && (undefined === input.playbackRates || Array.isArray(input.playbackRates) && input.playbackRates.every(elem => "number" === typeof elem)) && (undefined === input.subtitles || "object" === typeof input.subtitles && null !== input.subtitles && false === Array.isArray(input.subtitles) && _io45(input.subtitles)) && (undefined === input.subtitleTemplateId || "string" === typeof input.subtitleTemplateId) && (undefined === input.initialVolume || "string" === typeof input.initialVolume) && (undefined === input.guides || Array.isArray(input.guides) && input.guides.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io48(elem))) && (undefined === input.download || "boolean" === typeof input.download) && (undefined === input.editMode || "object" === typeof input.editMode && null !== input.editMode && false === Array.isArray(input.editMode) && _io49(input.editMode)) && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) && _io50(input.transcribe)) && (null !== input.openCommand && (undefined === input.openCommand || "string" === typeof input.openCommand || "object" === typeof input.openCommand && null !== input.openCommand && false === Array.isArray(input.openCommand) && _io54(input.openCommand))); const _io43 = input => (undefined === input.mask || "boolean" === typeof input.mask) && (undefined === input.actionSafe || "boolean" === typeof input.actionSafe) && (undefined === input.titleSafe || "boolean" === typeof input.titleSafe); const _io44 = input => (undefined === input.preview || "disabled" === input.preview || "play" === input.preview || "seek" === input.preview || "seekplay" === input.preview || "boolean" === typeof input.preview) && (undefined === input.showRenderProgress || "boolean" === typeof input.showRenderProgress); const _io45 = input => (undefined === input.spacing || "number" === typeof input.spacing) && (undefined === input.maxCharactersPerLine || "number" === typeof input.maxCharactersPerLine) && (undefined === input.suggestions || Array.isArray(input.suggestions) && input.suggestions.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io46(elem))) && (undefined === input.colors || Array.isArray(input.colors) && input.colors.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io47(elem))) && (undefined === input.overridableProperties || Array.isArray(input.overridableProperties) && input.overridableProperties.every(elem => null === elem || true === _iv21.has(elem))); const _io46 = input => (null === input.ifAspectRatio || undefined === input.ifAspectRatio || "string" === typeof input.ifAspectRatio) && (null === input.ifLang || undefined === input.ifLang || "string" === typeof input.ifLang) && (null === input.thenStyle || undefined === input.thenStyle || "string" === typeof input.thenStyle) && (null === input.thenMaxCharactersPerLine || undefined === input.thenMaxCharactersPerLine || "number" === typeof input.thenMaxCharactersPerLine); const _io47 = input => (null === input.label || undefined === input.label || "string" === typeof input.label) && (null === input.color || undefined === input.color || "string" === typeof input.color); const _io48 = input => (undefined === input.label || "string" === typeof input.label) && (undefined === input.aspectRatio || "string" === typeof input.aspectRatio); const _io49 = input => (undefined === input.enabled || "boolean" === typeof input.enabled) && (undefined === input.defaultEnterOption || "edit" === input.defaultEnterOption || "createNew" === input.defaultEnterOption || "none" === input.defaultEnterOption) && (undefined === input.defaultExitOption || "none" === input.defaultExitOption || "update" === input.defaultExitOption || "leave" === input.defaultExitOption); const _io50 = input => undefined === input.subtitleDisclaimer || "object" === typeof input.subtitleDisclaimer && null !== input.subtitleDisclaimer && false === Array.isArray(input.subtitleDisclaimer) && _io51(input.subtitleDisclaimer); const _io51 = input => (undefined === input.isUserConfigurable || "boolean" === typeof input.isUserConfigurable) && (undefined === input.defaultValue || "object" === typeof input.defaultValue && null !== input.defaultValue && false === Array.isArray(input.defaultValue) && _io52(input.defaultValue)); const _io52 = input => (undefined === input.enabled || false === input.enabled) && (undefined === input.text || Array.isArray(input.text) && input.text.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io53(elem))) && (undefined === input.offset || "number" === typeof input.offset) && (undefined === input.duration || "number" === typeof input.duration); const _io53 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.value || "string" === typeof input.value); const _io54 = input => (undefined === input.url || "string" === typeof input.url) && (undefined === input.command || "string" === typeof input.command) && (undefined === input.app || "string" === typeof input.app) && (undefined === input.args || Array.isArray(input.args) && input.args.every(elem => "string" === typeof elem)); const _io55 = input => (undefined === input.thumbnailView || "none" === input.thumbnailView || "filmStrip" === input.thumbnailView || "thumbnail" === input.thumbnailView) && (undefined === input.voiceOver || "object" === typeof input.voiceOver && null !== input.voiceOver && false === Array.isArray(input.voiceOver) && _io56(input.voiceOver)); const _io56 = input => (undefined === input.inputDevice || "string" === typeof input.inputDevice) && (undefined === input.inputGainDb || "number" === typeof input.inputGainDb) && (undefined === input.backgroundReductionDb || "number" === typeof input.backgroundReductionDb) && (undefined === input.recordMode || "instant" === input.recordMode || "punchAndRoll" === input.recordMode) && (undefined === input.preRollDuration || "number" === typeof input.preRollDuration); const _io57 = input => (undefined === input.title || "string" === typeof input.title) && (undefined === input.command || "string" === typeof input.command) && (undefined === input.args || Array.isArray(input.args) && input.args.every(elem => "string" === typeof elem)); const _io58 = input => (undefined === input.folded || "object" === typeof input.folded && null !== input.folded && false === Array.isArray(input.folded) && _io59(input.folded)) && (undefined === input.assets || "object" === typeof input.assets && null !== input.assets && false === Array.isArray(input.assets) && _io60(input.assets)) && (undefined === input.pipeline || "object" === typeof input.pipeline && null !== input.pipeline && false === Array.isArray(input.pipeline) && _io64(input.pipeline)) && (undefined === input.item || "object" === typeof input.item && null !== input.item && false === Array.isArray(input.item) && _io66(input.item)); const _io59 = input => undefined === input.auto || "boolean" === typeof input.auto; const _io60 = input => (undefined === input.story || "object" === typeof input.story && null !== input.story && false === Array.isArray(input.story) && _io61(input.story)) && (undefined === input.note || "object" === typeof input.note && null !== input.note && false === Array.isArray(input.note) && _io63(input.note)); const _io61 = input => undefined === input.excerpt || "object" === typeof input.excerpt && null !== input.excerpt && false === Array.isArray(input.excerpt) && _io62(input.excerpt); const _io62 = input => (undefined === input.maxLines || "number" === typeof input.maxLines) && (undefined === input.mode || "string" === typeof input.mode) && (undefined === input.comments || "boolean" === typeof input.comments); const _io63 = input => undefined === input.maxHeight || "number" === typeof input.maxHeight; const _io64 = input => (undefined === input.search || "object" === typeof input.search && null !== input.search && false === Array.isArray(input.search) && _io65(input.search)) && (undefined === input.sortMode || true === _iv25.has(input.sortMode)); const _io65 = input => undefined === input.maxItemsDisplayed || "number" === typeof input.maxItemsDisplayed; const _io66 = input => undefined === input.maxHeight || "number" === typeof input.maxHeight; const _io67 = input => undefined === input.fontFamilies || Array.isArray(input.fontFamilies) && input.fontFamilies.every(elem => "string" === typeof elem); const _io68 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.folded || "boolean" === typeof input.folded); const _io69 = input => (undefined === input.adobe || "object" === typeof input.adobe && null !== input.adobe && false === Array.isArray(input.adobe) && _io70(input.adobe)) && (undefined === input.rive || "object" === typeof input.rive && null !== input.rive && false === Array.isArray(input.rive) && _io71(input.rive)); const _io70 = input => undefined === input.useProxies || "boolean" === typeof input.useProxies; const _io71 = input => undefined === input.template || "string" === typeof input.template; const _io72 = input => (undefined === input.collections || "boolean" === typeof input.collections) && (undefined === input.semanticSearch || "boolean" === typeof input.semanticSearch) && (undefined === input.ameRemoteRendering || "boolean" === typeof input.ameRemoteRendering); const _io73 = input => (undefined === input.utils || "boolean" === typeof input.utils) && (undefined === input.history || "boolean" === typeof input.history) && (undefined === input.refs || "boolean" === typeof input.refs) && (undefined === input.access || "boolean" === typeof input.access) && (undefined === input.files || "boolean" === typeof input.files) && (undefined === input["export"] || "boolean" === typeof input["export"]) && (undefined === input.json || "boolean" === typeof input.json) && (undefined === input.hlsjs || "boolean" === typeof input.hlsjs) && (undefined === input.resetRenders || "boolean" === typeof input.resetRenders) && (undefined === input.resetReplicas || "boolean" === typeof input.resetReplicas) && (undefined === input.assetStatus || "boolean" === typeof input.assetStatus) && (undefined === input.consolidateMedia || "boolean" === typeof input.consolidateMedia) && (undefined === input.hideInAssetMenu || "boolean" === typeof input.hideInAssetMenu) && (undefined === input.assetRoute || "boolean" === typeof input.assetRoute) && (undefined === input.devWarnings || "boolean" === typeof input.devWarnings) && (undefined === input.multiplexWebSockets || "boolean" === typeof input.multiplexWebSockets) && (undefined === input.systemHealth || "boolean" === typeof input.systemHealth); const _io74 = input => undefined === input.events || "object" === typeof input.events && null !== input.events && false === Array.isArray(input.events) && _io75(input.events); const _io75 = input => (undefined === input.comment || Array.isArray(input.comment) && input.comment.every(elem => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem)) && (undefined === input.assigned || Array.isArray(input.assigned) && input.assigned.every(elem => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem)) && (undefined === input.unassigned || Array.isArray(input.unassigned) && input.unassigned.every(elem => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem)) && (undefined === input.publishSucceeded || "object" === typeof input.publishSucceeded && null !== input.publishSucceeded && false === Array.isArray(input.publishSucceeded) && _io76(input.publishSucceeded)); const _io76 = input => Object.keys(input).every(key => {
|
|
14869
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
14870
|
+
}); const _io42 = input => Object.keys(input).every(key => {
|
|
14871
|
+
const value = input[key];
|
|
14872
|
+
if (undefined === value)
|
|
14873
|
+
return true;
|
|
14874
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
14875
|
+
}); const _io43 = input => (undefined === input.defaultFrameRate || "number" === typeof input.defaultFrameRate) && (undefined === input.placeholder || "string" === typeof input.placeholder) && (undefined === input.guide || "object" === typeof input.guide && null !== input.guide && false === Array.isArray(input.guide) && _io44(input.guide)) && (undefined === input.stepManyFrames || "number" === typeof input.stepManyFrames) && (undefined === input.liveZoomDuration || "number" === typeof input.liveZoomDuration) && (undefined === input.importTitleTemplate || "string" === typeof input.importTitleTemplate) && (undefined === input.tile || "object" === typeof input.tile && null !== input.tile && false === Array.isArray(input.tile) && _io45(input.tile)) && (undefined === input.timecodeReference || "string" === typeof input.timecodeReference) && (undefined === input.maxSubclipDuration || "number" === typeof input.maxSubclipDuration) && (undefined === input.rewindStep || "number" === typeof input.rewindStep) && (undefined === input.forwardStep || "number" === typeof input.forwardStep) && (undefined === input.interlacedPlayback || "string" === typeof input.interlacedPlayback) && (undefined === input.playbackRates || Array.isArray(input.playbackRates) && input.playbackRates.every(elem => "number" === typeof elem)) && (undefined === input.subtitles || "object" === typeof input.subtitles && null !== input.subtitles && false === Array.isArray(input.subtitles) && _io46(input.subtitles)) && (undefined === input.subtitleTemplateId || "string" === typeof input.subtitleTemplateId) && (undefined === input.initialVolume || "string" === typeof input.initialVolume) && (undefined === input.guides || Array.isArray(input.guides) && input.guides.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io49(elem))) && (undefined === input.download || "boolean" === typeof input.download) && (undefined === input.editMode || "object" === typeof input.editMode && null !== input.editMode && false === Array.isArray(input.editMode) && _io50(input.editMode)) && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) && _io51(input.transcribe)) && (null !== input.openCommand && (undefined === input.openCommand || "string" === typeof input.openCommand || "object" === typeof input.openCommand && null !== input.openCommand && false === Array.isArray(input.openCommand) && _io55(input.openCommand))); const _io44 = input => (undefined === input.mask || "boolean" === typeof input.mask) && (undefined === input.actionSafe || "boolean" === typeof input.actionSafe) && (undefined === input.titleSafe || "boolean" === typeof input.titleSafe); const _io45 = input => (undefined === input.preview || "disabled" === input.preview || "play" === input.preview || "seek" === input.preview || "seekplay" === input.preview || "boolean" === typeof input.preview) && (undefined === input.showRenderProgress || "boolean" === typeof input.showRenderProgress); const _io46 = input => (undefined === input.spacing || "number" === typeof input.spacing) && (undefined === input.maxCharactersPerLine || "number" === typeof input.maxCharactersPerLine) && (undefined === input.suggestions || Array.isArray(input.suggestions) && input.suggestions.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io47(elem))) && (undefined === input.colors || Array.isArray(input.colors) && input.colors.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io48(elem))) && (undefined === input.overridableProperties || Array.isArray(input.overridableProperties) && input.overridableProperties.every(elem => null === elem || true === _iv22.has(elem))); const _io47 = input => (null === input.ifAspectRatio || undefined === input.ifAspectRatio || "string" === typeof input.ifAspectRatio) && (null === input.ifLang || undefined === input.ifLang || "string" === typeof input.ifLang) && (null === input.thenStyle || undefined === input.thenStyle || "string" === typeof input.thenStyle) && (null === input.thenMaxCharactersPerLine || undefined === input.thenMaxCharactersPerLine || "number" === typeof input.thenMaxCharactersPerLine); const _io48 = input => (null === input.label || undefined === input.label || "string" === typeof input.label) && (null === input.color || undefined === input.color || "string" === typeof input.color); const _io49 = input => (undefined === input.label || "string" === typeof input.label) && (undefined === input.aspectRatio || "string" === typeof input.aspectRatio); const _io50 = input => (undefined === input.enabled || "boolean" === typeof input.enabled) && (undefined === input.defaultEnterOption || "edit" === input.defaultEnterOption || "createNew" === input.defaultEnterOption || "none" === input.defaultEnterOption) && (undefined === input.defaultExitOption || "none" === input.defaultExitOption || "update" === input.defaultExitOption || "leave" === input.defaultExitOption); const _io51 = input => undefined === input.subtitleDisclaimer || "object" === typeof input.subtitleDisclaimer && null !== input.subtitleDisclaimer && false === Array.isArray(input.subtitleDisclaimer) && _io52(input.subtitleDisclaimer); const _io52 = input => (undefined === input.isUserConfigurable || "boolean" === typeof input.isUserConfigurable) && (undefined === input.defaultValue || "object" === typeof input.defaultValue && null !== input.defaultValue && false === Array.isArray(input.defaultValue) && _io53(input.defaultValue)); const _io53 = input => (undefined === input.enabled || false === input.enabled) && (undefined === input.text || Array.isArray(input.text) && input.text.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io54(elem))) && (undefined === input.offset || "number" === typeof input.offset) && (undefined === input.duration || "number" === typeof input.duration); const _io54 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.value || "string" === typeof input.value); const _io55 = input => (undefined === input.url || "string" === typeof input.url) && (undefined === input.command || "string" === typeof input.command) && (undefined === input.app || "string" === typeof input.app) && (undefined === input.args || Array.isArray(input.args) && input.args.every(elem => "string" === typeof elem)); const _io56 = input => (undefined === input.thumbnailView || "none" === input.thumbnailView || "filmStrip" === input.thumbnailView || "thumbnail" === input.thumbnailView) && (undefined === input.voiceOver || "object" === typeof input.voiceOver && null !== input.voiceOver && false === Array.isArray(input.voiceOver) && _io57(input.voiceOver)); const _io57 = input => (undefined === input.inputDevice || "string" === typeof input.inputDevice) && (undefined === input.inputGainDb || "number" === typeof input.inputGainDb) && (undefined === input.backgroundReductionDb || "number" === typeof input.backgroundReductionDb) && (undefined === input.recordMode || "instant" === input.recordMode || "punchAndRoll" === input.recordMode) && (undefined === input.preRollDuration || "number" === typeof input.preRollDuration); const _io58 = input => (undefined === input.title || "string" === typeof input.title) && (undefined === input.command || "string" === typeof input.command) && (undefined === input.args || Array.isArray(input.args) && input.args.every(elem => "string" === typeof elem)); const _io59 = input => (undefined === input.folded || "object" === typeof input.folded && null !== input.folded && false === Array.isArray(input.folded) && _io60(input.folded)) && (undefined === input.assets || "object" === typeof input.assets && null !== input.assets && false === Array.isArray(input.assets) && _io61(input.assets)) && (undefined === input.pipeline || "object" === typeof input.pipeline && null !== input.pipeline && false === Array.isArray(input.pipeline) && _io65(input.pipeline)) && (undefined === input.item || "object" === typeof input.item && null !== input.item && false === Array.isArray(input.item) && _io67(input.item)); const _io60 = input => undefined === input.auto || "boolean" === typeof input.auto; const _io61 = input => (undefined === input.story || "object" === typeof input.story && null !== input.story && false === Array.isArray(input.story) && _io62(input.story)) && (undefined === input.note || "object" === typeof input.note && null !== input.note && false === Array.isArray(input.note) && _io64(input.note)); const _io62 = input => undefined === input.excerpt || "object" === typeof input.excerpt && null !== input.excerpt && false === Array.isArray(input.excerpt) && _io63(input.excerpt); const _io63 = input => (undefined === input.maxLines || "number" === typeof input.maxLines) && (undefined === input.mode || "string" === typeof input.mode) && (undefined === input.comments || "boolean" === typeof input.comments); const _io64 = input => undefined === input.maxHeight || "number" === typeof input.maxHeight; const _io65 = input => (undefined === input.search || "object" === typeof input.search && null !== input.search && false === Array.isArray(input.search) && _io66(input.search)) && (undefined === input.sortMode || true === _iv26.has(input.sortMode)); const _io66 = input => undefined === input.maxItemsDisplayed || "number" === typeof input.maxItemsDisplayed; const _io67 = input => (undefined === input.maxHeight || "number" === typeof input.maxHeight) && (undefined === input.titleLines || "number" === typeof input.titleLines); const _io68 = input => undefined === input.fontFamilies || Array.isArray(input.fontFamilies) && input.fontFamilies.every(elem => "string" === typeof elem); const _io69 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.folded || "boolean" === typeof input.folded); const _io70 = input => (undefined === input.adobe || "object" === typeof input.adobe && null !== input.adobe && false === Array.isArray(input.adobe) && _io71(input.adobe)) && (undefined === input.rive || "object" === typeof input.rive && null !== input.rive && false === Array.isArray(input.rive) && _io72(input.rive)); const _io71 = input => undefined === input.useProxies || "boolean" === typeof input.useProxies; const _io72 = input => undefined === input.template || "string" === typeof input.template; const _io73 = input => (undefined === input.collections || "boolean" === typeof input.collections) && (undefined === input.semanticSearch || "boolean" === typeof input.semanticSearch) && (undefined === input.ameRemoteRendering || "boolean" === typeof input.ameRemoteRendering); const _io74 = input => (undefined === input.utils || "boolean" === typeof input.utils) && (undefined === input.utilsAssetEditor || "boolean" === typeof input.utilsAssetEditor) && (undefined === input.utilsAssetPanel || "boolean" === typeof input.utilsAssetPanel) && (undefined === input.history || "boolean" === typeof input.history) && (undefined === input.refs || "boolean" === typeof input.refs) && (undefined === input.access || "boolean" === typeof input.access) && (undefined === input.files || "boolean" === typeof input.files) && (undefined === input["export"] || "boolean" === typeof input["export"]) && (undefined === input.json || "boolean" === typeof input.json) && (undefined === input.hlsjs || "boolean" === typeof input.hlsjs) && (undefined === input.resetRenders || "boolean" === typeof input.resetRenders) && (undefined === input.resetReplicas || "boolean" === typeof input.resetReplicas) && (undefined === input.assetStatus || "boolean" === typeof input.assetStatus) && (undefined === input.consolidateMedia || "boolean" === typeof input.consolidateMedia) && (undefined === input.hideInAssetMenu || "boolean" === typeof input.hideInAssetMenu) && (undefined === input.assetRoute || "boolean" === typeof input.assetRoute) && (undefined === input.devWarnings || "boolean" === typeof input.devWarnings) && (undefined === input.multiplexWebSockets || "boolean" === typeof input.multiplexWebSockets) && (undefined === input.systemHealth || "boolean" === typeof input.systemHealth); const _io75 = input => undefined === input.events || "object" === typeof input.events && null !== input.events && false === Array.isArray(input.events) && _io76(input.events); const _io76 = input => (undefined === input.comment || Array.isArray(input.comment) && input.comment.every(elem => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem)) && (undefined === input.assigned || Array.isArray(input.assigned) && input.assigned.every(elem => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem)) && (undefined === input.unassigned || Array.isArray(input.unassigned) && input.unassigned.every(elem => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem)) && (undefined === input.publishSucceeded || "object" === typeof input.publishSucceeded && null !== input.publishSucceeded && false === Array.isArray(input.publishSucceeded) && _io77(input.publishSucceeded)); const _io77 = input => Object.keys(input).every(key => {
|
|
14416
14876
|
const value = input[key];
|
|
14417
14877
|
if (undefined === value)
|
|
14418
14878
|
return true;
|
|
14419
14879
|
return Array.isArray(value) && value.every(elem => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem);
|
|
14420
|
-
}); const _vo0 = (input, _path, _exceptionable = true) => [undefined === input.autoLogoutTime || "number" === typeof input.autoLogoutTime || _report(_exceptionable, {
|
|
14880
|
+
}); const _io78 = input => undefined === input.duplicate || "object" === typeof input.duplicate && null !== input.duplicate && false === Array.isArray(input.duplicate) && _io79(input.duplicate); const _io79 = input => (undefined === input.titlePrefix || "string" === typeof input.titlePrefix) && (undefined === input.titleSuffix || "string" === typeof input.titleSuffix); const _io80 = input => (undefined === input.stateFilter || Array.isArray(input.stateFilter) && input.stateFilter.every(elem => "number" === typeof elem)) && (undefined === input.textFilter || "string" === typeof input.textFilter) && (undefined === input.showEmpty || "boolean" === typeof input.showEmpty) && (undefined === input.selectedRecord || "string" === typeof input.selectedRecord) && (undefined === input.subscribeSearchHits || "boolean" === typeof input.subscribeSearchHits) && (undefined === input.parseRegex || "boolean" === typeof input.parseRegex); const _vo0 = (input, _path, _exceptionable = true) => [undefined === input.autoLogoutTime || "number" === typeof input.autoLogoutTime || _report(_exceptionable, {
|
|
14421
14881
|
path: _path + ".autoLogoutTime",
|
|
14422
14882
|
expected: "(number | undefined)",
|
|
14423
14883
|
value: input.autoLogoutTime
|
|
@@ -14473,16 +14933,16 @@ function _validateDomainRecord(domain, input) {
|
|
|
14473
14933
|
path: _path + ".exclusiveTagGroups",
|
|
14474
14934
|
expected: "(Array<Array<string>> | undefined)",
|
|
14475
14935
|
value: input.exclusiveTagGroups
|
|
14476
|
-
})) && input.exclusiveTagGroups.map((elem,
|
|
14477
|
-
path: _path + ".exclusiveTagGroups[" +
|
|
14936
|
+
})) && input.exclusiveTagGroups.map((elem, _index33) => (Array.isArray(elem) || _report(_exceptionable, {
|
|
14937
|
+
path: _path + ".exclusiveTagGroups[" + _index33 + "]",
|
|
14478
14938
|
expected: "Array<string>",
|
|
14479
14939
|
value: elem
|
|
14480
|
-
})) && elem.map((elem,
|
|
14481
|
-
path: _path + ".exclusiveTagGroups[" +
|
|
14940
|
+
})) && elem.map((elem, _index34) => "string" === typeof elem || _report(_exceptionable, {
|
|
14941
|
+
path: _path + ".exclusiveTagGroups[" + _index33 + "][" + _index34 + "]",
|
|
14482
14942
|
expected: "string",
|
|
14483
14943
|
value: elem
|
|
14484
14944
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
14485
|
-
path: _path + ".exclusiveTagGroups[" +
|
|
14945
|
+
path: _path + ".exclusiveTagGroups[" + _index33 + "]",
|
|
14486
14946
|
expected: "Array<string>",
|
|
14487
14947
|
value: elem
|
|
14488
14948
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -14539,35 +14999,35 @@ function _validateDomainRecord(domain, input) {
|
|
|
14539
14999
|
value: input.dashboard
|
|
14540
15000
|
}), undefined === input.script || ("object" === typeof input.script && null !== input.script && false === Array.isArray(input.script) || _report(_exceptionable, {
|
|
14541
15001
|
path: _path + ".script",
|
|
14542
|
-
expected: "(__type.
|
|
15002
|
+
expected: "(__type.o16 | undefined)",
|
|
14543
15003
|
value: input.script
|
|
14544
|
-
})) &&
|
|
15004
|
+
})) && _vo20(input.script, _path + ".script", true && _exceptionable) || _report(_exceptionable, {
|
|
14545
15005
|
path: _path + ".script",
|
|
14546
|
-
expected: "(__type.
|
|
15006
|
+
expected: "(__type.o16 | undefined)",
|
|
14547
15007
|
value: input.script
|
|
14548
15008
|
}), undefined === input.events || ("object" === typeof input.events && null !== input.events && false === Array.isArray(input.events) || _report(_exceptionable, {
|
|
14549
15009
|
path: _path + ".events",
|
|
14550
|
-
expected: "(__type.
|
|
15010
|
+
expected: "(__type.o20 | undefined)",
|
|
14551
15011
|
value: input.events
|
|
14552
|
-
})) &&
|
|
15012
|
+
})) && _vo25(input.events, _path + ".events", true && _exceptionable) || _report(_exceptionable, {
|
|
14553
15013
|
path: _path + ".events",
|
|
14554
|
-
expected: "(__type.
|
|
15014
|
+
expected: "(__type.o20 | undefined)",
|
|
14555
15015
|
value: input.events
|
|
14556
15016
|
}), undefined === input.rundown || ("object" === typeof input.rundown && null !== input.rundown && false === Array.isArray(input.rundown) || _report(_exceptionable, {
|
|
14557
15017
|
path: _path + ".rundown",
|
|
14558
|
-
expected: "(__type.
|
|
15018
|
+
expected: "(__type.o22 | undefined)",
|
|
14559
15019
|
value: input.rundown
|
|
14560
|
-
})) &&
|
|
15020
|
+
})) && _vo28(input.rundown, _path + ".rundown", true && _exceptionable) || _report(_exceptionable, {
|
|
14561
15021
|
path: _path + ".rundown",
|
|
14562
|
-
expected: "(__type.
|
|
15022
|
+
expected: "(__type.o22 | undefined)",
|
|
14563
15023
|
value: input.rundown
|
|
14564
15024
|
}), undefined === input.gallery || ("object" === typeof input.gallery && null !== input.gallery && false === Array.isArray(input.gallery) || _report(_exceptionable, {
|
|
14565
15025
|
path: _path + ".gallery",
|
|
14566
|
-
expected: "(__type.
|
|
15026
|
+
expected: "(__type.o23 | undefined)",
|
|
14567
15027
|
value: input.gallery
|
|
14568
|
-
})) &&
|
|
15028
|
+
})) && _vo29(input.gallery, _path + ".gallery", true && _exceptionable) || _report(_exceptionable, {
|
|
14569
15029
|
path: _path + ".gallery",
|
|
14570
|
-
expected: "(__type.
|
|
15030
|
+
expected: "(__type.o23 | undefined)",
|
|
14571
15031
|
value: input.gallery
|
|
14572
15032
|
}), undefined === input.history || "boolean" === typeof input.history || _report(_exceptionable, {
|
|
14573
15033
|
path: _path + ".history",
|
|
@@ -14575,39 +15035,39 @@ function _validateDomainRecord(domain, input) {
|
|
|
14575
15035
|
value: input.history
|
|
14576
15036
|
}), undefined === input.keymap || ("object" === typeof input.keymap && null !== input.keymap && false === Array.isArray(input.keymap) || _report(_exceptionable, {
|
|
14577
15037
|
path: _path + ".keymap",
|
|
14578
|
-
expected: "(__type.
|
|
15038
|
+
expected: "(__type.o24 | undefined)",
|
|
14579
15039
|
value: input.keymap
|
|
14580
|
-
})) &&
|
|
15040
|
+
})) && _vo30(input.keymap, _path + ".keymap", true && _exceptionable) || _report(_exceptionable, {
|
|
14581
15041
|
path: _path + ".keymap",
|
|
14582
|
-
expected: "(__type.
|
|
15042
|
+
expected: "(__type.o24 | undefined)",
|
|
14583
15043
|
value: input.keymap
|
|
14584
15044
|
}), undefined === input.media || ("object" === typeof input.media && null !== input.media && false === Array.isArray(input.media) || _report(_exceptionable, {
|
|
14585
15045
|
path: _path + ".media",
|
|
14586
|
-
expected: "(__type.
|
|
15046
|
+
expected: "(__type.o36 | undefined)",
|
|
14587
15047
|
value: input.media
|
|
14588
|
-
})) &&
|
|
15048
|
+
})) && _vo43(input.media, _path + ".media", true && _exceptionable) || _report(_exceptionable, {
|
|
14589
15049
|
path: _path + ".media",
|
|
14590
|
-
expected: "(__type.
|
|
15050
|
+
expected: "(__type.o36 | undefined)",
|
|
14591
15051
|
value: input.media
|
|
14592
15052
|
}), undefined === input.edit || ("object" === typeof input.edit && null !== input.edit && false === Array.isArray(input.edit) || _report(_exceptionable, {
|
|
14593
15053
|
path: _path + ".edit",
|
|
14594
|
-
expected: "(__type.
|
|
15054
|
+
expected: "(__type.o49 | undefined)",
|
|
14595
15055
|
value: input.edit
|
|
14596
|
-
})) &&
|
|
15056
|
+
})) && _vo56(input.edit, _path + ".edit", true && _exceptionable) || _report(_exceptionable, {
|
|
14597
15057
|
path: _path + ".edit",
|
|
14598
|
-
expected: "(__type.
|
|
15058
|
+
expected: "(__type.o49 | undefined)",
|
|
14599
15059
|
value: input.edit
|
|
14600
15060
|
}), undefined === input.commands || (Array.isArray(input.commands) || _report(_exceptionable, {
|
|
14601
15061
|
path: _path + ".commands",
|
|
14602
15062
|
expected: "(Array<__type>.o4 | undefined)",
|
|
14603
15063
|
value: input.commands
|
|
14604
|
-
})) && input.commands.map((elem,
|
|
14605
|
-
path: _path + ".commands[" +
|
|
14606
|
-
expected: "__type.
|
|
15064
|
+
})) && input.commands.map((elem, _index35) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || _report(_exceptionable, {
|
|
15065
|
+
path: _path + ".commands[" + _index35 + "]",
|
|
15066
|
+
expected: "__type.o51",
|
|
14607
15067
|
value: elem
|
|
14608
|
-
})) &&
|
|
14609
|
-
path: _path + ".commands[" +
|
|
14610
|
-
expected: "__type.
|
|
15068
|
+
})) && _vo58(elem, _path + ".commands[" + _index35 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
15069
|
+
path: _path + ".commands[" + _index35 + "]",
|
|
15070
|
+
expected: "__type.o51",
|
|
14611
15071
|
value: elem
|
|
14612
15072
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
14613
15073
|
path: _path + ".commands",
|
|
@@ -14617,8 +15077,8 @@ function _validateDomainRecord(domain, input) {
|
|
|
14617
15077
|
path: _path + ".predefinedTags",
|
|
14618
15078
|
expected: "(Array<string> | undefined)",
|
|
14619
15079
|
value: input.predefinedTags
|
|
14620
|
-
})) && input.predefinedTags.map((elem,
|
|
14621
|
-
path: _path + ".predefinedTags[" +
|
|
15080
|
+
})) && input.predefinedTags.map((elem, _index36) => "string" === typeof elem || _report(_exceptionable, {
|
|
15081
|
+
path: _path + ".predefinedTags[" + _index36 + "]",
|
|
14622
15082
|
expected: "string",
|
|
14623
15083
|
value: elem
|
|
14624
15084
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -14627,31 +15087,31 @@ function _validateDomainRecord(domain, input) {
|
|
|
14627
15087
|
value: input.predefinedTags
|
|
14628
15088
|
}), undefined === input.storyboard || ("object" === typeof input.storyboard && null !== input.storyboard && false === Array.isArray(input.storyboard) || _report(_exceptionable, {
|
|
14629
15089
|
path: _path + ".storyboard",
|
|
14630
|
-
expected: "(__type.
|
|
15090
|
+
expected: "(__type.o52 | undefined)",
|
|
14631
15091
|
value: input.storyboard
|
|
14632
|
-
})) &&
|
|
15092
|
+
})) && _vo59(input.storyboard, _path + ".storyboard", true && _exceptionable) || _report(_exceptionable, {
|
|
14633
15093
|
path: _path + ".storyboard",
|
|
14634
|
-
expected: "(__type.
|
|
15094
|
+
expected: "(__type.o52 | undefined)",
|
|
14635
15095
|
value: input.storyboard
|
|
14636
15096
|
}), undefined === input.print || ("object" === typeof input.print && null !== input.print && false === Array.isArray(input.print) || _report(_exceptionable, {
|
|
14637
15097
|
path: _path + ".print",
|
|
14638
|
-
expected: "(__type.
|
|
15098
|
+
expected: "(__type.o61 | undefined)",
|
|
14639
15099
|
value: input.print
|
|
14640
|
-
})) &&
|
|
15100
|
+
})) && _vo68(input.print, _path + ".print", true && _exceptionable) || _report(_exceptionable, {
|
|
14641
15101
|
path: _path + ".print",
|
|
14642
|
-
expected: "(__type.
|
|
15102
|
+
expected: "(__type.o61 | undefined)",
|
|
14643
15103
|
value: input.print
|
|
14644
15104
|
}), undefined === input.hiddenPreviews || (Array.isArray(input.hiddenPreviews) || _report(_exceptionable, {
|
|
14645
15105
|
path: _path + ".hiddenPreviews",
|
|
14646
15106
|
expected: "(Array<__type>.o5 | undefined)",
|
|
14647
15107
|
value: input.hiddenPreviews
|
|
14648
|
-
})) && input.hiddenPreviews.map((elem,
|
|
14649
|
-
path: _path + ".hiddenPreviews[" +
|
|
14650
|
-
expected: "__type.
|
|
15108
|
+
})) && input.hiddenPreviews.map((elem, _index37) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || _report(_exceptionable, {
|
|
15109
|
+
path: _path + ".hiddenPreviews[" + _index37 + "]",
|
|
15110
|
+
expected: "__type.o62",
|
|
14651
15111
|
value: elem
|
|
14652
|
-
})) &&
|
|
14653
|
-
path: _path + ".hiddenPreviews[" +
|
|
14654
|
-
expected: "__type.
|
|
15112
|
+
})) && _vo69(elem, _path + ".hiddenPreviews[" + _index37 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
15113
|
+
path: _path + ".hiddenPreviews[" + _index37 + "]",
|
|
15114
|
+
expected: "__type.o62",
|
|
14655
15115
|
value: elem
|
|
14656
15116
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
14657
15117
|
path: _path + ".hiddenPreviews",
|
|
@@ -14659,11 +15119,11 @@ function _validateDomainRecord(domain, input) {
|
|
|
14659
15119
|
value: input.hiddenPreviews
|
|
14660
15120
|
}), undefined === input.plugins || ("object" === typeof input.plugins && null !== input.plugins && false === Array.isArray(input.plugins) || _report(_exceptionable, {
|
|
14661
15121
|
path: _path + ".plugins",
|
|
14662
|
-
expected: "(__type.
|
|
15122
|
+
expected: "(__type.o63 | undefined)",
|
|
14663
15123
|
value: input.plugins
|
|
14664
|
-
})) &&
|
|
15124
|
+
})) && _vo70(input.plugins, _path + ".plugins", true && _exceptionable) || _report(_exceptionable, {
|
|
14665
15125
|
path: _path + ".plugins",
|
|
14666
|
-
expected: "(__type.
|
|
15126
|
+
expected: "(__type.o63 | undefined)",
|
|
14667
15127
|
value: input.plugins
|
|
14668
15128
|
}), undefined === input.crashScreen || "boolean" === typeof input.crashScreen || _report(_exceptionable, {
|
|
14669
15129
|
path: _path + ".crashScreen",
|
|
@@ -14675,32 +15135,48 @@ function _validateDomainRecord(domain, input) {
|
|
|
14675
15135
|
value: input.debug
|
|
14676
15136
|
}), undefined === input.featurePreview || ("object" === typeof input.featurePreview && null !== input.featurePreview && false === Array.isArray(input.featurePreview) || _report(_exceptionable, {
|
|
14677
15137
|
path: _path + ".featurePreview",
|
|
14678
|
-
expected: "(__type.
|
|
15138
|
+
expected: "(__type.o66 | undefined)",
|
|
14679
15139
|
value: input.featurePreview
|
|
14680
|
-
})) &&
|
|
15140
|
+
})) && _vo73(input.featurePreview, _path + ".featurePreview", true && _exceptionable) || _report(_exceptionable, {
|
|
14681
15141
|
path: _path + ".featurePreview",
|
|
14682
|
-
expected: "(__type.
|
|
15142
|
+
expected: "(__type.o66 | undefined)",
|
|
14683
15143
|
value: input.featurePreview
|
|
14684
15144
|
}), undefined === input.flags || ("object" === typeof input.flags && null !== input.flags && false === Array.isArray(input.flags) || _report(_exceptionable, {
|
|
14685
15145
|
path: _path + ".flags",
|
|
14686
|
-
expected: "(__type.
|
|
15146
|
+
expected: "(__type.o67 | undefined)",
|
|
14687
15147
|
value: input.flags
|
|
14688
|
-
})) &&
|
|
15148
|
+
})) && _vo74(input.flags, _path + ".flags", true && _exceptionable) || _report(_exceptionable, {
|
|
14689
15149
|
path: _path + ".flags",
|
|
14690
|
-
expected: "(__type.
|
|
15150
|
+
expected: "(__type.o67 | undefined)",
|
|
14691
15151
|
value: input.flags
|
|
14692
15152
|
}), undefined === input.notifications || ("object" === typeof input.notifications && null !== input.notifications && false === Array.isArray(input.notifications) || _report(_exceptionable, {
|
|
14693
15153
|
path: _path + ".notifications",
|
|
14694
|
-
expected: "(__type.
|
|
15154
|
+
expected: "(__type.o68 | undefined)",
|
|
14695
15155
|
value: input.notifications
|
|
14696
|
-
})) &&
|
|
15156
|
+
})) && _vo75(input.notifications, _path + ".notifications", true && _exceptionable) || _report(_exceptionable, {
|
|
14697
15157
|
path: _path + ".notifications",
|
|
14698
|
-
expected: "(__type.
|
|
15158
|
+
expected: "(__type.o68 | undefined)",
|
|
14699
15159
|
value: input.notifications
|
|
14700
15160
|
}), undefined === input.suppressDeleteAlert || "boolean" === typeof input.suppressDeleteAlert || _report(_exceptionable, {
|
|
14701
15161
|
path: _path + ".suppressDeleteAlert",
|
|
14702
15162
|
expected: "(boolean | undefined)",
|
|
14703
15163
|
value: input.suppressDeleteAlert
|
|
15164
|
+
}), undefined === input.clone || ("object" === typeof input.clone && null !== input.clone && false === Array.isArray(input.clone) || _report(_exceptionable, {
|
|
15165
|
+
path: _path + ".clone",
|
|
15166
|
+
expected: "(__type.o71 | undefined)",
|
|
15167
|
+
value: input.clone
|
|
15168
|
+
})) && _vo78(input.clone, _path + ".clone", true && _exceptionable) || _report(_exceptionable, {
|
|
15169
|
+
path: _path + ".clone",
|
|
15170
|
+
expected: "(__type.o71 | undefined)",
|
|
15171
|
+
value: input.clone
|
|
15172
|
+
}), undefined === input.utilsAssetEditorPanel || ("object" === typeof input.utilsAssetEditorPanel && null !== input.utilsAssetEditorPanel && false === Array.isArray(input.utilsAssetEditorPanel) || _report(_exceptionable, {
|
|
15173
|
+
path: _path + ".utilsAssetEditorPanel",
|
|
15174
|
+
expected: "(__type.o73 | undefined)",
|
|
15175
|
+
value: input.utilsAssetEditorPanel
|
|
15176
|
+
})) && _vo80(input.utilsAssetEditorPanel, _path + ".utilsAssetEditorPanel", true && _exceptionable) || _report(_exceptionable, {
|
|
15177
|
+
path: _path + ".utilsAssetEditorPanel",
|
|
15178
|
+
expected: "(__type.o73 | undefined)",
|
|
15179
|
+
value: input.utilsAssetEditorPanel
|
|
14704
15180
|
})].every(flag => flag); const _vo1 = (input, _path, _exceptionable = true) => [undefined === input.overrideUserContact || "boolean" === typeof input.overrideUserContact || _report(_exceptionable, {
|
|
14705
15181
|
path: _path + ".overrideUserContact",
|
|
14706
15182
|
expected: "(boolean | undefined)",
|
|
@@ -14709,7 +15185,11 @@ function _validateDomainRecord(domain, input) {
|
|
|
14709
15185
|
path: _path + ".overrideUserLogin",
|
|
14710
15186
|
expected: "(boolean | undefined)",
|
|
14711
15187
|
value: input.overrideUserLogin
|
|
14712
|
-
})].every(flag => flag); const _vo2 = (input, _path, _exceptionable = true) => [undefined === input.
|
|
15188
|
+
})].every(flag => flag); const _vo2 = (input, _path, _exceptionable = true) => [undefined === input.editor || "string" === typeof input.editor || _report(_exceptionable, {
|
|
15189
|
+
path: _path + ".editor",
|
|
15190
|
+
expected: "(string | undefined)",
|
|
15191
|
+
value: input.editor
|
|
15192
|
+
}), undefined === input.tabs || ("object" === typeof input.tabs && null !== input.tabs && false === Array.isArray(input.tabs) || _report(_exceptionable, {
|
|
14713
15193
|
path: _path + ".tabs",
|
|
14714
15194
|
expected: "(ModuleTabs | undefined)",
|
|
14715
15195
|
value: input.tabs
|
|
@@ -14744,14 +15224,22 @@ function _validateDomainRecord(domain, input) {
|
|
|
14744
15224
|
path: _path + ".activeSectionIndex",
|
|
14745
15225
|
expected: "(number | undefined)",
|
|
14746
15226
|
value: input.activeSectionIndex
|
|
14747
|
-
}), undefined === input.activeTab || "string" === typeof input.activeTab || _report(_exceptionable, {
|
|
15227
|
+
}), null === input.activeTab || undefined === input.activeTab || "string" === typeof input.activeTab || _report(_exceptionable, {
|
|
14748
15228
|
path: _path + ".activeTab",
|
|
14749
|
-
expected: "(string | undefined)",
|
|
15229
|
+
expected: "(null | string | undefined)",
|
|
14750
15230
|
value: input.activeTab
|
|
14751
|
-
})
|
|
15231
|
+
}), undefined === input.priority || "number" === typeof input.priority || _report(_exceptionable, {
|
|
15232
|
+
path: _path + ".priority",
|
|
15233
|
+
expected: "(number | undefined)",
|
|
15234
|
+
value: input.priority
|
|
15235
|
+
})].every(flag => flag); const _vo5 = (input, _path, _exceptionable = true) => [null === input.activeTab || undefined === input.activeTab || "string" === typeof input.activeTab || _report(_exceptionable, {
|
|
14752
15236
|
path: _path + ".activeTab",
|
|
14753
|
-
expected: "(string | undefined)",
|
|
15237
|
+
expected: "(null | string | undefined)",
|
|
14754
15238
|
value: input.activeTab
|
|
15239
|
+
}), undefined === input.priority || "number" === typeof input.priority || _report(_exceptionable, {
|
|
15240
|
+
path: _path + ".priority",
|
|
15241
|
+
expected: "(number | undefined)",
|
|
15242
|
+
value: input.priority
|
|
14755
15243
|
})].every(flag => flag); const _vo6 = (input, _path, _exceptionable = true) => [undefined === input.defaultGrouping || "" === input.defaultGrouping || "collection" === input.defaultGrouping || "stitch" === input.defaultGrouping || _report(_exceptionable, {
|
|
14756
15244
|
path: _path + ".defaultGrouping",
|
|
14757
15245
|
expected: "(\"\" | \"collection\" | \"stitch\" | undefined)",
|
|
@@ -14816,20 +15304,32 @@ function _validateDomainRecord(domain, input) {
|
|
|
14816
15304
|
path: _path + ".sortOrder",
|
|
14817
15305
|
expected: "(Array<string> | undefined)",
|
|
14818
15306
|
value: input.sortOrder
|
|
14819
|
-
})) && input.sortOrder.map((elem,
|
|
14820
|
-
path: _path + ".sortOrder[" +
|
|
15307
|
+
})) && input.sortOrder.map((elem, _index38) => "string" === typeof elem || _report(_exceptionable, {
|
|
15308
|
+
path: _path + ".sortOrder[" + _index38 + "]",
|
|
14821
15309
|
expected: "string",
|
|
14822
15310
|
value: elem
|
|
14823
15311
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
14824
15312
|
path: _path + ".sortOrder",
|
|
14825
15313
|
expected: "(Array<string> | undefined)",
|
|
14826
15314
|
value: input.sortOrder
|
|
14827
|
-
})].every(flag => flag); const _vo12 = (input, _path, _exceptionable = true) => [undefined === input.
|
|
15315
|
+
})].every(flag => flag); const _vo12 = (input, _path, _exceptionable = true) => [undefined === input.include || (Array.isArray(input.include) || _report(_exceptionable, {
|
|
15316
|
+
path: _path + ".include",
|
|
15317
|
+
expected: "(Array<string> | undefined)",
|
|
15318
|
+
value: input.include
|
|
15319
|
+
})) && input.include.map((elem, _index39) => "string" === typeof elem || _report(_exceptionable, {
|
|
15320
|
+
path: _path + ".include[" + _index39 + "]",
|
|
15321
|
+
expected: "string",
|
|
15322
|
+
value: elem
|
|
15323
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
15324
|
+
path: _path + ".include",
|
|
15325
|
+
expected: "(Array<string> | undefined)",
|
|
15326
|
+
value: input.include
|
|
15327
|
+
}), undefined === input.exclude || (Array.isArray(input.exclude) || _report(_exceptionable, {
|
|
14828
15328
|
path: _path + ".exclude",
|
|
14829
15329
|
expected: "(Array<string> | undefined)",
|
|
14830
15330
|
value: input.exclude
|
|
14831
|
-
})) && input.exclude.map((elem,
|
|
14832
|
-
path: _path + ".exclude[" +
|
|
15331
|
+
})) && input.exclude.map((elem, _index40) => "string" === typeof elem || _report(_exceptionable, {
|
|
15332
|
+
path: _path + ".exclude[" + _index40 + "]",
|
|
14833
15333
|
expected: "string",
|
|
14834
15334
|
value: elem
|
|
14835
15335
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -14840,8 +15340,8 @@ function _validateDomainRecord(domain, input) {
|
|
|
14840
15340
|
path: _path + ".include",
|
|
14841
15341
|
expected: "(Array<string> | undefined)",
|
|
14842
15342
|
value: input.include
|
|
14843
|
-
})) && input.include.map((elem,
|
|
14844
|
-
path: _path + ".include[" +
|
|
15343
|
+
})) && input.include.map((elem, _index41) => "string" === typeof elem || _report(_exceptionable, {
|
|
15344
|
+
path: _path + ".include[" + _index41 + "]",
|
|
14845
15345
|
expected: "string",
|
|
14846
15346
|
value: elem
|
|
14847
15347
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -14852,8 +15352,8 @@ function _validateDomainRecord(domain, input) {
|
|
|
14852
15352
|
path: _path + ".exclude",
|
|
14853
15353
|
expected: "(Array<string> | undefined)",
|
|
14854
15354
|
value: input.exclude
|
|
14855
|
-
})) && input.exclude.map((elem,
|
|
14856
|
-
path: _path + ".exclude[" +
|
|
15355
|
+
})) && input.exclude.map((elem, _index42) => "string" === typeof elem || _report(_exceptionable, {
|
|
15356
|
+
path: _path + ".exclude[" + _index42 + "]",
|
|
14857
15357
|
expected: "string",
|
|
14858
15358
|
value: elem
|
|
14859
15359
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -14864,8 +15364,8 @@ function _validateDomainRecord(domain, input) {
|
|
|
14864
15364
|
path: _path + ".include",
|
|
14865
15365
|
expected: "(Array<string> | undefined)",
|
|
14866
15366
|
value: input.include
|
|
14867
|
-
})) && input.include.map((elem,
|
|
14868
|
-
path: _path + ".include[" +
|
|
15367
|
+
})) && input.include.map((elem, _index43) => "string" === typeof elem || _report(_exceptionable, {
|
|
15368
|
+
path: _path + ".include[" + _index43 + "]",
|
|
14869
15369
|
expected: "string",
|
|
14870
15370
|
value: elem
|
|
14871
15371
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -14876,8 +15376,8 @@ function _validateDomainRecord(domain, input) {
|
|
|
14876
15376
|
path: _path + ".exclude",
|
|
14877
15377
|
expected: "(Array<string> | undefined)",
|
|
14878
15378
|
value: input.exclude
|
|
14879
|
-
})) && input.exclude.map((elem,
|
|
14880
|
-
path: _path + ".exclude[" +
|
|
15379
|
+
})) && input.exclude.map((elem, _index44) => "string" === typeof elem || _report(_exceptionable, {
|
|
15380
|
+
path: _path + ".exclude[" + _index44 + "]",
|
|
14881
15381
|
expected: "string",
|
|
14882
15382
|
value: elem
|
|
14883
15383
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -14888,8 +15388,8 @@ function _validateDomainRecord(domain, input) {
|
|
|
14888
15388
|
path: _path + ".include",
|
|
14889
15389
|
expected: "(Array<string> | undefined)",
|
|
14890
15390
|
value: input.include
|
|
14891
|
-
})) && input.include.map((elem,
|
|
14892
|
-
path: _path + ".include[" +
|
|
15391
|
+
})) && input.include.map((elem, _index45) => "string" === typeof elem || _report(_exceptionable, {
|
|
15392
|
+
path: _path + ".include[" + _index45 + "]",
|
|
14893
15393
|
expected: "string",
|
|
14894
15394
|
value: elem
|
|
14895
15395
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -14900,8 +15400,8 @@ function _validateDomainRecord(domain, input) {
|
|
|
14900
15400
|
path: _path + ".exclude",
|
|
14901
15401
|
expected: "(Array<string> | undefined)",
|
|
14902
15402
|
value: input.exclude
|
|
14903
|
-
})) && input.exclude.map((elem,
|
|
14904
|
-
path: _path + ".exclude[" +
|
|
15403
|
+
})) && input.exclude.map((elem, _index46) => "string" === typeof elem || _report(_exceptionable, {
|
|
15404
|
+
path: _path + ".exclude[" + _index46 + "]",
|
|
14905
15405
|
expected: "string",
|
|
14906
15406
|
value: elem
|
|
14907
15407
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -14952,24 +15452,40 @@ function _validateDomainRecord(domain, input) {
|
|
|
14952
15452
|
path: _path + ".maxTabs",
|
|
14953
15453
|
expected: "(number | undefined)",
|
|
14954
15454
|
value: input.maxTabs
|
|
14955
|
-
})
|
|
15455
|
+
}), undefined === input.layout || ("object" === typeof input.layout && null !== input.layout && false === Array.isArray(input.layout) || _report(_exceptionable, {
|
|
15456
|
+
path: _path + ".layout",
|
|
15457
|
+
expected: "(__type.o15 | undefined)",
|
|
15458
|
+
value: input.layout
|
|
15459
|
+
})) && _vo19(input.layout, _path + ".layout", true && _exceptionable) || _report(_exceptionable, {
|
|
15460
|
+
path: _path + ".layout",
|
|
15461
|
+
expected: "(__type.o15 | undefined)",
|
|
15462
|
+
value: input.layout
|
|
15463
|
+
})].every(flag => flag); const _vo19 = (input, _path, _exceptionable = true) => [undefined === input.bookmarks || "number" === typeof input.bookmarks || _report(_exceptionable, {
|
|
15464
|
+
path: _path + ".bookmarks",
|
|
15465
|
+
expected: "(number | undefined)",
|
|
15466
|
+
value: input.bookmarks
|
|
15467
|
+
}), undefined === input.browser || "number" === typeof input.browser || _report(_exceptionable, {
|
|
15468
|
+
path: _path + ".browser",
|
|
15469
|
+
expected: "(number | undefined)",
|
|
15470
|
+
value: input.browser
|
|
15471
|
+
})].every(flag => flag); const _vo20 = (input, _path, _exceptionable = true) => [undefined === input.createMenu || ("object" === typeof input.createMenu && null !== input.createMenu && false === Array.isArray(input.createMenu) || _report(_exceptionable, {
|
|
14956
15472
|
path: _path + ".createMenu",
|
|
14957
|
-
expected: "(__type.
|
|
15473
|
+
expected: "(__type.o17 | undefined)",
|
|
14958
15474
|
value: input.createMenu
|
|
14959
|
-
})) &&
|
|
15475
|
+
})) && _vo21(input.createMenu, _path + ".createMenu", true && _exceptionable) || _report(_exceptionable, {
|
|
14960
15476
|
path: _path + ".createMenu",
|
|
14961
|
-
expected: "(__type.
|
|
15477
|
+
expected: "(__type.o17 | undefined)",
|
|
14962
15478
|
value: input.createMenu
|
|
14963
15479
|
}), undefined === input.colorTags || (Array.isArray(input.colorTags) || _report(_exceptionable, {
|
|
14964
15480
|
path: _path + ".colorTags",
|
|
14965
15481
|
expected: "(Array<PromotedTag> | undefined)",
|
|
14966
15482
|
value: input.colorTags
|
|
14967
|
-
})) && input.colorTags.map((elem,
|
|
14968
|
-
path: _path + ".colorTags[" +
|
|
15483
|
+
})) && input.colorTags.map((elem, _index47) => ("object" === typeof elem && null !== elem || _report(_exceptionable, {
|
|
15484
|
+
path: _path + ".colorTags[" + _index47 + "]",
|
|
14969
15485
|
expected: "PromotedTag",
|
|
14970
15486
|
value: elem
|
|
14971
|
-
})) &&
|
|
14972
|
-
path: _path + ".colorTags[" +
|
|
15487
|
+
})) && _vo22(elem, _path + ".colorTags[" + _index47 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
15488
|
+
path: _path + ".colorTags[" + _index47 + "]",
|
|
14973
15489
|
expected: "PromotedTag",
|
|
14974
15490
|
value: elem
|
|
14975
15491
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -14986,13 +15502,13 @@ function _validateDomainRecord(domain, input) {
|
|
|
14986
15502
|
value: input.readRate
|
|
14987
15503
|
}), undefined === input.collapsedNodes || ("object" === typeof input.collapsedNodes && null !== input.collapsedNodes && false === Array.isArray(input.collapsedNodes) || _report(_exceptionable, {
|
|
14988
15504
|
path: _path + ".collapsedNodes",
|
|
14989
|
-
expected: "(__type.
|
|
15505
|
+
expected: "(__type.o18 | undefined)",
|
|
14990
15506
|
value: input.collapsedNodes
|
|
14991
|
-
})) &&
|
|
15507
|
+
})) && _vo23(input.collapsedNodes, _path + ".collapsedNodes", true && _exceptionable) || _report(_exceptionable, {
|
|
14992
15508
|
path: _path + ".collapsedNodes",
|
|
14993
|
-
expected: "(__type.
|
|
15509
|
+
expected: "(__type.o18 | undefined)",
|
|
14994
15510
|
value: input.collapsedNodes
|
|
14995
|
-
})].every(flag => flag); const
|
|
15511
|
+
})].every(flag => flag); const _vo21 = (input, _path, _exceptionable = true) => [undefined === input.sortBy || "index" === input.sortBy || "title" === input.sortBy || _report(_exceptionable, {
|
|
14996
15512
|
path: _path + ".sortBy",
|
|
14997
15513
|
expected: "(\"index\" | \"title\" | undefined)",
|
|
14998
15514
|
value: input.sortBy
|
|
@@ -15000,7 +15516,7 @@ function _validateDomainRecord(domain, input) {
|
|
|
15000
15516
|
path: _path + ".showPreview",
|
|
15001
15517
|
expected: "(boolean | undefined)",
|
|
15002
15518
|
value: input.showPreview
|
|
15003
|
-
})].every(flag => flag); const
|
|
15519
|
+
})].every(flag => flag); const _vo22 = (input, _path, _exceptionable = true) => [null === input.name || "string" === typeof input.name || _report(_exceptionable, {
|
|
15004
15520
|
path: _path + ".name",
|
|
15005
15521
|
expected: "(null | string)",
|
|
15006
15522
|
value: input.name
|
|
@@ -15016,20 +15532,20 @@ function _validateDomainRecord(domain, input) {
|
|
|
15016
15532
|
path: _path + ".description",
|
|
15017
15533
|
expected: "(null | string)",
|
|
15018
15534
|
value: input.description
|
|
15019
|
-
})].every(flag => flag); const
|
|
15535
|
+
})].every(flag => flag); const _vo23 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
15020
15536
|
const value = input[key];
|
|
15021
15537
|
if (undefined === value)
|
|
15022
15538
|
return true;
|
|
15023
15539
|
return ("object" === typeof value && null !== value && false === Array.isArray(value) || _report(_exceptionable, {
|
|
15024
15540
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15025
|
-
expected: "__type.
|
|
15541
|
+
expected: "__type.o19",
|
|
15026
15542
|
value: value
|
|
15027
|
-
})) &&
|
|
15543
|
+
})) && _vo24(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || _report(_exceptionable, {
|
|
15028
15544
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15029
|
-
expected: "__type.
|
|
15545
|
+
expected: "__type.o19",
|
|
15030
15546
|
value: value
|
|
15031
15547
|
});
|
|
15032
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
15548
|
+
}).every(flag => flag)].every(flag => flag); const _vo24 = (input, _path, _exceptionable = true) => [undefined === input.preview || "boolean" === typeof input.preview || _report(_exceptionable, {
|
|
15033
15549
|
path: _path + ".preview",
|
|
15034
15550
|
expected: "(boolean | undefined)",
|
|
15035
15551
|
value: input.preview
|
|
@@ -15037,7 +15553,7 @@ function _validateDomainRecord(domain, input) {
|
|
|
15037
15553
|
path: _path + ".children",
|
|
15038
15554
|
expected: "(boolean | undefined)",
|
|
15039
15555
|
value: input.children
|
|
15040
|
-
})].every(flag => flag); const
|
|
15556
|
+
})].every(flag => flag); const _vo25 = (input, _path, _exceptionable = true) => [undefined === input.graphicBaseTemplate || "string" === typeof input.graphicBaseTemplate || _report(_exceptionable, {
|
|
15041
15557
|
path: _path + ".graphicBaseTemplate",
|
|
15042
15558
|
expected: "(string | undefined)",
|
|
15043
15559
|
value: input.graphicBaseTemplate
|
|
@@ -15045,8 +15561,8 @@ function _validateDomainRecord(domain, input) {
|
|
|
15045
15561
|
path: _path + ".favorites",
|
|
15046
15562
|
expected: "(Array<string> | undefined)",
|
|
15047
15563
|
value: input.favorites
|
|
15048
|
-
})) && input.favorites.map((elem,
|
|
15049
|
-
path: _path + ".favorites[" +
|
|
15564
|
+
})) && input.favorites.map((elem, _index48) => "string" === typeof elem || _report(_exceptionable, {
|
|
15565
|
+
path: _path + ".favorites[" + _index48 + "]",
|
|
15050
15566
|
expected: "string",
|
|
15051
15567
|
value: elem
|
|
15052
15568
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -15057,24 +15573,24 @@ function _validateDomainRecord(domain, input) {
|
|
|
15057
15573
|
path: _path + ".defaults",
|
|
15058
15574
|
expected: "(Record<string, __type> | undefined)",
|
|
15059
15575
|
value: input.defaults
|
|
15060
|
-
})) &&
|
|
15576
|
+
})) && _vo26(input.defaults, _path + ".defaults", true && _exceptionable) || _report(_exceptionable, {
|
|
15061
15577
|
path: _path + ".defaults",
|
|
15062
15578
|
expected: "(Record<string, __type> | undefined)",
|
|
15063
15579
|
value: input.defaults
|
|
15064
|
-
})].every(flag => flag); const
|
|
15580
|
+
})].every(flag => flag); const _vo26 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
15065
15581
|
const value = input[key];
|
|
15066
15582
|
if (undefined === value)
|
|
15067
15583
|
return true;
|
|
15068
15584
|
return ("object" === typeof value && null !== value && false === Array.isArray(value) || _report(_exceptionable, {
|
|
15069
15585
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15070
|
-
expected: "__type.
|
|
15586
|
+
expected: "__type.o21",
|
|
15071
15587
|
value: value
|
|
15072
|
-
})) &&
|
|
15588
|
+
})) && _vo27(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || _report(_exceptionable, {
|
|
15073
15589
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15074
|
-
expected: "__type.
|
|
15590
|
+
expected: "__type.o21",
|
|
15075
15591
|
value: value
|
|
15076
15592
|
});
|
|
15077
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
15593
|
+
}).every(flag => flag)].every(flag => flag); const _vo27 = (input, _path, _exceptionable = true) => [undefined === input.event || "string" === typeof input.event || _report(_exceptionable, {
|
|
15078
15594
|
path: _path + ".event",
|
|
15079
15595
|
expected: "(string | undefined)",
|
|
15080
15596
|
value: input.event
|
|
@@ -15082,11 +15598,11 @@ function _validateDomainRecord(domain, input) {
|
|
|
15082
15598
|
path: _path + ".property",
|
|
15083
15599
|
expected: "(string | undefined)",
|
|
15084
15600
|
value: input.property
|
|
15085
|
-
})].every(flag => flag); const
|
|
15601
|
+
})].every(flag => flag); const _vo28 = (input, _path, _exceptionable = true) => [undefined === input.eventThumbnails || "boolean" === typeof input.eventThumbnails || _report(_exceptionable, {
|
|
15086
15602
|
path: _path + ".eventThumbnails",
|
|
15087
15603
|
expected: "(boolean | undefined)",
|
|
15088
15604
|
value: input.eventThumbnails
|
|
15089
|
-
})].every(flag => flag); const
|
|
15605
|
+
})].every(flag => flag); const _vo29 = (input, _path, _exceptionable = true) => [undefined === input.dimOnBlur || "boolean" === typeof input.dimOnBlur || _report(_exceptionable, {
|
|
15090
15606
|
path: _path + ".dimOnBlur",
|
|
15091
15607
|
expected: "(boolean | undefined)",
|
|
15092
15608
|
value: input.dimOnBlur
|
|
@@ -15094,95 +15610,99 @@ function _validateDomainRecord(domain, input) {
|
|
|
15094
15610
|
path: _path + ".float",
|
|
15095
15611
|
expected: "(\"disabled\" | \"gallery\" | \"rundown\" | undefined)",
|
|
15096
15612
|
value: input.float
|
|
15097
|
-
})
|
|
15613
|
+
}), undefined === input.countFloatedDuration || "boolean" === typeof input.countFloatedDuration || _report(_exceptionable, {
|
|
15614
|
+
path: _path + ".countFloatedDuration",
|
|
15615
|
+
expected: "(boolean | undefined)",
|
|
15616
|
+
value: input.countFloatedDuration
|
|
15617
|
+
})].every(flag => flag); const _vo30 = (input, _path, _exceptionable = true) => [undefined === input.display || ("object" === typeof input.display && null !== input.display && false === Array.isArray(input.display) || _report(_exceptionable, {
|
|
15098
15618
|
path: _path + ".display",
|
|
15099
|
-
expected: "(__type.
|
|
15619
|
+
expected: "(__type.o25 | undefined)",
|
|
15100
15620
|
value: input.display
|
|
15101
|
-
})) &&
|
|
15621
|
+
})) && _vo31(input.display, _path + ".display", true && _exceptionable) || _report(_exceptionable, {
|
|
15102
15622
|
path: _path + ".display",
|
|
15103
|
-
expected: "(__type.
|
|
15623
|
+
expected: "(__type.o25 | undefined)",
|
|
15104
15624
|
value: input.display
|
|
15105
15625
|
}), undefined === input.browser || ("object" === typeof input.browser && null !== input.browser && false === Array.isArray(input.browser) || _report(_exceptionable, {
|
|
15106
15626
|
path: _path + ".browser",
|
|
15107
|
-
expected: "(__type.
|
|
15627
|
+
expected: "(__type.o26 | undefined)",
|
|
15108
15628
|
value: input.browser
|
|
15109
|
-
})) &&
|
|
15629
|
+
})) && _vo33(input.browser, _path + ".browser", true && _exceptionable) || _report(_exceptionable, {
|
|
15110
15630
|
path: _path + ".browser",
|
|
15111
|
-
expected: "(__type.
|
|
15631
|
+
expected: "(__type.o26 | undefined)",
|
|
15112
15632
|
value: input.browser
|
|
15113
15633
|
}), undefined === input.gallery || ("object" === typeof input.gallery && null !== input.gallery && false === Array.isArray(input.gallery) || _report(_exceptionable, {
|
|
15114
15634
|
path: _path + ".gallery",
|
|
15115
|
-
expected: "(__type.
|
|
15635
|
+
expected: "(__type.o27 | undefined)",
|
|
15116
15636
|
value: input.gallery
|
|
15117
|
-
})) &&
|
|
15637
|
+
})) && _vo34(input.gallery, _path + ".gallery", true && _exceptionable) || _report(_exceptionable, {
|
|
15118
15638
|
path: _path + ".gallery",
|
|
15119
|
-
expected: "(__type.
|
|
15639
|
+
expected: "(__type.o27 | undefined)",
|
|
15120
15640
|
value: input.gallery
|
|
15121
15641
|
}), undefined === input.global || ("object" === typeof input.global && null !== input.global && false === Array.isArray(input.global) || _report(_exceptionable, {
|
|
15122
15642
|
path: _path + ".global",
|
|
15123
|
-
expected: "(__type.
|
|
15643
|
+
expected: "(__type.o28 | undefined)",
|
|
15124
15644
|
value: input.global
|
|
15125
|
-
})) &&
|
|
15645
|
+
})) && _vo35(input.global, _path + ".global", true && _exceptionable) || _report(_exceptionable, {
|
|
15126
15646
|
path: _path + ".global",
|
|
15127
|
-
expected: "(__type.
|
|
15647
|
+
expected: "(__type.o28 | undefined)",
|
|
15128
15648
|
value: input.global
|
|
15129
15649
|
}), undefined === input.player || ("object" === typeof input.player && null !== input.player && false === Array.isArray(input.player) || _report(_exceptionable, {
|
|
15130
15650
|
path: _path + ".player",
|
|
15131
|
-
expected: "(__type.
|
|
15651
|
+
expected: "(__type.o29 | undefined)",
|
|
15132
15652
|
value: input.player
|
|
15133
|
-
})) &&
|
|
15653
|
+
})) && _vo36(input.player, _path + ".player", true && _exceptionable) || _report(_exceptionable, {
|
|
15134
15654
|
path: _path + ".player",
|
|
15135
|
-
expected: "(__type.
|
|
15655
|
+
expected: "(__type.o29 | undefined)",
|
|
15136
15656
|
value: input.player
|
|
15137
15657
|
}), undefined === input.script || ("object" === typeof input.script && null !== input.script && false === Array.isArray(input.script) || _report(_exceptionable, {
|
|
15138
15658
|
path: _path + ".script",
|
|
15139
|
-
expected: "(__type.
|
|
15659
|
+
expected: "(__type.o30 | undefined)",
|
|
15140
15660
|
value: input.script
|
|
15141
|
-
})) &&
|
|
15661
|
+
})) && _vo37(input.script, _path + ".script", true && _exceptionable) || _report(_exceptionable, {
|
|
15142
15662
|
path: _path + ".script",
|
|
15143
|
-
expected: "(__type.
|
|
15663
|
+
expected: "(__type.o30 | undefined)",
|
|
15144
15664
|
value: input.script
|
|
15145
15665
|
}), undefined === input.codeEditor || ("object" === typeof input.codeEditor && null !== input.codeEditor && false === Array.isArray(input.codeEditor) || _report(_exceptionable, {
|
|
15146
15666
|
path: _path + ".codeEditor",
|
|
15147
|
-
expected: "(__type.
|
|
15667
|
+
expected: "(__type.o31 | undefined)",
|
|
15148
15668
|
value: input.codeEditor
|
|
15149
|
-
})) &&
|
|
15669
|
+
})) && _vo38(input.codeEditor, _path + ".codeEditor", true && _exceptionable) || _report(_exceptionable, {
|
|
15150
15670
|
path: _path + ".codeEditor",
|
|
15151
|
-
expected: "(__type.
|
|
15671
|
+
expected: "(__type.o31 | undefined)",
|
|
15152
15672
|
value: input.codeEditor
|
|
15153
15673
|
}), undefined === input.bookmarks || ("object" === typeof input.bookmarks && null !== input.bookmarks && false === Array.isArray(input.bookmarks) || _report(_exceptionable, {
|
|
15154
15674
|
path: _path + ".bookmarks",
|
|
15155
|
-
expected: "(__type.
|
|
15675
|
+
expected: "(__type.o32 | undefined)",
|
|
15156
15676
|
value: input.bookmarks
|
|
15157
|
-
})) &&
|
|
15677
|
+
})) && _vo39(input.bookmarks, _path + ".bookmarks", true && _exceptionable) || _report(_exceptionable, {
|
|
15158
15678
|
path: _path + ".bookmarks",
|
|
15159
|
-
expected: "(__type.
|
|
15679
|
+
expected: "(__type.o32 | undefined)",
|
|
15160
15680
|
value: input.bookmarks
|
|
15161
15681
|
}), undefined === input.edit || ("object" === typeof input.edit && null !== input.edit && false === Array.isArray(input.edit) || _report(_exceptionable, {
|
|
15162
15682
|
path: _path + ".edit",
|
|
15163
|
-
expected: "(__type.
|
|
15683
|
+
expected: "(__type.o33 | undefined)",
|
|
15164
15684
|
value: input.edit
|
|
15165
|
-
})) &&
|
|
15685
|
+
})) && _vo40(input.edit, _path + ".edit", true && _exceptionable) || _report(_exceptionable, {
|
|
15166
15686
|
path: _path + ".edit",
|
|
15167
|
-
expected: "(__type.
|
|
15687
|
+
expected: "(__type.o33 | undefined)",
|
|
15168
15688
|
value: input.edit
|
|
15169
15689
|
}), undefined === input.rundown || ("object" === typeof input.rundown && null !== input.rundown && false === Array.isArray(input.rundown) || _report(_exceptionable, {
|
|
15170
15690
|
path: _path + ".rundown",
|
|
15171
|
-
expected: "(__type.
|
|
15691
|
+
expected: "(__type.o34 | undefined)",
|
|
15172
15692
|
value: input.rundown
|
|
15173
|
-
})) &&
|
|
15693
|
+
})) && _vo41(input.rundown, _path + ".rundown", true && _exceptionable) || _report(_exceptionable, {
|
|
15174
15694
|
path: _path + ".rundown",
|
|
15175
|
-
expected: "(__type.
|
|
15695
|
+
expected: "(__type.o34 | undefined)",
|
|
15176
15696
|
value: input.rundown
|
|
15177
15697
|
}), undefined === input.segment || ("object" === typeof input.segment && null !== input.segment && false === Array.isArray(input.segment) || _report(_exceptionable, {
|
|
15178
15698
|
path: _path + ".segment",
|
|
15179
|
-
expected: "(__type.
|
|
15699
|
+
expected: "(__type.o35 | undefined)",
|
|
15180
15700
|
value: input.segment
|
|
15181
|
-
})) &&
|
|
15701
|
+
})) && _vo42(input.segment, _path + ".segment", true && _exceptionable) || _report(_exceptionable, {
|
|
15182
15702
|
path: _path + ".segment",
|
|
15183
|
-
expected: "(__type.
|
|
15703
|
+
expected: "(__type.o35 | undefined)",
|
|
15184
15704
|
value: input.segment
|
|
15185
|
-
})].every(flag => flag); const
|
|
15705
|
+
})].every(flag => flag); const _vo31 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
15186
15706
|
const value = input[key];
|
|
15187
15707
|
if (undefined === value)
|
|
15188
15708
|
return true;
|
|
@@ -15190,12 +15710,12 @@ function _validateDomainRecord(domain, input) {
|
|
|
15190
15710
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15191
15711
|
expected: "KeymapSetting",
|
|
15192
15712
|
value: value
|
|
15193
|
-
})) &&
|
|
15713
|
+
})) && _vo32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || _report(_exceptionable, {
|
|
15194
15714
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15195
15715
|
expected: "KeymapSetting",
|
|
15196
15716
|
value: value
|
|
15197
15717
|
});
|
|
15198
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
15718
|
+
}).every(flag => flag)].every(flag => flag); const _vo32 = (input, _path, _exceptionable = true) => [undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
15199
15719
|
path: _path + ".title",
|
|
15200
15720
|
expected: "(string | undefined)",
|
|
15201
15721
|
value: input.title
|
|
@@ -15203,7 +15723,7 @@ function _validateDomainRecord(domain, input) {
|
|
|
15203
15723
|
path: _path + ".sequence",
|
|
15204
15724
|
expected: "(string | undefined)",
|
|
15205
15725
|
value: input.sequence
|
|
15206
|
-
})].every(flag => flag); const
|
|
15726
|
+
})].every(flag => flag); const _vo33 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
15207
15727
|
const value = input[key];
|
|
15208
15728
|
if (undefined === value)
|
|
15209
15729
|
return true;
|
|
@@ -15211,12 +15731,12 @@ function _validateDomainRecord(domain, input) {
|
|
|
15211
15731
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15212
15732
|
expected: "KeymapSetting",
|
|
15213
15733
|
value: value
|
|
15214
|
-
})) &&
|
|
15734
|
+
})) && _vo32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || _report(_exceptionable, {
|
|
15215
15735
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15216
15736
|
expected: "KeymapSetting",
|
|
15217
15737
|
value: value
|
|
15218
15738
|
});
|
|
15219
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
15739
|
+
}).every(flag => flag)].every(flag => flag); const _vo34 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
15220
15740
|
const value = input[key];
|
|
15221
15741
|
if (undefined === value)
|
|
15222
15742
|
return true;
|
|
@@ -15224,12 +15744,12 @@ function _validateDomainRecord(domain, input) {
|
|
|
15224
15744
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15225
15745
|
expected: "KeymapSetting",
|
|
15226
15746
|
value: value
|
|
15227
|
-
})) &&
|
|
15747
|
+
})) && _vo32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || _report(_exceptionable, {
|
|
15228
15748
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15229
15749
|
expected: "KeymapSetting",
|
|
15230
15750
|
value: value
|
|
15231
15751
|
});
|
|
15232
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
15752
|
+
}).every(flag => flag)].every(flag => flag); const _vo35 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
15233
15753
|
const value = input[key];
|
|
15234
15754
|
if (undefined === value)
|
|
15235
15755
|
return true;
|
|
@@ -15237,12 +15757,12 @@ function _validateDomainRecord(domain, input) {
|
|
|
15237
15757
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15238
15758
|
expected: "KeymapSetting",
|
|
15239
15759
|
value: value
|
|
15240
|
-
})) &&
|
|
15760
|
+
})) && _vo32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || _report(_exceptionable, {
|
|
15241
15761
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15242
15762
|
expected: "KeymapSetting",
|
|
15243
15763
|
value: value
|
|
15244
15764
|
});
|
|
15245
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
15765
|
+
}).every(flag => flag)].every(flag => flag); const _vo36 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
15246
15766
|
const value = input[key];
|
|
15247
15767
|
if (undefined === value)
|
|
15248
15768
|
return true;
|
|
@@ -15250,12 +15770,12 @@ function _validateDomainRecord(domain, input) {
|
|
|
15250
15770
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15251
15771
|
expected: "KeymapSetting",
|
|
15252
15772
|
value: value
|
|
15253
|
-
})) &&
|
|
15773
|
+
})) && _vo32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || _report(_exceptionable, {
|
|
15254
15774
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15255
15775
|
expected: "KeymapSetting",
|
|
15256
15776
|
value: value
|
|
15257
15777
|
});
|
|
15258
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
15778
|
+
}).every(flag => flag)].every(flag => flag); const _vo37 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
15259
15779
|
const value = input[key];
|
|
15260
15780
|
if (undefined === value)
|
|
15261
15781
|
return true;
|
|
@@ -15263,12 +15783,12 @@ function _validateDomainRecord(domain, input) {
|
|
|
15263
15783
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15264
15784
|
expected: "KeymapSetting",
|
|
15265
15785
|
value: value
|
|
15266
|
-
})) &&
|
|
15786
|
+
})) && _vo32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || _report(_exceptionable, {
|
|
15267
15787
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15268
15788
|
expected: "KeymapSetting",
|
|
15269
15789
|
value: value
|
|
15270
15790
|
});
|
|
15271
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
15791
|
+
}).every(flag => flag)].every(flag => flag); const _vo38 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
15272
15792
|
const value = input[key];
|
|
15273
15793
|
if (undefined === value)
|
|
15274
15794
|
return true;
|
|
@@ -15276,12 +15796,12 @@ function _validateDomainRecord(domain, input) {
|
|
|
15276
15796
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15277
15797
|
expected: "KeymapSetting",
|
|
15278
15798
|
value: value
|
|
15279
|
-
})) &&
|
|
15799
|
+
})) && _vo32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || _report(_exceptionable, {
|
|
15280
15800
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15281
15801
|
expected: "KeymapSetting",
|
|
15282
15802
|
value: value
|
|
15283
15803
|
});
|
|
15284
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
15804
|
+
}).every(flag => flag)].every(flag => flag); const _vo39 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
15285
15805
|
const value = input[key];
|
|
15286
15806
|
if (undefined === value)
|
|
15287
15807
|
return true;
|
|
@@ -15289,12 +15809,12 @@ function _validateDomainRecord(domain, input) {
|
|
|
15289
15809
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15290
15810
|
expected: "KeymapSetting",
|
|
15291
15811
|
value: value
|
|
15292
|
-
})) &&
|
|
15812
|
+
})) && _vo32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || _report(_exceptionable, {
|
|
15293
15813
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15294
15814
|
expected: "KeymapSetting",
|
|
15295
15815
|
value: value
|
|
15296
15816
|
});
|
|
15297
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
15817
|
+
}).every(flag => flag)].every(flag => flag); const _vo40 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
15298
15818
|
const value = input[key];
|
|
15299
15819
|
if (undefined === value)
|
|
15300
15820
|
return true;
|
|
@@ -15302,12 +15822,12 @@ function _validateDomainRecord(domain, input) {
|
|
|
15302
15822
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15303
15823
|
expected: "KeymapSetting",
|
|
15304
15824
|
value: value
|
|
15305
|
-
})) &&
|
|
15825
|
+
})) && _vo32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || _report(_exceptionable, {
|
|
15306
15826
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15307
15827
|
expected: "KeymapSetting",
|
|
15308
15828
|
value: value
|
|
15309
15829
|
});
|
|
15310
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
15830
|
+
}).every(flag => flag)].every(flag => flag); const _vo41 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
15311
15831
|
const value = input[key];
|
|
15312
15832
|
if (undefined === value)
|
|
15313
15833
|
return true;
|
|
@@ -15315,12 +15835,12 @@ function _validateDomainRecord(domain, input) {
|
|
|
15315
15835
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15316
15836
|
expected: "KeymapSetting",
|
|
15317
15837
|
value: value
|
|
15318
|
-
})) &&
|
|
15838
|
+
})) && _vo32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || _report(_exceptionable, {
|
|
15319
15839
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15320
15840
|
expected: "KeymapSetting",
|
|
15321
15841
|
value: value
|
|
15322
15842
|
});
|
|
15323
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
15843
|
+
}).every(flag => flag)].every(flag => flag); const _vo42 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
15324
15844
|
const value = input[key];
|
|
15325
15845
|
if (undefined === value)
|
|
15326
15846
|
return true;
|
|
@@ -15328,12 +15848,12 @@ function _validateDomainRecord(domain, input) {
|
|
|
15328
15848
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15329
15849
|
expected: "KeymapSetting",
|
|
15330
15850
|
value: value
|
|
15331
|
-
})) &&
|
|
15851
|
+
})) && _vo32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || _report(_exceptionable, {
|
|
15332
15852
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15333
15853
|
expected: "KeymapSetting",
|
|
15334
15854
|
value: value
|
|
15335
15855
|
});
|
|
15336
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
15856
|
+
}).every(flag => flag)].every(flag => flag); const _vo43 = (input, _path, _exceptionable = true) => [undefined === input.defaultFrameRate || "number" === typeof input.defaultFrameRate || _report(_exceptionable, {
|
|
15337
15857
|
path: _path + ".defaultFrameRate",
|
|
15338
15858
|
expected: "(number | undefined)",
|
|
15339
15859
|
value: input.defaultFrameRate
|
|
@@ -15343,11 +15863,11 @@ function _validateDomainRecord(domain, input) {
|
|
|
15343
15863
|
value: input.placeholder
|
|
15344
15864
|
}), undefined === input.guide || ("object" === typeof input.guide && null !== input.guide && false === Array.isArray(input.guide) || _report(_exceptionable, {
|
|
15345
15865
|
path: _path + ".guide",
|
|
15346
|
-
expected: "(__type.
|
|
15866
|
+
expected: "(__type.o37 | undefined)",
|
|
15347
15867
|
value: input.guide
|
|
15348
|
-
})) &&
|
|
15868
|
+
})) && _vo44(input.guide, _path + ".guide", true && _exceptionable) || _report(_exceptionable, {
|
|
15349
15869
|
path: _path + ".guide",
|
|
15350
|
-
expected: "(__type.
|
|
15870
|
+
expected: "(__type.o37 | undefined)",
|
|
15351
15871
|
value: input.guide
|
|
15352
15872
|
}), undefined === input.stepManyFrames || "number" === typeof input.stepManyFrames || _report(_exceptionable, {
|
|
15353
15873
|
path: _path + ".stepManyFrames",
|
|
@@ -15363,11 +15883,11 @@ function _validateDomainRecord(domain, input) {
|
|
|
15363
15883
|
value: input.importTitleTemplate
|
|
15364
15884
|
}), undefined === input.tile || ("object" === typeof input.tile && null !== input.tile && false === Array.isArray(input.tile) || _report(_exceptionable, {
|
|
15365
15885
|
path: _path + ".tile",
|
|
15366
|
-
expected: "(__type.
|
|
15886
|
+
expected: "(__type.o38 | undefined)",
|
|
15367
15887
|
value: input.tile
|
|
15368
|
-
})) &&
|
|
15888
|
+
})) && _vo45(input.tile, _path + ".tile", true && _exceptionable) || _report(_exceptionable, {
|
|
15369
15889
|
path: _path + ".tile",
|
|
15370
|
-
expected: "(__type.
|
|
15890
|
+
expected: "(__type.o38 | undefined)",
|
|
15371
15891
|
value: input.tile
|
|
15372
15892
|
}), undefined === input.timecodeReference || "string" === typeof input.timecodeReference || _report(_exceptionable, {
|
|
15373
15893
|
path: _path + ".timecodeReference",
|
|
@@ -15393,8 +15913,8 @@ function _validateDomainRecord(domain, input) {
|
|
|
15393
15913
|
path: _path + ".playbackRates",
|
|
15394
15914
|
expected: "(Array<number> | undefined)",
|
|
15395
15915
|
value: input.playbackRates
|
|
15396
|
-
})) && input.playbackRates.map((elem,
|
|
15397
|
-
path: _path + ".playbackRates[" +
|
|
15916
|
+
})) && input.playbackRates.map((elem, _index49) => "number" === typeof elem || _report(_exceptionable, {
|
|
15917
|
+
path: _path + ".playbackRates[" + _index49 + "]",
|
|
15398
15918
|
expected: "number",
|
|
15399
15919
|
value: elem
|
|
15400
15920
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -15403,11 +15923,11 @@ function _validateDomainRecord(domain, input) {
|
|
|
15403
15923
|
value: input.playbackRates
|
|
15404
15924
|
}), undefined === input.subtitles || ("object" === typeof input.subtitles && null !== input.subtitles && false === Array.isArray(input.subtitles) || _report(_exceptionable, {
|
|
15405
15925
|
path: _path + ".subtitles",
|
|
15406
|
-
expected: "(__type.
|
|
15926
|
+
expected: "(__type.o39 | undefined)",
|
|
15407
15927
|
value: input.subtitles
|
|
15408
|
-
})) &&
|
|
15928
|
+
})) && _vo46(input.subtitles, _path + ".subtitles", true && _exceptionable) || _report(_exceptionable, {
|
|
15409
15929
|
path: _path + ".subtitles",
|
|
15410
|
-
expected: "(__type.
|
|
15930
|
+
expected: "(__type.o39 | undefined)",
|
|
15411
15931
|
value: input.subtitles
|
|
15412
15932
|
}), undefined === input.subtitleTemplateId || "string" === typeof input.subtitleTemplateId || _report(_exceptionable, {
|
|
15413
15933
|
path: _path + ".subtitleTemplateId",
|
|
@@ -15421,13 +15941,13 @@ function _validateDomainRecord(domain, input) {
|
|
|
15421
15941
|
path: _path + ".guides",
|
|
15422
15942
|
expected: "(Array<__type>.o2 | undefined)",
|
|
15423
15943
|
value: input.guides
|
|
15424
|
-
})) && input.guides.map((elem,
|
|
15425
|
-
path: _path + ".guides[" +
|
|
15426
|
-
expected: "__type.
|
|
15944
|
+
})) && input.guides.map((elem, _index50) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || _report(_exceptionable, {
|
|
15945
|
+
path: _path + ".guides[" + _index50 + "]",
|
|
15946
|
+
expected: "__type.o42",
|
|
15427
15947
|
value: elem
|
|
15428
|
-
})) &&
|
|
15429
|
-
path: _path + ".guides[" +
|
|
15430
|
-
expected: "__type.
|
|
15948
|
+
})) && _vo49(elem, _path + ".guides[" + _index50 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
15949
|
+
path: _path + ".guides[" + _index50 + "]",
|
|
15950
|
+
expected: "__type.o42",
|
|
15431
15951
|
value: elem
|
|
15432
15952
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
15433
15953
|
path: _path + ".guides",
|
|
@@ -15439,33 +15959,33 @@ function _validateDomainRecord(domain, input) {
|
|
|
15439
15959
|
value: input.download
|
|
15440
15960
|
}), undefined === input.editMode || ("object" === typeof input.editMode && null !== input.editMode && false === Array.isArray(input.editMode) || _report(_exceptionable, {
|
|
15441
15961
|
path: _path + ".editMode",
|
|
15442
|
-
expected: "(__type.
|
|
15962
|
+
expected: "(__type.o43 | undefined)",
|
|
15443
15963
|
value: input.editMode
|
|
15444
|
-
})) &&
|
|
15964
|
+
})) && _vo50(input.editMode, _path + ".editMode", true && _exceptionable) || _report(_exceptionable, {
|
|
15445
15965
|
path: _path + ".editMode",
|
|
15446
|
-
expected: "(__type.
|
|
15966
|
+
expected: "(__type.o43 | undefined)",
|
|
15447
15967
|
value: input.editMode
|
|
15448
15968
|
}), undefined === input.transcribe || ("object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) || _report(_exceptionable, {
|
|
15449
15969
|
path: _path + ".transcribe",
|
|
15450
|
-
expected: "(__type.
|
|
15970
|
+
expected: "(__type.o44 | undefined)",
|
|
15451
15971
|
value: input.transcribe
|
|
15452
|
-
})) &&
|
|
15972
|
+
})) && _vo51(input.transcribe, _path + ".transcribe", true && _exceptionable) || _report(_exceptionable, {
|
|
15453
15973
|
path: _path + ".transcribe",
|
|
15454
|
-
expected: "(__type.
|
|
15974
|
+
expected: "(__type.o44 | undefined)",
|
|
15455
15975
|
value: input.transcribe
|
|
15456
15976
|
}), (null !== input.openCommand || _report(_exceptionable, {
|
|
15457
15977
|
path: _path + ".openCommand",
|
|
15458
|
-
expected: "(__type.
|
|
15978
|
+
expected: "(__type.o48 | string | undefined)",
|
|
15459
15979
|
value: input.openCommand
|
|
15460
15980
|
})) && (undefined === input.openCommand || "string" === typeof input.openCommand || ("object" === typeof input.openCommand && null !== input.openCommand && false === Array.isArray(input.openCommand) || _report(_exceptionable, {
|
|
15461
15981
|
path: _path + ".openCommand",
|
|
15462
|
-
expected: "(__type.
|
|
15982
|
+
expected: "(__type.o48 | string | undefined)",
|
|
15463
15983
|
value: input.openCommand
|
|
15464
|
-
})) &&
|
|
15984
|
+
})) && _vo55(input.openCommand, _path + ".openCommand", true && _exceptionable) || _report(_exceptionable, {
|
|
15465
15985
|
path: _path + ".openCommand",
|
|
15466
|
-
expected: "(__type.
|
|
15986
|
+
expected: "(__type.o48 | string | undefined)",
|
|
15467
15987
|
value: input.openCommand
|
|
15468
|
-
}))].every(flag => flag); const
|
|
15988
|
+
}))].every(flag => flag); const _vo44 = (input, _path, _exceptionable = true) => [undefined === input.mask || "boolean" === typeof input.mask || _report(_exceptionable, {
|
|
15469
15989
|
path: _path + ".mask",
|
|
15470
15990
|
expected: "(boolean | undefined)",
|
|
15471
15991
|
value: input.mask
|
|
@@ -15477,7 +15997,7 @@ function _validateDomainRecord(domain, input) {
|
|
|
15477
15997
|
path: _path + ".titleSafe",
|
|
15478
15998
|
expected: "(boolean | undefined)",
|
|
15479
15999
|
value: input.titleSafe
|
|
15480
|
-
})].every(flag => flag); const
|
|
16000
|
+
})].every(flag => flag); const _vo45 = (input, _path, _exceptionable = true) => [undefined === input.preview || "disabled" === input.preview || "play" === input.preview || "seek" === input.preview || "seekplay" === input.preview || "boolean" === typeof input.preview || _report(_exceptionable, {
|
|
15481
16001
|
path: _path + ".preview",
|
|
15482
16002
|
expected: "(\"disabled\" | \"play\" | \"seek\" | \"seekplay\" | boolean | undefined)",
|
|
15483
16003
|
value: input.preview
|
|
@@ -15485,7 +16005,7 @@ function _validateDomainRecord(domain, input) {
|
|
|
15485
16005
|
path: _path + ".showRenderProgress",
|
|
15486
16006
|
expected: "(boolean | undefined)",
|
|
15487
16007
|
value: input.showRenderProgress
|
|
15488
|
-
})].every(flag => flag); const
|
|
16008
|
+
})].every(flag => flag); const _vo46 = (input, _path, _exceptionable = true) => [undefined === input.spacing || "number" === typeof input.spacing || _report(_exceptionable, {
|
|
15489
16009
|
path: _path + ".spacing",
|
|
15490
16010
|
expected: "(number | undefined)",
|
|
15491
16011
|
value: input.spacing
|
|
@@ -15497,13 +16017,13 @@ function _validateDomainRecord(domain, input) {
|
|
|
15497
16017
|
path: _path + ".suggestions",
|
|
15498
16018
|
expected: "(Array<__type> | undefined)",
|
|
15499
16019
|
value: input.suggestions
|
|
15500
|
-
})) && input.suggestions.map((elem,
|
|
15501
|
-
path: _path + ".suggestions[" +
|
|
15502
|
-
expected: "__type.
|
|
16020
|
+
})) && input.suggestions.map((elem, _index51) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || _report(_exceptionable, {
|
|
16021
|
+
path: _path + ".suggestions[" + _index51 + "]",
|
|
16022
|
+
expected: "__type.o40",
|
|
15503
16023
|
value: elem
|
|
15504
|
-
})) &&
|
|
15505
|
-
path: _path + ".suggestions[" +
|
|
15506
|
-
expected: "__type.
|
|
16024
|
+
})) && _vo47(elem, _path + ".suggestions[" + _index51 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
16025
|
+
path: _path + ".suggestions[" + _index51 + "]",
|
|
16026
|
+
expected: "__type.o40",
|
|
15507
16027
|
value: elem
|
|
15508
16028
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
15509
16029
|
path: _path + ".suggestions",
|
|
@@ -15513,13 +16033,13 @@ function _validateDomainRecord(domain, input) {
|
|
|
15513
16033
|
path: _path + ".colors",
|
|
15514
16034
|
expected: "(Array<__type>.o1 | undefined)",
|
|
15515
16035
|
value: input.colors
|
|
15516
|
-
})) && input.colors.map((elem,
|
|
15517
|
-
path: _path + ".colors[" +
|
|
15518
|
-
expected: "__type.
|
|
16036
|
+
})) && input.colors.map((elem, _index52) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || _report(_exceptionable, {
|
|
16037
|
+
path: _path + ".colors[" + _index52 + "]",
|
|
16038
|
+
expected: "__type.o41",
|
|
15519
16039
|
value: elem
|
|
15520
|
-
})) &&
|
|
15521
|
-
path: _path + ".colors[" +
|
|
15522
|
-
expected: "__type.
|
|
16040
|
+
})) && _vo48(elem, _path + ".colors[" + _index52 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
16041
|
+
path: _path + ".colors[" + _index52 + "]",
|
|
16042
|
+
expected: "__type.o41",
|
|
15523
16043
|
value: elem
|
|
15524
16044
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
15525
16045
|
path: _path + ".colors",
|
|
@@ -15529,15 +16049,15 @@ function _validateDomainRecord(domain, input) {
|
|
|
15529
16049
|
path: _path + ".overridableProperties",
|
|
15530
16050
|
expected: "(Array<keyof SubtitleStyle | null> | undefined)",
|
|
15531
16051
|
value: input.overridableProperties
|
|
15532
|
-
})) && input.overridableProperties.map((elem,
|
|
15533
|
-
path: _path + ".overridableProperties[" +
|
|
16052
|
+
})) && input.overridableProperties.map((elem, _index53) => null === elem || true === _vv54.has(elem) || _report(_exceptionable, {
|
|
16053
|
+
path: _path + ".overridableProperties[" + _index53 + "]",
|
|
15534
16054
|
expected: "(\"alignment\" | \"angle\" | \"backColour\" | \"bold\" | \"borderStyle\" | \"encoding\" | \"fontname\" | \"fontsize\" | \"italic\" | \"marginL\" | \"marginR\" | \"marginV\" | \"name\" | \"outline\" | \"outlineColour\" | \"primaryColour\" | \"scaleX\" | \"scaleY\" | \"secondaryColour\" | \"shadow\" | \"spacing\" | \"strikeOut\" | \"underline\" | null)",
|
|
15535
16055
|
value: elem
|
|
15536
16056
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
15537
16057
|
path: _path + ".overridableProperties",
|
|
15538
16058
|
expected: "(Array<keyof SubtitleStyle | null> | undefined)",
|
|
15539
16059
|
value: input.overridableProperties
|
|
15540
|
-
})].every(flag => flag); const
|
|
16060
|
+
})].every(flag => flag); const _vo47 = (input, _path, _exceptionable = true) => [null === input.ifAspectRatio || undefined === input.ifAspectRatio || "string" === typeof input.ifAspectRatio || _report(_exceptionable, {
|
|
15541
16061
|
path: _path + ".ifAspectRatio",
|
|
15542
16062
|
expected: "(null | string | undefined)",
|
|
15543
16063
|
value: input.ifAspectRatio
|
|
@@ -15553,7 +16073,7 @@ function _validateDomainRecord(domain, input) {
|
|
|
15553
16073
|
path: _path + ".thenMaxCharactersPerLine",
|
|
15554
16074
|
expected: "(null | number | undefined)",
|
|
15555
16075
|
value: input.thenMaxCharactersPerLine
|
|
15556
|
-
})].every(flag => flag); const
|
|
16076
|
+
})].every(flag => flag); const _vo48 = (input, _path, _exceptionable = true) => [null === input.label || undefined === input.label || "string" === typeof input.label || _report(_exceptionable, {
|
|
15557
16077
|
path: _path + ".label",
|
|
15558
16078
|
expected: "(null | string | undefined)",
|
|
15559
16079
|
value: input.label
|
|
@@ -15561,7 +16081,7 @@ function _validateDomainRecord(domain, input) {
|
|
|
15561
16081
|
path: _path + ".color",
|
|
15562
16082
|
expected: "(null | string | undefined)",
|
|
15563
16083
|
value: input.color
|
|
15564
|
-
})].every(flag => flag); const
|
|
16084
|
+
})].every(flag => flag); const _vo49 = (input, _path, _exceptionable = true) => [undefined === input.label || "string" === typeof input.label || _report(_exceptionable, {
|
|
15565
16085
|
path: _path + ".label",
|
|
15566
16086
|
expected: "(string | undefined)",
|
|
15567
16087
|
value: input.label
|
|
@@ -15569,7 +16089,7 @@ function _validateDomainRecord(domain, input) {
|
|
|
15569
16089
|
path: _path + ".aspectRatio",
|
|
15570
16090
|
expected: "(string | undefined)",
|
|
15571
16091
|
value: input.aspectRatio
|
|
15572
|
-
})].every(flag => flag); const
|
|
16092
|
+
})].every(flag => flag); const _vo50 = (input, _path, _exceptionable = true) => [undefined === input.enabled || "boolean" === typeof input.enabled || _report(_exceptionable, {
|
|
15573
16093
|
path: _path + ".enabled",
|
|
15574
16094
|
expected: "(boolean | undefined)",
|
|
15575
16095
|
value: input.enabled
|
|
@@ -15581,27 +16101,27 @@ function _validateDomainRecord(domain, input) {
|
|
|
15581
16101
|
path: _path + ".defaultExitOption",
|
|
15582
16102
|
expected: "(\"leave\" | \"none\" | \"update\" | undefined)",
|
|
15583
16103
|
value: input.defaultExitOption
|
|
15584
|
-
})].every(flag => flag); const
|
|
16104
|
+
})].every(flag => flag); const _vo51 = (input, _path, _exceptionable = true) => [undefined === input.subtitleDisclaimer || ("object" === typeof input.subtitleDisclaimer && null !== input.subtitleDisclaimer && false === Array.isArray(input.subtitleDisclaimer) || _report(_exceptionable, {
|
|
15585
16105
|
path: _path + ".subtitleDisclaimer",
|
|
15586
|
-
expected: "(__type.
|
|
16106
|
+
expected: "(__type.o45 | undefined)",
|
|
15587
16107
|
value: input.subtitleDisclaimer
|
|
15588
|
-
})) &&
|
|
16108
|
+
})) && _vo52(input.subtitleDisclaimer, _path + ".subtitleDisclaimer", true && _exceptionable) || _report(_exceptionable, {
|
|
15589
16109
|
path: _path + ".subtitleDisclaimer",
|
|
15590
|
-
expected: "(__type.
|
|
16110
|
+
expected: "(__type.o45 | undefined)",
|
|
15591
16111
|
value: input.subtitleDisclaimer
|
|
15592
|
-
})].every(flag => flag); const
|
|
16112
|
+
})].every(flag => flag); const _vo52 = (input, _path, _exceptionable = true) => [undefined === input.isUserConfigurable || "boolean" === typeof input.isUserConfigurable || _report(_exceptionable, {
|
|
15593
16113
|
path: _path + ".isUserConfigurable",
|
|
15594
16114
|
expected: "(boolean | undefined)",
|
|
15595
16115
|
value: input.isUserConfigurable
|
|
15596
16116
|
}), undefined === input.defaultValue || ("object" === typeof input.defaultValue && null !== input.defaultValue && false === Array.isArray(input.defaultValue) || _report(_exceptionable, {
|
|
15597
16117
|
path: _path + ".defaultValue",
|
|
15598
|
-
expected: "(__type.
|
|
16118
|
+
expected: "(__type.o46 | undefined)",
|
|
15599
16119
|
value: input.defaultValue
|
|
15600
|
-
})) &&
|
|
16120
|
+
})) && _vo53(input.defaultValue, _path + ".defaultValue", true && _exceptionable) || _report(_exceptionable, {
|
|
15601
16121
|
path: _path + ".defaultValue",
|
|
15602
|
-
expected: "(__type.
|
|
16122
|
+
expected: "(__type.o46 | undefined)",
|
|
15603
16123
|
value: input.defaultValue
|
|
15604
|
-
})].every(flag => flag); const
|
|
16124
|
+
})].every(flag => flag); const _vo53 = (input, _path, _exceptionable = true) => [undefined === input.enabled || false === input.enabled || _report(_exceptionable, {
|
|
15605
16125
|
path: _path + ".enabled",
|
|
15606
16126
|
expected: "(false | undefined)",
|
|
15607
16127
|
value: input.enabled
|
|
@@ -15609,13 +16129,13 @@ function _validateDomainRecord(domain, input) {
|
|
|
15609
16129
|
path: _path + ".text",
|
|
15610
16130
|
expected: "(Array<__type>.o3 | undefined)",
|
|
15611
16131
|
value: input.text
|
|
15612
|
-
})) && input.text.map((elem,
|
|
15613
|
-
path: _path + ".text[" +
|
|
15614
|
-
expected: "__type.
|
|
16132
|
+
})) && input.text.map((elem, _index55) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || _report(_exceptionable, {
|
|
16133
|
+
path: _path + ".text[" + _index55 + "]",
|
|
16134
|
+
expected: "__type.o47",
|
|
15615
16135
|
value: elem
|
|
15616
|
-
})) &&
|
|
15617
|
-
path: _path + ".text[" +
|
|
15618
|
-
expected: "__type.
|
|
16136
|
+
})) && _vo54(elem, _path + ".text[" + _index55 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
16137
|
+
path: _path + ".text[" + _index55 + "]",
|
|
16138
|
+
expected: "__type.o47",
|
|
15619
16139
|
value: elem
|
|
15620
16140
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
15621
16141
|
path: _path + ".text",
|
|
@@ -15629,7 +16149,7 @@ function _validateDomainRecord(domain, input) {
|
|
|
15629
16149
|
path: _path + ".duration",
|
|
15630
16150
|
expected: "(number | undefined)",
|
|
15631
16151
|
value: input.duration
|
|
15632
|
-
})].every(flag => flag); const
|
|
16152
|
+
})].every(flag => flag); const _vo54 = (input, _path, _exceptionable = true) => [undefined === input.language || "string" === typeof input.language || _report(_exceptionable, {
|
|
15633
16153
|
path: _path + ".language",
|
|
15634
16154
|
expected: "(string | undefined)",
|
|
15635
16155
|
value: input.language
|
|
@@ -15637,7 +16157,7 @@ function _validateDomainRecord(domain, input) {
|
|
|
15637
16157
|
path: _path + ".value",
|
|
15638
16158
|
expected: "(string | undefined)",
|
|
15639
16159
|
value: input.value
|
|
15640
|
-
})].every(flag => flag); const
|
|
16160
|
+
})].every(flag => flag); const _vo55 = (input, _path, _exceptionable = true) => [undefined === input.url || "string" === typeof input.url || _report(_exceptionable, {
|
|
15641
16161
|
path: _path + ".url",
|
|
15642
16162
|
expected: "(string | undefined)",
|
|
15643
16163
|
value: input.url
|
|
@@ -15653,27 +16173,27 @@ function _validateDomainRecord(domain, input) {
|
|
|
15653
16173
|
path: _path + ".args",
|
|
15654
16174
|
expected: "(Array<string> | undefined)",
|
|
15655
16175
|
value: input.args
|
|
15656
|
-
})) && input.args.map((elem,
|
|
15657
|
-
path: _path + ".args[" +
|
|
16176
|
+
})) && input.args.map((elem, _index56) => "string" === typeof elem || _report(_exceptionable, {
|
|
16177
|
+
path: _path + ".args[" + _index56 + "]",
|
|
15658
16178
|
expected: "string",
|
|
15659
16179
|
value: elem
|
|
15660
16180
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
15661
16181
|
path: _path + ".args",
|
|
15662
16182
|
expected: "(Array<string> | undefined)",
|
|
15663
16183
|
value: input.args
|
|
15664
|
-
})].every(flag => flag); const
|
|
16184
|
+
})].every(flag => flag); const _vo56 = (input, _path, _exceptionable = true) => [undefined === input.thumbnailView || "none" === input.thumbnailView || "filmStrip" === input.thumbnailView || "thumbnail" === input.thumbnailView || _report(_exceptionable, {
|
|
15665
16185
|
path: _path + ".thumbnailView",
|
|
15666
16186
|
expected: "(\"filmStrip\" | \"none\" | \"thumbnail\" | undefined)",
|
|
15667
16187
|
value: input.thumbnailView
|
|
15668
16188
|
}), undefined === input.voiceOver || ("object" === typeof input.voiceOver && null !== input.voiceOver && false === Array.isArray(input.voiceOver) || _report(_exceptionable, {
|
|
15669
16189
|
path: _path + ".voiceOver",
|
|
15670
|
-
expected: "(__type.
|
|
16190
|
+
expected: "(__type.o50 | undefined)",
|
|
15671
16191
|
value: input.voiceOver
|
|
15672
|
-
})) &&
|
|
16192
|
+
})) && _vo57(input.voiceOver, _path + ".voiceOver", true && _exceptionable) || _report(_exceptionable, {
|
|
15673
16193
|
path: _path + ".voiceOver",
|
|
15674
|
-
expected: "(__type.
|
|
16194
|
+
expected: "(__type.o50 | undefined)",
|
|
15675
16195
|
value: input.voiceOver
|
|
15676
|
-
})].every(flag => flag); const
|
|
16196
|
+
})].every(flag => flag); const _vo57 = (input, _path, _exceptionable = true) => [undefined === input.inputDevice || "string" === typeof input.inputDevice || _report(_exceptionable, {
|
|
15677
16197
|
path: _path + ".inputDevice",
|
|
15678
16198
|
expected: "(string | undefined)",
|
|
15679
16199
|
value: input.inputDevice
|
|
@@ -15693,7 +16213,7 @@ function _validateDomainRecord(domain, input) {
|
|
|
15693
16213
|
path: _path + ".preRollDuration",
|
|
15694
16214
|
expected: "(number | undefined)",
|
|
15695
16215
|
value: input.preRollDuration
|
|
15696
|
-
})].every(flag => flag); const
|
|
16216
|
+
})].every(flag => flag); const _vo58 = (input, _path, _exceptionable = true) => [undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
15697
16217
|
path: _path + ".title",
|
|
15698
16218
|
expected: "(string | undefined)",
|
|
15699
16219
|
value: input.title
|
|
@@ -15705,75 +16225,75 @@ function _validateDomainRecord(domain, input) {
|
|
|
15705
16225
|
path: _path + ".args",
|
|
15706
16226
|
expected: "(Array<string> | undefined)",
|
|
15707
16227
|
value: input.args
|
|
15708
|
-
})) && input.args.map((elem,
|
|
15709
|
-
path: _path + ".args[" +
|
|
16228
|
+
})) && input.args.map((elem, _index57) => "string" === typeof elem || _report(_exceptionable, {
|
|
16229
|
+
path: _path + ".args[" + _index57 + "]",
|
|
15710
16230
|
expected: "string",
|
|
15711
16231
|
value: elem
|
|
15712
16232
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
15713
16233
|
path: _path + ".args",
|
|
15714
16234
|
expected: "(Array<string> | undefined)",
|
|
15715
16235
|
value: input.args
|
|
15716
|
-
})].every(flag => flag); const
|
|
16236
|
+
})].every(flag => flag); const _vo59 = (input, _path, _exceptionable = true) => [undefined === input.folded || ("object" === typeof input.folded && null !== input.folded && false === Array.isArray(input.folded) || _report(_exceptionable, {
|
|
15717
16237
|
path: _path + ".folded",
|
|
15718
|
-
expected: "(__type.
|
|
16238
|
+
expected: "(__type.o53 | undefined)",
|
|
15719
16239
|
value: input.folded
|
|
15720
|
-
})) &&
|
|
16240
|
+
})) && _vo60(input.folded, _path + ".folded", true && _exceptionable) || _report(_exceptionable, {
|
|
15721
16241
|
path: _path + ".folded",
|
|
15722
|
-
expected: "(__type.
|
|
16242
|
+
expected: "(__type.o53 | undefined)",
|
|
15723
16243
|
value: input.folded
|
|
15724
16244
|
}), undefined === input.assets || ("object" === typeof input.assets && null !== input.assets && false === Array.isArray(input.assets) || _report(_exceptionable, {
|
|
15725
16245
|
path: _path + ".assets",
|
|
15726
|
-
expected: "(__type.
|
|
16246
|
+
expected: "(__type.o54 | undefined)",
|
|
15727
16247
|
value: input.assets
|
|
15728
|
-
})) &&
|
|
16248
|
+
})) && _vo61(input.assets, _path + ".assets", true && _exceptionable) || _report(_exceptionable, {
|
|
15729
16249
|
path: _path + ".assets",
|
|
15730
|
-
expected: "(__type.
|
|
16250
|
+
expected: "(__type.o54 | undefined)",
|
|
15731
16251
|
value: input.assets
|
|
15732
16252
|
}), undefined === input.pipeline || ("object" === typeof input.pipeline && null !== input.pipeline && false === Array.isArray(input.pipeline) || _report(_exceptionable, {
|
|
15733
16253
|
path: _path + ".pipeline",
|
|
15734
|
-
expected: "(__type.
|
|
16254
|
+
expected: "(__type.o58 | undefined)",
|
|
15735
16255
|
value: input.pipeline
|
|
15736
|
-
})) &&
|
|
16256
|
+
})) && _vo65(input.pipeline, _path + ".pipeline", true && _exceptionable) || _report(_exceptionable, {
|
|
15737
16257
|
path: _path + ".pipeline",
|
|
15738
|
-
expected: "(__type.
|
|
16258
|
+
expected: "(__type.o58 | undefined)",
|
|
15739
16259
|
value: input.pipeline
|
|
15740
16260
|
}), undefined === input.item || ("object" === typeof input.item && null !== input.item && false === Array.isArray(input.item) || _report(_exceptionable, {
|
|
15741
16261
|
path: _path + ".item",
|
|
15742
|
-
expected: "(__type.
|
|
16262
|
+
expected: "(__type.o60 | undefined)",
|
|
15743
16263
|
value: input.item
|
|
15744
|
-
})) &&
|
|
16264
|
+
})) && _vo67(input.item, _path + ".item", true && _exceptionable) || _report(_exceptionable, {
|
|
15745
16265
|
path: _path + ".item",
|
|
15746
|
-
expected: "(__type.
|
|
16266
|
+
expected: "(__type.o60 | undefined)",
|
|
15747
16267
|
value: input.item
|
|
15748
|
-
})].every(flag => flag); const
|
|
16268
|
+
})].every(flag => flag); const _vo60 = (input, _path, _exceptionable = true) => [undefined === input.auto || "boolean" === typeof input.auto || _report(_exceptionable, {
|
|
15749
16269
|
path: _path + ".auto",
|
|
15750
16270
|
expected: "(boolean | undefined)",
|
|
15751
16271
|
value: input.auto
|
|
15752
|
-
})].every(flag => flag); const
|
|
16272
|
+
})].every(flag => flag); const _vo61 = (input, _path, _exceptionable = true) => [undefined === input.story || ("object" === typeof input.story && null !== input.story && false === Array.isArray(input.story) || _report(_exceptionable, {
|
|
15753
16273
|
path: _path + ".story",
|
|
15754
|
-
expected: "(__type.
|
|
16274
|
+
expected: "(__type.o55 | undefined)",
|
|
15755
16275
|
value: input.story
|
|
15756
|
-
})) &&
|
|
16276
|
+
})) && _vo62(input.story, _path + ".story", true && _exceptionable) || _report(_exceptionable, {
|
|
15757
16277
|
path: _path + ".story",
|
|
15758
|
-
expected: "(__type.
|
|
16278
|
+
expected: "(__type.o55 | undefined)",
|
|
15759
16279
|
value: input.story
|
|
15760
16280
|
}), undefined === input.note || ("object" === typeof input.note && null !== input.note && false === Array.isArray(input.note) || _report(_exceptionable, {
|
|
15761
16281
|
path: _path + ".note",
|
|
15762
|
-
expected: "(__type.
|
|
16282
|
+
expected: "(__type.o57 | undefined)",
|
|
15763
16283
|
value: input.note
|
|
15764
|
-
})) &&
|
|
16284
|
+
})) && _vo64(input.note, _path + ".note", true && _exceptionable) || _report(_exceptionable, {
|
|
15765
16285
|
path: _path + ".note",
|
|
15766
|
-
expected: "(__type.
|
|
16286
|
+
expected: "(__type.o57 | undefined)",
|
|
15767
16287
|
value: input.note
|
|
15768
|
-
})].every(flag => flag); const
|
|
16288
|
+
})].every(flag => flag); const _vo62 = (input, _path, _exceptionable = true) => [undefined === input.excerpt || ("object" === typeof input.excerpt && null !== input.excerpt && false === Array.isArray(input.excerpt) || _report(_exceptionable, {
|
|
15769
16289
|
path: _path + ".excerpt",
|
|
15770
|
-
expected: "(__type.
|
|
16290
|
+
expected: "(__type.o56 | undefined)",
|
|
15771
16291
|
value: input.excerpt
|
|
15772
|
-
})) &&
|
|
16292
|
+
})) && _vo63(input.excerpt, _path + ".excerpt", true && _exceptionable) || _report(_exceptionable, {
|
|
15773
16293
|
path: _path + ".excerpt",
|
|
15774
|
-
expected: "(__type.
|
|
16294
|
+
expected: "(__type.o56 | undefined)",
|
|
15775
16295
|
value: input.excerpt
|
|
15776
|
-
})].every(flag => flag); const
|
|
16296
|
+
})].every(flag => flag); const _vo63 = (input, _path, _exceptionable = true) => [undefined === input.maxLines || "number" === typeof input.maxLines || _report(_exceptionable, {
|
|
15777
16297
|
path: _path + ".maxLines",
|
|
15778
16298
|
expected: "(number | undefined)",
|
|
15779
16299
|
value: input.maxLines
|
|
@@ -15785,43 +16305,47 @@ function _validateDomainRecord(domain, input) {
|
|
|
15785
16305
|
path: _path + ".comments",
|
|
15786
16306
|
expected: "(boolean | undefined)",
|
|
15787
16307
|
value: input.comments
|
|
15788
|
-
})].every(flag => flag); const
|
|
16308
|
+
})].every(flag => flag); const _vo64 = (input, _path, _exceptionable = true) => [undefined === input.maxHeight || "number" === typeof input.maxHeight || _report(_exceptionable, {
|
|
15789
16309
|
path: _path + ".maxHeight",
|
|
15790
16310
|
expected: "(number | undefined)",
|
|
15791
16311
|
value: input.maxHeight
|
|
15792
|
-
})].every(flag => flag); const
|
|
16312
|
+
})].every(flag => flag); const _vo65 = (input, _path, _exceptionable = true) => [undefined === input.search || ("object" === typeof input.search && null !== input.search && false === Array.isArray(input.search) || _report(_exceptionable, {
|
|
15793
16313
|
path: _path + ".search",
|
|
15794
|
-
expected: "(__type.
|
|
16314
|
+
expected: "(__type.o59 | undefined)",
|
|
15795
16315
|
value: input.search
|
|
15796
|
-
})) &&
|
|
16316
|
+
})) && _vo66(input.search, _path + ".search", true && _exceptionable) || _report(_exceptionable, {
|
|
15797
16317
|
path: _path + ".search",
|
|
15798
|
-
expected: "(__type.
|
|
16318
|
+
expected: "(__type.o59 | undefined)",
|
|
15799
16319
|
value: input.search
|
|
15800
|
-
}), undefined === input.sortMode || true ===
|
|
16320
|
+
}), undefined === input.sortMode || true === _vv58.has(input.sortMode) || _report(_exceptionable, {
|
|
15801
16321
|
path: _path + ".sortMode",
|
|
15802
16322
|
expected: "(\"az\" | \"default\" | \"earliestdeadline\" | \"latestdeadline\" | \"leastrecent\" | \"manual\" | \"mostrecent\" | \"newest\" | \"oldest\" | \"za\" | undefined)",
|
|
15803
16323
|
value: input.sortMode
|
|
15804
|
-
})].every(flag => flag); const
|
|
16324
|
+
})].every(flag => flag); const _vo66 = (input, _path, _exceptionable = true) => [undefined === input.maxItemsDisplayed || "number" === typeof input.maxItemsDisplayed || _report(_exceptionable, {
|
|
15805
16325
|
path: _path + ".maxItemsDisplayed",
|
|
15806
16326
|
expected: "(number | undefined)",
|
|
15807
16327
|
value: input.maxItemsDisplayed
|
|
15808
|
-
})].every(flag => flag); const
|
|
16328
|
+
})].every(flag => flag); const _vo67 = (input, _path, _exceptionable = true) => [undefined === input.maxHeight || "number" === typeof input.maxHeight || _report(_exceptionable, {
|
|
15809
16329
|
path: _path + ".maxHeight",
|
|
15810
16330
|
expected: "(number | undefined)",
|
|
15811
16331
|
value: input.maxHeight
|
|
15812
|
-
})
|
|
16332
|
+
}), undefined === input.titleLines || "number" === typeof input.titleLines || _report(_exceptionable, {
|
|
16333
|
+
path: _path + ".titleLines",
|
|
16334
|
+
expected: "(number | undefined)",
|
|
16335
|
+
value: input.titleLines
|
|
16336
|
+
})].every(flag => flag); const _vo68 = (input, _path, _exceptionable = true) => [undefined === input.fontFamilies || (Array.isArray(input.fontFamilies) || _report(_exceptionable, {
|
|
15813
16337
|
path: _path + ".fontFamilies",
|
|
15814
16338
|
expected: "(Array<string> | undefined)",
|
|
15815
16339
|
value: input.fontFamilies
|
|
15816
|
-
})) && input.fontFamilies.map((elem,
|
|
15817
|
-
path: _path + ".fontFamilies[" +
|
|
16340
|
+
})) && input.fontFamilies.map((elem, _index59) => "string" === typeof elem || _report(_exceptionable, {
|
|
16341
|
+
path: _path + ".fontFamilies[" + _index59 + "]",
|
|
15818
16342
|
expected: "string",
|
|
15819
16343
|
value: elem
|
|
15820
16344
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
15821
16345
|
path: _path + ".fontFamilies",
|
|
15822
16346
|
expected: "(Array<string> | undefined)",
|
|
15823
16347
|
value: input.fontFamilies
|
|
15824
|
-
})].every(flag => flag); const
|
|
16348
|
+
})].every(flag => flag); const _vo69 = (input, _path, _exceptionable = true) => [undefined === input.id || "string" === typeof input.id || _report(_exceptionable, {
|
|
15825
16349
|
path: _path + ".id",
|
|
15826
16350
|
expected: "(string | undefined)",
|
|
15827
16351
|
value: input.id
|
|
@@ -15829,31 +16353,31 @@ function _validateDomainRecord(domain, input) {
|
|
|
15829
16353
|
path: _path + ".folded",
|
|
15830
16354
|
expected: "(boolean | undefined)",
|
|
15831
16355
|
value: input.folded
|
|
15832
|
-
})].every(flag => flag); const
|
|
16356
|
+
})].every(flag => flag); const _vo70 = (input, _path, _exceptionable = true) => [undefined === input.adobe || ("object" === typeof input.adobe && null !== input.adobe && false === Array.isArray(input.adobe) || _report(_exceptionable, {
|
|
15833
16357
|
path: _path + ".adobe",
|
|
15834
|
-
expected: "(__type.
|
|
16358
|
+
expected: "(__type.o64 | undefined)",
|
|
15835
16359
|
value: input.adobe
|
|
15836
|
-
})) &&
|
|
16360
|
+
})) && _vo71(input.adobe, _path + ".adobe", true && _exceptionable) || _report(_exceptionable, {
|
|
15837
16361
|
path: _path + ".adobe",
|
|
15838
|
-
expected: "(__type.
|
|
16362
|
+
expected: "(__type.o64 | undefined)",
|
|
15839
16363
|
value: input.adobe
|
|
15840
16364
|
}), undefined === input.rive || ("object" === typeof input.rive && null !== input.rive && false === Array.isArray(input.rive) || _report(_exceptionable, {
|
|
15841
16365
|
path: _path + ".rive",
|
|
15842
|
-
expected: "(__type.
|
|
16366
|
+
expected: "(__type.o65 | undefined)",
|
|
15843
16367
|
value: input.rive
|
|
15844
|
-
})) &&
|
|
16368
|
+
})) && _vo72(input.rive, _path + ".rive", true && _exceptionable) || _report(_exceptionable, {
|
|
15845
16369
|
path: _path + ".rive",
|
|
15846
|
-
expected: "(__type.
|
|
16370
|
+
expected: "(__type.o65 | undefined)",
|
|
15847
16371
|
value: input.rive
|
|
15848
|
-
})].every(flag => flag); const
|
|
16372
|
+
})].every(flag => flag); const _vo71 = (input, _path, _exceptionable = true) => [undefined === input.useProxies || "boolean" === typeof input.useProxies || _report(_exceptionable, {
|
|
15849
16373
|
path: _path + ".useProxies",
|
|
15850
16374
|
expected: "(boolean | undefined)",
|
|
15851
16375
|
value: input.useProxies
|
|
15852
|
-
})].every(flag => flag); const
|
|
16376
|
+
})].every(flag => flag); const _vo72 = (input, _path, _exceptionable = true) => [undefined === input.template || "string" === typeof input.template || _report(_exceptionable, {
|
|
15853
16377
|
path: _path + ".template",
|
|
15854
16378
|
expected: "(string | undefined)",
|
|
15855
16379
|
value: input.template
|
|
15856
|
-
})].every(flag => flag); const
|
|
16380
|
+
})].every(flag => flag); const _vo73 = (input, _path, _exceptionable = true) => [undefined === input.collections || "boolean" === typeof input.collections || _report(_exceptionable, {
|
|
15857
16381
|
path: _path + ".collections",
|
|
15858
16382
|
expected: "(boolean | undefined)",
|
|
15859
16383
|
value: input.collections
|
|
@@ -15865,10 +16389,18 @@ function _validateDomainRecord(domain, input) {
|
|
|
15865
16389
|
path: _path + ".ameRemoteRendering",
|
|
15866
16390
|
expected: "(boolean | undefined)",
|
|
15867
16391
|
value: input.ameRemoteRendering
|
|
15868
|
-
})].every(flag => flag); const
|
|
16392
|
+
})].every(flag => flag); const _vo74 = (input, _path, _exceptionable = true) => [undefined === input.utils || "boolean" === typeof input.utils || _report(_exceptionable, {
|
|
15869
16393
|
path: _path + ".utils",
|
|
15870
16394
|
expected: "(boolean | undefined)",
|
|
15871
16395
|
value: input.utils
|
|
16396
|
+
}), undefined === input.utilsAssetEditor || "boolean" === typeof input.utilsAssetEditor || _report(_exceptionable, {
|
|
16397
|
+
path: _path + ".utilsAssetEditor",
|
|
16398
|
+
expected: "(boolean | undefined)",
|
|
16399
|
+
value: input.utilsAssetEditor
|
|
16400
|
+
}), undefined === input.utilsAssetPanel || "boolean" === typeof input.utilsAssetPanel || _report(_exceptionable, {
|
|
16401
|
+
path: _path + ".utilsAssetPanel",
|
|
16402
|
+
expected: "(boolean | undefined)",
|
|
16403
|
+
value: input.utilsAssetPanel
|
|
15872
16404
|
}), undefined === input.history || "boolean" === typeof input.history || _report(_exceptionable, {
|
|
15873
16405
|
path: _path + ".history",
|
|
15874
16406
|
expected: "(boolean | undefined)",
|
|
@@ -15933,20 +16465,20 @@ function _validateDomainRecord(domain, input) {
|
|
|
15933
16465
|
path: _path + ".systemHealth",
|
|
15934
16466
|
expected: "(boolean | undefined)",
|
|
15935
16467
|
value: input.systemHealth
|
|
15936
|
-
})].every(flag => flag); const
|
|
16468
|
+
})].every(flag => flag); const _vo75 = (input, _path, _exceptionable = true) => [undefined === input.events || ("object" === typeof input.events && null !== input.events && false === Array.isArray(input.events) || _report(_exceptionable, {
|
|
15937
16469
|
path: _path + ".events",
|
|
15938
|
-
expected: "(__type.
|
|
16470
|
+
expected: "(__type.o69 | undefined)",
|
|
15939
16471
|
value: input.events
|
|
15940
|
-
})) &&
|
|
16472
|
+
})) && _vo76(input.events, _path + ".events", true && _exceptionable) || _report(_exceptionable, {
|
|
15941
16473
|
path: _path + ".events",
|
|
15942
|
-
expected: "(__type.
|
|
16474
|
+
expected: "(__type.o69 | undefined)",
|
|
15943
16475
|
value: input.events
|
|
15944
|
-
})].every(flag => flag); const
|
|
16476
|
+
})].every(flag => flag); const _vo76 = (input, _path, _exceptionable = true) => [undefined === input.comment || (Array.isArray(input.comment) || _report(_exceptionable, {
|
|
15945
16477
|
path: _path + ".comment",
|
|
15946
16478
|
expected: "(Array<NotificationReason> | undefined)",
|
|
15947
16479
|
value: input.comment
|
|
15948
|
-
})) && input.comment.map((elem,
|
|
15949
|
-
path: _path + ".comment[" +
|
|
16480
|
+
})) && input.comment.map((elem, _index60) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || _report(_exceptionable, {
|
|
16481
|
+
path: _path + ".comment[" + _index60 + "]",
|
|
15950
16482
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
15951
16483
|
value: elem
|
|
15952
16484
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -15957,8 +16489,8 @@ function _validateDomainRecord(domain, input) {
|
|
|
15957
16489
|
path: _path + ".assigned",
|
|
15958
16490
|
expected: "(Array<NotificationReason> | undefined)",
|
|
15959
16491
|
value: input.assigned
|
|
15960
|
-
})) && input.assigned.map((elem,
|
|
15961
|
-
path: _path + ".assigned[" +
|
|
16492
|
+
})) && input.assigned.map((elem, _index61) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || _report(_exceptionable, {
|
|
16493
|
+
path: _path + ".assigned[" + _index61 + "]",
|
|
15962
16494
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
15963
16495
|
value: elem
|
|
15964
16496
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -15969,8 +16501,8 @@ function _validateDomainRecord(domain, input) {
|
|
|
15969
16501
|
path: _path + ".unassigned",
|
|
15970
16502
|
expected: "(Array<NotificationReason> | undefined)",
|
|
15971
16503
|
value: input.unassigned
|
|
15972
|
-
})) && input.unassigned.map((elem,
|
|
15973
|
-
path: _path + ".unassigned[" +
|
|
16504
|
+
})) && input.unassigned.map((elem, _index62) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || _report(_exceptionable, {
|
|
16505
|
+
path: _path + ".unassigned[" + _index62 + "]",
|
|
15974
16506
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
15975
16507
|
value: elem
|
|
15976
16508
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -15979,13 +16511,13 @@ function _validateDomainRecord(domain, input) {
|
|
|
15979
16511
|
value: input.unassigned
|
|
15980
16512
|
}), undefined === input.publishSucceeded || ("object" === typeof input.publishSucceeded && null !== input.publishSucceeded && false === Array.isArray(input.publishSucceeded) || _report(_exceptionable, {
|
|
15981
16513
|
path: _path + ".publishSucceeded",
|
|
15982
|
-
expected: "(__type.
|
|
16514
|
+
expected: "(__type.o70 | undefined)",
|
|
15983
16515
|
value: input.publishSucceeded
|
|
15984
|
-
})) &&
|
|
16516
|
+
})) && _vo77(input.publishSucceeded, _path + ".publishSucceeded", true && _exceptionable) || _report(_exceptionable, {
|
|
15985
16517
|
path: _path + ".publishSucceeded",
|
|
15986
|
-
expected: "(__type.
|
|
16518
|
+
expected: "(__type.o70 | undefined)",
|
|
15987
16519
|
value: input.publishSucceeded
|
|
15988
|
-
})].every(flag => flag); const
|
|
16520
|
+
})].every(flag => flag); const _vo77 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
15989
16521
|
const value = input[key];
|
|
15990
16522
|
if (undefined === value)
|
|
15991
16523
|
return true;
|
|
@@ -15993,8 +16525,8 @@ function _validateDomainRecord(domain, input) {
|
|
|
15993
16525
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15994
16526
|
expected: "Array<NotificationReason>",
|
|
15995
16527
|
value: value
|
|
15996
|
-
})) && value.map((elem,
|
|
15997
|
-
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key) + "[" +
|
|
16528
|
+
})) && value.map((elem, _index63) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || _report(_exceptionable, {
|
|
16529
|
+
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key) + "[" + _index63 + "]",
|
|
15998
16530
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
15999
16531
|
value: elem
|
|
16000
16532
|
})).every(flag => flag) || _report(_exceptionable, {
|
|
@@ -16002,7 +16534,55 @@ function _validateDomainRecord(domain, input) {
|
|
|
16002
16534
|
expected: "Array<NotificationReason>",
|
|
16003
16535
|
value: value
|
|
16004
16536
|
});
|
|
16005
|
-
}).every(flag => flag)].every(flag => flag); const
|
|
16537
|
+
}).every(flag => flag)].every(flag => flag); const _vo78 = (input, _path, _exceptionable = true) => [undefined === input.duplicate || ("object" === typeof input.duplicate && null !== input.duplicate && false === Array.isArray(input.duplicate) || _report(_exceptionable, {
|
|
16538
|
+
path: _path + ".duplicate",
|
|
16539
|
+
expected: "(__type.o72 | undefined)",
|
|
16540
|
+
value: input.duplicate
|
|
16541
|
+
})) && _vo79(input.duplicate, _path + ".duplicate", true && _exceptionable) || _report(_exceptionable, {
|
|
16542
|
+
path: _path + ".duplicate",
|
|
16543
|
+
expected: "(__type.o72 | undefined)",
|
|
16544
|
+
value: input.duplicate
|
|
16545
|
+
})].every(flag => flag); const _vo79 = (input, _path, _exceptionable = true) => [undefined === input.titlePrefix || "string" === typeof input.titlePrefix || _report(_exceptionable, {
|
|
16546
|
+
path: _path + ".titlePrefix",
|
|
16547
|
+
expected: "(string | undefined)",
|
|
16548
|
+
value: input.titlePrefix
|
|
16549
|
+
}), undefined === input.titleSuffix || "string" === typeof input.titleSuffix || _report(_exceptionable, {
|
|
16550
|
+
path: _path + ".titleSuffix",
|
|
16551
|
+
expected: "(string | undefined)",
|
|
16552
|
+
value: input.titleSuffix
|
|
16553
|
+
})].every(flag => flag); const _vo80 = (input, _path, _exceptionable = true) => [undefined === input.stateFilter || (Array.isArray(input.stateFilter) || _report(_exceptionable, {
|
|
16554
|
+
path: _path + ".stateFilter",
|
|
16555
|
+
expected: "(Array<number> | undefined)",
|
|
16556
|
+
value: input.stateFilter
|
|
16557
|
+
})) && input.stateFilter.map((elem, _index64) => "number" === typeof elem || _report(_exceptionable, {
|
|
16558
|
+
path: _path + ".stateFilter[" + _index64 + "]",
|
|
16559
|
+
expected: "number",
|
|
16560
|
+
value: elem
|
|
16561
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
16562
|
+
path: _path + ".stateFilter",
|
|
16563
|
+
expected: "(Array<number> | undefined)",
|
|
16564
|
+
value: input.stateFilter
|
|
16565
|
+
}), undefined === input.textFilter || "string" === typeof input.textFilter || _report(_exceptionable, {
|
|
16566
|
+
path: _path + ".textFilter",
|
|
16567
|
+
expected: "(string | undefined)",
|
|
16568
|
+
value: input.textFilter
|
|
16569
|
+
}), undefined === input.showEmpty || "boolean" === typeof input.showEmpty || _report(_exceptionable, {
|
|
16570
|
+
path: _path + ".showEmpty",
|
|
16571
|
+
expected: "(boolean | undefined)",
|
|
16572
|
+
value: input.showEmpty
|
|
16573
|
+
}), undefined === input.selectedRecord || "string" === typeof input.selectedRecord || _report(_exceptionable, {
|
|
16574
|
+
path: _path + ".selectedRecord",
|
|
16575
|
+
expected: "(string | undefined)",
|
|
16576
|
+
value: input.selectedRecord
|
|
16577
|
+
}), undefined === input.subscribeSearchHits || "boolean" === typeof input.subscribeSearchHits || _report(_exceptionable, {
|
|
16578
|
+
path: _path + ".subscribeSearchHits",
|
|
16579
|
+
expected: "(boolean | undefined)",
|
|
16580
|
+
value: input.subscribeSearchHits
|
|
16581
|
+
}), undefined === input.parseRegex || "boolean" === typeof input.parseRegex || _report(_exceptionable, {
|
|
16582
|
+
path: _path + ".parseRegex",
|
|
16583
|
+
expected: "(boolean | undefined)",
|
|
16584
|
+
value: input.parseRegex
|
|
16585
|
+
})].every(flag => flag); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let errors; let _report; return input => {
|
|
16006
16586
|
if (false === __is(input)) {
|
|
16007
16587
|
errors = [];
|
|
16008
16588
|
_report = __typia_transform__validateReport._validateReport(errors);
|
|
@@ -16031,6 +16611,186 @@ function _validateDomainRecord(domain, input) {
|
|
|
16031
16611
|
};
|
|
16032
16612
|
}; })()(input);
|
|
16033
16613
|
}
|
|
16614
|
+
case ":shotbox": {
|
|
16615
|
+
return (() => { const _io0 = input => undefined === input.pages || Array.isArray(input.pages) && input.pages.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io1(elem)); const _io1 = input => (undefined === input.stickyTopRow || "boolean" === typeof input.stickyTopRow) && (undefined === input.inferGroups || "boolean" === typeof input.inferGroups) && (undefined === input.layout || Array.isArray(input.layout) && input.layout.every(elem => null !== elem && undefined !== elem && (Array.isArray(elem) && elem.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu0(elem)) || "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu0(elem)))); const _io2 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.sticky || "boolean" === typeof input.sticky) && (undefined === input.type || "trigger" === input.type || "toggle" === input.type) && (undefined === input.width || "string" === typeof input.width) && (undefined === input.include || Array.isArray(input.include) && input.include.every(elem => "string" === typeof elem)) && (undefined === input.exclude || Array.isArray(input.exclude) && input.exclude.every(elem => "string" === typeof elem)) && (undefined === input.states || "object" === typeof input.states && null !== input.states && _io3(input.states)) && (undefined === input.flow || "column" === input.flow || "row" === input.flow) && (undefined === input.minRows || "number" === typeof input.minRows) && (undefined === input.maxRows || "number" === typeof input.maxRows); const _io3 = input => "boolean" === typeof input.completed; const _io4 = input => "stream" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.width || "string" === typeof input.width) && (undefined === input.source || "string" === typeof input.source); const _iu0 = input => (() => {
|
|
16616
|
+
if ("stream" === input.type)
|
|
16617
|
+
return _io4(input);
|
|
16618
|
+
else
|
|
16619
|
+
return _io2(input);
|
|
16620
|
+
})(); const _vo0 = (input, _path, _exceptionable = true) => [undefined === input.pages || (Array.isArray(input.pages) || _report(_exceptionable, {
|
|
16621
|
+
path: _path + ".pages",
|
|
16622
|
+
expected: "(Array<ShotboxPage> | undefined)",
|
|
16623
|
+
value: input.pages
|
|
16624
|
+
})) && input.pages.map((elem, _index6) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || _report(_exceptionable, {
|
|
16625
|
+
path: _path + ".pages[" + _index6 + "]",
|
|
16626
|
+
expected: "ShotboxPage",
|
|
16627
|
+
value: elem
|
|
16628
|
+
})) && _vo1(elem, _path + ".pages[" + _index6 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
16629
|
+
path: _path + ".pages[" + _index6 + "]",
|
|
16630
|
+
expected: "ShotboxPage",
|
|
16631
|
+
value: elem
|
|
16632
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
16633
|
+
path: _path + ".pages",
|
|
16634
|
+
expected: "(Array<ShotboxPage> | undefined)",
|
|
16635
|
+
value: input.pages
|
|
16636
|
+
})].every(flag => flag); const _vo1 = (input, _path, _exceptionable = true) => [undefined === input.stickyTopRow || "boolean" === typeof input.stickyTopRow || _report(_exceptionable, {
|
|
16637
|
+
path: _path + ".stickyTopRow",
|
|
16638
|
+
expected: "(boolean | undefined)",
|
|
16639
|
+
value: input.stickyTopRow
|
|
16640
|
+
}), undefined === input.inferGroups || "boolean" === typeof input.inferGroups || _report(_exceptionable, {
|
|
16641
|
+
path: _path + ".inferGroups",
|
|
16642
|
+
expected: "(boolean | undefined)",
|
|
16643
|
+
value: input.inferGroups
|
|
16644
|
+
}), undefined === input.layout || (Array.isArray(input.layout) || _report(_exceptionable, {
|
|
16645
|
+
path: _path + ".layout",
|
|
16646
|
+
expected: "(Array<ShotboxGroup | ShotboxGroup[]> | undefined)",
|
|
16647
|
+
value: input.layout
|
|
16648
|
+
})) && input.layout.map((elem, _index7) => (null !== elem || _report(_exceptionable, {
|
|
16649
|
+
path: _path + ".layout[" + _index7 + "]",
|
|
16650
|
+
expected: "(Array<ShotboxGroup> | ShotboxEventGroup | ShotboxStreamGroup)",
|
|
16651
|
+
value: elem
|
|
16652
|
+
})) && (undefined !== elem || _report(_exceptionable, {
|
|
16653
|
+
path: _path + ".layout[" + _index7 + "]",
|
|
16654
|
+
expected: "(Array<ShotboxGroup> | ShotboxEventGroup | ShotboxStreamGroup)",
|
|
16655
|
+
value: elem
|
|
16656
|
+
})) && (Array.isArray(elem) && elem.map((elem, _index8) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || _report(_exceptionable, {
|
|
16657
|
+
path: _path + ".layout[" + _index7 + "][" + _index8 + "]",
|
|
16658
|
+
expected: "(ShotboxEventGroup | ShotboxStreamGroup)",
|
|
16659
|
+
value: elem
|
|
16660
|
+
})) && _vu0(elem, _path + ".layout[" + _index7 + "][" + _index8 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
16661
|
+
path: _path + ".layout[" + _index7 + "][" + _index8 + "]",
|
|
16662
|
+
expected: "(ShotboxEventGroup | ShotboxStreamGroup)",
|
|
16663
|
+
value: elem
|
|
16664
|
+
})).every(flag => flag) || "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _vu0(elem, _path + ".layout[" + _index7 + "]", true && _exceptionable) || _report(_exceptionable, {
|
|
16665
|
+
path: _path + ".layout[" + _index7 + "]",
|
|
16666
|
+
expected: "(Array<ShotboxGroup> | ShotboxEventGroup | ShotboxStreamGroup)",
|
|
16667
|
+
value: elem
|
|
16668
|
+
}) || _report(_exceptionable, {
|
|
16669
|
+
path: _path + ".layout[" + _index7 + "]",
|
|
16670
|
+
expected: "(Array<ShotboxGroup> | ShotboxEventGroup | ShotboxStreamGroup)",
|
|
16671
|
+
value: elem
|
|
16672
|
+
}))).every(flag => flag) || _report(_exceptionable, {
|
|
16673
|
+
path: _path + ".layout",
|
|
16674
|
+
expected: "(Array<ShotboxGroup | ShotboxGroup[]> | undefined)",
|
|
16675
|
+
value: input.layout
|
|
16676
|
+
})].every(flag => flag); const _vo2 = (input, _path, _exceptionable = true) => [undefined === input.id || "string" === typeof input.id || _report(_exceptionable, {
|
|
16677
|
+
path: _path + ".id",
|
|
16678
|
+
expected: "(string | undefined)",
|
|
16679
|
+
value: input.id
|
|
16680
|
+
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
16681
|
+
path: _path + ".title",
|
|
16682
|
+
expected: "(string | undefined)",
|
|
16683
|
+
value: input.title
|
|
16684
|
+
}), undefined === input.sticky || "boolean" === typeof input.sticky || _report(_exceptionable, {
|
|
16685
|
+
path: _path + ".sticky",
|
|
16686
|
+
expected: "(boolean | undefined)",
|
|
16687
|
+
value: input.sticky
|
|
16688
|
+
}), undefined === input.type || "trigger" === input.type || "toggle" === input.type || _report(_exceptionable, {
|
|
16689
|
+
path: _path + ".type",
|
|
16690
|
+
expected: "(\"toggle\" | \"trigger\" | undefined)",
|
|
16691
|
+
value: input.type
|
|
16692
|
+
}), undefined === input.width || "string" === typeof input.width || _report(_exceptionable, {
|
|
16693
|
+
path: _path + ".width",
|
|
16694
|
+
expected: "(string | undefined)",
|
|
16695
|
+
value: input.width
|
|
16696
|
+
}), undefined === input.include || (Array.isArray(input.include) || _report(_exceptionable, {
|
|
16697
|
+
path: _path + ".include",
|
|
16698
|
+
expected: "(Array<string> | undefined)",
|
|
16699
|
+
value: input.include
|
|
16700
|
+
})) && input.include.map((elem, _index9) => "string" === typeof elem || _report(_exceptionable, {
|
|
16701
|
+
path: _path + ".include[" + _index9 + "]",
|
|
16702
|
+
expected: "string",
|
|
16703
|
+
value: elem
|
|
16704
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
16705
|
+
path: _path + ".include",
|
|
16706
|
+
expected: "(Array<string> | undefined)",
|
|
16707
|
+
value: input.include
|
|
16708
|
+
}), undefined === input.exclude || (Array.isArray(input.exclude) || _report(_exceptionable, {
|
|
16709
|
+
path: _path + ".exclude",
|
|
16710
|
+
expected: "(Array<string> | undefined)",
|
|
16711
|
+
value: input.exclude
|
|
16712
|
+
})) && input.exclude.map((elem, _index10) => "string" === typeof elem || _report(_exceptionable, {
|
|
16713
|
+
path: _path + ".exclude[" + _index10 + "]",
|
|
16714
|
+
expected: "string",
|
|
16715
|
+
value: elem
|
|
16716
|
+
})).every(flag => flag) || _report(_exceptionable, {
|
|
16717
|
+
path: _path + ".exclude",
|
|
16718
|
+
expected: "(Array<string> | undefined)",
|
|
16719
|
+
value: input.exclude
|
|
16720
|
+
}), undefined === input.states || ("object" === typeof input.states && null !== input.states || _report(_exceptionable, {
|
|
16721
|
+
path: _path + ".states",
|
|
16722
|
+
expected: "(__type | undefined)",
|
|
16723
|
+
value: input.states
|
|
16724
|
+
})) && _vo3(input.states, _path + ".states", true && _exceptionable) || _report(_exceptionable, {
|
|
16725
|
+
path: _path + ".states",
|
|
16726
|
+
expected: "(__type | undefined)",
|
|
16727
|
+
value: input.states
|
|
16728
|
+
}), undefined === input.flow || "column" === input.flow || "row" === input.flow || _report(_exceptionable, {
|
|
16729
|
+
path: _path + ".flow",
|
|
16730
|
+
expected: "(\"column\" | \"row\" | undefined)",
|
|
16731
|
+
value: input.flow
|
|
16732
|
+
}), undefined === input.minRows || "number" === typeof input.minRows || _report(_exceptionable, {
|
|
16733
|
+
path: _path + ".minRows",
|
|
16734
|
+
expected: "(number | undefined)",
|
|
16735
|
+
value: input.minRows
|
|
16736
|
+
}), undefined === input.maxRows || "number" === typeof input.maxRows || _report(_exceptionable, {
|
|
16737
|
+
path: _path + ".maxRows",
|
|
16738
|
+
expected: "(number | undefined)",
|
|
16739
|
+
value: input.maxRows
|
|
16740
|
+
})].every(flag => flag); const _vo3 = (input, _path, _exceptionable = true) => ["boolean" === typeof input.completed || _report(_exceptionable, {
|
|
16741
|
+
path: _path + ".completed",
|
|
16742
|
+
expected: "boolean",
|
|
16743
|
+
value: input.completed
|
|
16744
|
+
})].every(flag => flag); const _vo4 = (input, _path, _exceptionable = true) => ["stream" === input.type || _report(_exceptionable, {
|
|
16745
|
+
path: _path + ".type",
|
|
16746
|
+
expected: "\"stream\"",
|
|
16747
|
+
value: input.type
|
|
16748
|
+
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
16749
|
+
path: _path + ".title",
|
|
16750
|
+
expected: "(string | undefined)",
|
|
16751
|
+
value: input.title
|
|
16752
|
+
}), undefined === input.width || "string" === typeof input.width || _report(_exceptionable, {
|
|
16753
|
+
path: _path + ".width",
|
|
16754
|
+
expected: "(string | undefined)",
|
|
16755
|
+
value: input.width
|
|
16756
|
+
}), undefined === input.source || "string" === typeof input.source || _report(_exceptionable, {
|
|
16757
|
+
path: _path + ".source",
|
|
16758
|
+
expected: "(string | undefined)",
|
|
16759
|
+
value: input.source
|
|
16760
|
+
})].every(flag => flag); const _vu0 = (input, _path, _exceptionable = true) => (() => {
|
|
16761
|
+
if ("stream" === input.type)
|
|
16762
|
+
return _vo4(input, _path, true && _exceptionable);
|
|
16763
|
+
else
|
|
16764
|
+
return _vo2(input, _path, true && _exceptionable);
|
|
16765
|
+
})(); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let errors; let _report; return input => {
|
|
16766
|
+
if (false === __is(input)) {
|
|
16767
|
+
errors = [];
|
|
16768
|
+
_report = __typia_transform__validateReport._validateReport(errors);
|
|
16769
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || _report(true, {
|
|
16770
|
+
path: _path + "",
|
|
16771
|
+
expected: "ShotboxDomainRecord",
|
|
16772
|
+
value: input
|
|
16773
|
+
})) && _vo0(input, _path + "", true) || _report(true, {
|
|
16774
|
+
path: _path + "",
|
|
16775
|
+
expected: "ShotboxDomainRecord",
|
|
16776
|
+
value: input
|
|
16777
|
+
}))(input, "$input", true);
|
|
16778
|
+
const success = 0 === errors.length;
|
|
16779
|
+
return success ? {
|
|
16780
|
+
success,
|
|
16781
|
+
data: input
|
|
16782
|
+
} : {
|
|
16783
|
+
success,
|
|
16784
|
+
errors,
|
|
16785
|
+
data: input
|
|
16786
|
+
};
|
|
16787
|
+
}
|
|
16788
|
+
return {
|
|
16789
|
+
success: true,
|
|
16790
|
+
data: input
|
|
16791
|
+
};
|
|
16792
|
+
}; })()(input);
|
|
16793
|
+
}
|
|
16034
16794
|
case ":storyboard": {
|
|
16035
16795
|
return (() => { const _io0 = input => Object.keys(input).every(key => {
|
|
16036
16796
|
const value = input[key];
|