@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
|
@@ -3066,6 +3066,90 @@ function _assertDomainRecord(domain, input) {
|
|
|
3066
3066
|
return input;
|
|
3067
3067
|
}; })()(input);
|
|
3068
3068
|
}
|
|
3069
|
+
case ":calendarevent": {
|
|
3070
|
+
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 _ao0 = (input, _path, _exceptionable = true) => (null === input.start || undefined === input.start || "string" === typeof input.start || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3071
|
+
method: "typia.assert",
|
|
3072
|
+
path: _path + ".start",
|
|
3073
|
+
expected: "(null | string | undefined)",
|
|
3074
|
+
value: input.start
|
|
3075
|
+
}, _errorFactory)) && (null === input.end || undefined === input.end || "string" === typeof input.end || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3076
|
+
method: "typia.assert",
|
|
3077
|
+
path: _path + ".end",
|
|
3078
|
+
expected: "(null | string | undefined)",
|
|
3079
|
+
value: input.end
|
|
3080
|
+
}, _errorFactory)) && (undefined === input.description || "string" === typeof input.description || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3081
|
+
method: "typia.assert",
|
|
3082
|
+
path: _path + ".description",
|
|
3083
|
+
expected: "(string | undefined)",
|
|
3084
|
+
value: input.description
|
|
3085
|
+
}, _errorFactory)) && (null === input.recurrence || undefined === input.recurrence || ("object" === typeof input.recurrence && null !== input.recurrence && false === Array.isArray(input.recurrence) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3086
|
+
method: "typia.assert",
|
|
3087
|
+
path: _path + ".recurrence",
|
|
3088
|
+
expected: "(CalendarEventDomainRecurrenceRule | null | undefined)",
|
|
3089
|
+
value: input.recurrence
|
|
3090
|
+
}, _errorFactory)) && _ao1(input.recurrence, _path + ".recurrence", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3091
|
+
method: "typia.assert",
|
|
3092
|
+
path: _path + ".recurrence",
|
|
3093
|
+
expected: "(CalendarEventDomainRecurrenceRule | null | undefined)",
|
|
3094
|
+
value: input.recurrence
|
|
3095
|
+
}, _errorFactory)) && (undefined === input.color || "string" === typeof input.color || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3096
|
+
method: "typia.assert",
|
|
3097
|
+
path: _path + ".color",
|
|
3098
|
+
expected: "(string | undefined)",
|
|
3099
|
+
value: input.color
|
|
3100
|
+
}, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => (undefined === input.interval || "number" === typeof input.interval || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3101
|
+
method: "typia.assert",
|
|
3102
|
+
path: _path + ".interval",
|
|
3103
|
+
expected: "(number | undefined)",
|
|
3104
|
+
value: input.interval
|
|
3105
|
+
}, _errorFactory)) && (null === input.frequency || undefined === input.frequency || "days" === input.frequency || "weeks" === input.frequency || "months" === input.frequency || "years" === input.frequency || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3106
|
+
method: "typia.assert",
|
|
3107
|
+
path: _path + ".frequency",
|
|
3108
|
+
expected: "(\"days\" | \"months\" | \"weeks\" | \"years\" | null | undefined)",
|
|
3109
|
+
value: input.frequency
|
|
3110
|
+
}, _errorFactory)) && (null === input.byweekday || undefined === input.byweekday || (Array.isArray(input.byweekday) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3111
|
+
method: "typia.assert",
|
|
3112
|
+
path: _path + ".byweekday",
|
|
3113
|
+
expected: "(Array<number> | null | undefined)",
|
|
3114
|
+
value: input.byweekday
|
|
3115
|
+
}, _errorFactory)) && input.byweekday.every((elem, _index2) => "number" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3116
|
+
method: "typia.assert",
|
|
3117
|
+
path: _path + ".byweekday[" + _index2 + "]",
|
|
3118
|
+
expected: "number",
|
|
3119
|
+
value: elem
|
|
3120
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3121
|
+
method: "typia.assert",
|
|
3122
|
+
path: _path + ".byweekday",
|
|
3123
|
+
expected: "(Array<number> | null | undefined)",
|
|
3124
|
+
value: input.byweekday
|
|
3125
|
+
}, _errorFactory)) && (null === input.count || undefined === input.count || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3126
|
+
method: "typia.assert",
|
|
3127
|
+
path: _path + ".count",
|
|
3128
|
+
expected: "(null | undefined)",
|
|
3129
|
+
value: input.count
|
|
3130
|
+
}, _errorFactory)) && (null === input.until || undefined === input.until || "string" === typeof input.until || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3131
|
+
method: "typia.assert",
|
|
3132
|
+
path: _path + ".until",
|
|
3133
|
+
expected: "(null | string | undefined)",
|
|
3134
|
+
value: input.until
|
|
3135
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
3136
|
+
if (false === __is(input)) {
|
|
3137
|
+
_errorFactory = errorFactory;
|
|
3138
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
3139
|
+
method: "typia.assert",
|
|
3140
|
+
path: _path + "",
|
|
3141
|
+
expected: "CalendarEventDomainRecord",
|
|
3142
|
+
value: input
|
|
3143
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
3144
|
+
method: "typia.assert",
|
|
3145
|
+
path: _path + "",
|
|
3146
|
+
expected: "CalendarEventDomainRecord",
|
|
3147
|
+
value: input
|
|
3148
|
+
}, _errorFactory))(input, "$input", true);
|
|
3149
|
+
}
|
|
3150
|
+
return input;
|
|
3151
|
+
}; })()(input);
|
|
3152
|
+
}
|
|
3069
3153
|
case ":clone": {
|
|
3070
3154
|
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 _ao0 = (input, _path, _exceptionable = true) => (Array.isArray(input.rules) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3071
3155
|
method: "typia.assert",
|
|
@@ -3633,6 +3717,40 @@ function _assertDomainRecord(domain, input) {
|
|
|
3633
3717
|
return input;
|
|
3634
3718
|
}; })()(input);
|
|
3635
3719
|
}
|
|
3720
|
+
case ":condition": {
|
|
3721
|
+
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 _ao0 = (input, _path, _exceptionable = true) => (undefined === input.field || "string" === typeof input.field || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3722
|
+
method: "typia.assert",
|
|
3723
|
+
path: _path + ".field",
|
|
3724
|
+
expected: "(string | undefined)",
|
|
3725
|
+
value: input.field
|
|
3726
|
+
}, _errorFactory)) && (undefined === input.type || "string" === typeof input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3727
|
+
method: "typia.assert",
|
|
3728
|
+
path: _path + ".type",
|
|
3729
|
+
expected: "(string | undefined)",
|
|
3730
|
+
value: input.type
|
|
3731
|
+
}, _errorFactory)) && (undefined === input.op || "string" === typeof input.op || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3732
|
+
method: "typia.assert",
|
|
3733
|
+
path: _path + ".op",
|
|
3734
|
+
expected: "(string | undefined)",
|
|
3735
|
+
value: input.op
|
|
3736
|
+
}, _errorFactory)) && true; const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
3737
|
+
if (false === __is(input)) {
|
|
3738
|
+
_errorFactory = errorFactory;
|
|
3739
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
3740
|
+
method: "typia.assert",
|
|
3741
|
+
path: _path + "",
|
|
3742
|
+
expected: "SearchCondition",
|
|
3743
|
+
value: input
|
|
3744
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
3745
|
+
method: "typia.assert",
|
|
3746
|
+
path: _path + "",
|
|
3747
|
+
expected: "SearchCondition",
|
|
3748
|
+
value: input
|
|
3749
|
+
}, _errorFactory))(input, "$input", true);
|
|
3750
|
+
}
|
|
3751
|
+
return input;
|
|
3752
|
+
}; })()(input);
|
|
3753
|
+
}
|
|
3636
3754
|
case ":connection": {
|
|
3637
3755
|
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 => {
|
|
3638
3756
|
const value = input[key];
|
|
@@ -8088,6 +8206,159 @@ function _assertDomainRecord(domain, input) {
|
|
|
8088
8206
|
return input;
|
|
8089
8207
|
}; })()(input);
|
|
8090
8208
|
}
|
|
8209
|
+
case ":harvest": {
|
|
8210
|
+
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 _ao0 = (input, _path, _exceptionable = true) => (undefined === input.active || "boolean" === typeof input.active || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8211
|
+
method: "typia.assert",
|
|
8212
|
+
path: _path + ".active",
|
|
8213
|
+
expected: "(boolean | undefined)",
|
|
8214
|
+
value: input.active
|
|
8215
|
+
}, _errorFactory)) && (undefined === input.tags || (Array.isArray(input.tags) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8216
|
+
method: "typia.assert",
|
|
8217
|
+
path: _path + ".tags",
|
|
8218
|
+
expected: "(Array<string> | undefined)",
|
|
8219
|
+
value: input.tags
|
|
8220
|
+
}, _errorFactory)) && input.tags.every((elem, _index2) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8221
|
+
method: "typia.assert",
|
|
8222
|
+
path: _path + ".tags[" + _index2 + "]",
|
|
8223
|
+
expected: "string",
|
|
8224
|
+
value: elem
|
|
8225
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8226
|
+
method: "typia.assert",
|
|
8227
|
+
path: _path + ".tags",
|
|
8228
|
+
expected: "(Array<string> | undefined)",
|
|
8229
|
+
value: input.tags
|
|
8230
|
+
}, _errorFactory)) && (undefined === input.revisions || "boolean" === typeof input.revisions || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8231
|
+
method: "typia.assert",
|
|
8232
|
+
path: _path + ".revisions",
|
|
8233
|
+
expected: "(boolean | undefined)",
|
|
8234
|
+
value: input.revisions
|
|
8235
|
+
}, _errorFactory)) && (undefined === input.concurrency || "number" === typeof input.concurrency || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8236
|
+
method: "typia.assert",
|
|
8237
|
+
path: _path + ".concurrency",
|
|
8238
|
+
expected: "(number | undefined)",
|
|
8239
|
+
value: input.concurrency
|
|
8240
|
+
}, _errorFactory)) && (undefined === input.throttle || "number" === typeof input.throttle || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8241
|
+
method: "typia.assert",
|
|
8242
|
+
path: _path + ".throttle",
|
|
8243
|
+
expected: "(number | undefined)",
|
|
8244
|
+
value: input.throttle
|
|
8245
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
8246
|
+
if (false === __is(input)) {
|
|
8247
|
+
_errorFactory = errorFactory;
|
|
8248
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
8249
|
+
method: "typia.assert",
|
|
8250
|
+
path: _path + "",
|
|
8251
|
+
expected: "HarvestDomainRecord",
|
|
8252
|
+
value: input
|
|
8253
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
8254
|
+
method: "typia.assert",
|
|
8255
|
+
path: _path + "",
|
|
8256
|
+
expected: "HarvestDomainRecord",
|
|
8257
|
+
value: input
|
|
8258
|
+
}, _errorFactory))(input, "$input", true);
|
|
8259
|
+
}
|
|
8260
|
+
return input;
|
|
8261
|
+
}; })()(input);
|
|
8262
|
+
}
|
|
8263
|
+
case ":ingestclip": {
|
|
8264
|
+
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 _ao0 = (input, _path, _exceptionable = true) => (undefined === input.time || "number" === typeof input.time || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8265
|
+
method: "typia.assert",
|
|
8266
|
+
path: _path + ".time",
|
|
8267
|
+
expected: "(number | undefined)",
|
|
8268
|
+
value: input.time
|
|
8269
|
+
}, _errorFactory)) && (undefined === input.duration || "number" === typeof input.duration || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8270
|
+
method: "typia.assert",
|
|
8271
|
+
path: _path + ".duration",
|
|
8272
|
+
expected: "(number | undefined)",
|
|
8273
|
+
value: input.duration
|
|
8274
|
+
}, _errorFactory)) && (undefined === input.type || "string" === typeof input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8275
|
+
method: "typia.assert",
|
|
8276
|
+
path: _path + ".type",
|
|
8277
|
+
expected: "(string | undefined)",
|
|
8278
|
+
value: input.type
|
|
8279
|
+
}, _errorFactory)) && (undefined === input.record || "string" === typeof input.record || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8280
|
+
method: "typia.assert",
|
|
8281
|
+
path: _path + ".record",
|
|
8282
|
+
expected: "(string | undefined)",
|
|
8283
|
+
value: input.record
|
|
8284
|
+
}, _errorFactory)) && (undefined === input.data || "boolean" === typeof input.data || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8285
|
+
method: "typia.assert",
|
|
8286
|
+
path: _path + ".data",
|
|
8287
|
+
expected: "(boolean | undefined)",
|
|
8288
|
+
value: input.data
|
|
8289
|
+
}, _errorFactory)) && (undefined === input.gallery || "string" === typeof input.gallery || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8290
|
+
method: "typia.assert",
|
|
8291
|
+
path: _path + ".gallery",
|
|
8292
|
+
expected: "(string | undefined)",
|
|
8293
|
+
value: input.gallery
|
|
8294
|
+
}, _errorFactory)) && (undefined === input.rundown || "string" === typeof input.rundown || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8295
|
+
method: "typia.assert",
|
|
8296
|
+
path: _path + ".rundown",
|
|
8297
|
+
expected: "(string | undefined)",
|
|
8298
|
+
value: input.rundown
|
|
8299
|
+
}, _errorFactory)) && (undefined === input.segment || "string" === typeof input.segment || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8300
|
+
method: "typia.assert",
|
|
8301
|
+
path: _path + ".segment",
|
|
8302
|
+
expected: "(string | undefined)",
|
|
8303
|
+
value: input.segment
|
|
8304
|
+
}, _errorFactory)) && (undefined === input.story || "string" === typeof input.story || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8305
|
+
method: "typia.assert",
|
|
8306
|
+
path: _path + ".story",
|
|
8307
|
+
expected: "(string | undefined)",
|
|
8308
|
+
value: input.story
|
|
8309
|
+
}, _errorFactory)) && (undefined === input.event || "string" === typeof input.event || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8310
|
+
method: "typia.assert",
|
|
8311
|
+
path: _path + ".event",
|
|
8312
|
+
expected: "(string | undefined)",
|
|
8313
|
+
value: input.event
|
|
8314
|
+
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8315
|
+
method: "typia.assert",
|
|
8316
|
+
path: _path + ".title",
|
|
8317
|
+
expected: "(string | undefined)",
|
|
8318
|
+
value: input.title
|
|
8319
|
+
}, _errorFactory)) && (undefined === input.start || "number" === typeof input.start || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8320
|
+
method: "typia.assert",
|
|
8321
|
+
path: _path + ".start",
|
|
8322
|
+
expected: "(number | undefined)",
|
|
8323
|
+
value: input.start
|
|
8324
|
+
}, _errorFactory)) && (undefined === input.end || "number" === typeof input.end || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8325
|
+
method: "typia.assert",
|
|
8326
|
+
path: _path + ".end",
|
|
8327
|
+
expected: "(number | undefined)",
|
|
8328
|
+
value: input.end
|
|
8329
|
+
}, _errorFactory)) && (undefined === input.channel || "string" === typeof input.channel || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8330
|
+
method: "typia.assert",
|
|
8331
|
+
path: _path + ".channel",
|
|
8332
|
+
expected: "(string | undefined)",
|
|
8333
|
+
value: input.channel
|
|
8334
|
+
}, _errorFactory)) && (undefined === input.schedule || "string" === typeof input.schedule || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8335
|
+
method: "typia.assert",
|
|
8336
|
+
path: _path + ".schedule",
|
|
8337
|
+
expected: "(string | undefined)",
|
|
8338
|
+
value: input.schedule
|
|
8339
|
+
}, _errorFactory)) && (undefined === input.parent || "string" === typeof input.parent || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8340
|
+
method: "typia.assert",
|
|
8341
|
+
path: _path + ".parent",
|
|
8342
|
+
expected: "(string | undefined)",
|
|
8343
|
+
value: input.parent
|
|
8344
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
8345
|
+
if (false === __is(input)) {
|
|
8346
|
+
_errorFactory = errorFactory;
|
|
8347
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
8348
|
+
method: "typia.assert",
|
|
8349
|
+
path: _path + "",
|
|
8350
|
+
expected: "IngestclipDomainRecord",
|
|
8351
|
+
value: input
|
|
8352
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
8353
|
+
method: "typia.assert",
|
|
8354
|
+
path: _path + "",
|
|
8355
|
+
expected: "IngestclipDomainRecord",
|
|
8356
|
+
value: input
|
|
8357
|
+
}, _errorFactory))(input, "$input", true);
|
|
8358
|
+
}
|
|
8359
|
+
return input;
|
|
8360
|
+
}; })()(input);
|
|
8361
|
+
}
|
|
8091
8362
|
case ":media.source": {
|
|
8092
8363
|
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 => {
|
|
8093
8364
|
const value = input[key];
|
|
@@ -9957,16 +10228,16 @@ function _assertDomainRecord(domain, input) {
|
|
|
9957
10228
|
}; })()(input);
|
|
9958
10229
|
}
|
|
9959
10230
|
case ":panel": {
|
|
9960
|
-
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) &&
|
|
10231
|
+
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 => {
|
|
9961
10232
|
const value = input[key];
|
|
9962
10233
|
if (undefined === value)
|
|
9963
10234
|
return true;
|
|
9964
10235
|
return "object" === typeof value && null !== value && _io2(value);
|
|
9965
|
-
}); 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
|
|
10236
|
+
}); 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 => (() => {
|
|
9966
10237
|
if (undefined !== input.type)
|
|
9967
|
-
return
|
|
10238
|
+
return _io7(input);
|
|
9968
10239
|
else if (undefined !== input.property)
|
|
9969
|
-
return
|
|
10240
|
+
return _io8(input);
|
|
9970
10241
|
else
|
|
9971
10242
|
return false;
|
|
9972
10243
|
})(); 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 _ao0 = (input, _path, _exceptionable = true) => (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -9984,9 +10255,9 @@ function _assertDomainRecord(domain, input) {
|
|
|
9984
10255
|
path: _path + ".supports",
|
|
9985
10256
|
expected: "(Array<string> | string | undefined)",
|
|
9986
10257
|
value: input.supports
|
|
9987
|
-
}, _errorFactory)) && input.supports.every((elem,
|
|
10258
|
+
}, _errorFactory)) && input.supports.every((elem, _index5) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9988
10259
|
method: "typia.assert",
|
|
9989
|
-
path: _path + ".supports[" +
|
|
10260
|
+
path: _path + ".supports[" + _index5 + "]",
|
|
9990
10261
|
expected: "string",
|
|
9991
10262
|
value: elem
|
|
9992
10263
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -10017,44 +10288,14 @@ function _assertDomainRecord(domain, input) {
|
|
|
10017
10288
|
}, _errorFactory)) && (undefined === input.layout || ("object" === typeof input.layout && null !== input.layout && false === Array.isArray(input.layout) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10018
10289
|
method: "typia.assert",
|
|
10019
10290
|
path: _path + ".layout",
|
|
10020
|
-
expected: "(__type.
|
|
10291
|
+
expected: "(__type.o4 | undefined)",
|
|
10021
10292
|
value: input.layout
|
|
10022
|
-
}, _errorFactory)) &&
|
|
10293
|
+
}, _errorFactory)) && _ao6(input.layout, _path + ".layout", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10023
10294
|
method: "typia.assert",
|
|
10024
10295
|
path: _path + ".layout",
|
|
10025
|
-
expected: "(__type.
|
|
10296
|
+
expected: "(__type.o4 | undefined)",
|
|
10026
10297
|
value: input.layout
|
|
10027
|
-
}, _errorFactory)) &&
|
|
10028
|
-
method: "typia.assert",
|
|
10029
|
-
path: _path + ".filter",
|
|
10030
|
-
expected: "(__type.o3 | string | undefined)",
|
|
10031
|
-
value: input.filter
|
|
10032
|
-
}, _errorFactory)) && (undefined === input.filter || "string" === typeof input.filter || ("object" === typeof input.filter && null !== input.filter || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10033
|
-
method: "typia.assert",
|
|
10034
|
-
path: _path + ".filter",
|
|
10035
|
-
expected: "(__type.o3 | string | undefined)",
|
|
10036
|
-
value: input.filter
|
|
10037
|
-
}, _errorFactory)) && _ao8(input.filter, _path + ".filter", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10038
|
-
method: "typia.assert",
|
|
10039
|
-
path: _path + ".filter",
|
|
10040
|
-
expected: "(__type.o3 | string | undefined)",
|
|
10041
|
-
value: input.filter
|
|
10042
|
-
}, _errorFactory))) && ((null !== input.expand || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10043
|
-
method: "typia.assert",
|
|
10044
|
-
path: _path + ".expand",
|
|
10045
|
-
expected: "(__type.o3 | string | undefined)",
|
|
10046
|
-
value: input.expand
|
|
10047
|
-
}, _errorFactory)) && (undefined === input.expand || "string" === typeof input.expand || ("object" === typeof input.expand && null !== input.expand || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10048
|
-
method: "typia.assert",
|
|
10049
|
-
path: _path + ".expand",
|
|
10050
|
-
expected: "(__type.o3 | string | undefined)",
|
|
10051
|
-
value: input.expand
|
|
10052
|
-
}, _errorFactory)) && _ao8(input.expand, _path + ".expand", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10053
|
-
method: "typia.assert",
|
|
10054
|
-
path: _path + ".expand",
|
|
10055
|
-
expected: "(__type.o3 | string | undefined)",
|
|
10056
|
-
value: input.expand
|
|
10057
|
-
}, _errorFactory))); const _ao1 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
10298
|
+
}, _errorFactory)) && true && true; const _ao1 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
10058
10299
|
const value = input[key];
|
|
10059
10300
|
if (undefined === value)
|
|
10060
10301
|
return true;
|
|
@@ -10109,11 +10350,46 @@ function _assertDomainRecord(domain, input) {
|
|
|
10109
10350
|
path: _path + ".required",
|
|
10110
10351
|
expected: "(boolean | undefined)",
|
|
10111
10352
|
value: input.required
|
|
10112
|
-
}, _errorFactory)) && (undefined === input.oneOf || Array.isArray(input.oneOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10353
|
+
}, _errorFactory)) && (undefined === input.oneOf || (Array.isArray(input.oneOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10354
|
+
method: "typia.assert",
|
|
10355
|
+
path: _path + ".oneOf",
|
|
10356
|
+
expected: "(Array<__type> | undefined)",
|
|
10357
|
+
value: input.oneOf
|
|
10358
|
+
}, _errorFactory)) && input.oneOf.every((elem, _index6) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10359
|
+
method: "typia.assert",
|
|
10360
|
+
path: _path + ".oneOf[" + _index6 + "]",
|
|
10361
|
+
expected: "__type.o2",
|
|
10362
|
+
value: elem
|
|
10363
|
+
}, _errorFactory)) && _ao4(elem, _path + ".oneOf[" + _index6 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10364
|
+
method: "typia.assert",
|
|
10365
|
+
path: _path + ".oneOf[" + _index6 + "]",
|
|
10366
|
+
expected: "__type.o2",
|
|
10367
|
+
value: elem
|
|
10368
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10113
10369
|
method: "typia.assert",
|
|
10114
10370
|
path: _path + ".oneOf",
|
|
10115
|
-
expected: "(Array<
|
|
10371
|
+
expected: "(Array<__type> | undefined)",
|
|
10116
10372
|
value: input.oneOf
|
|
10373
|
+
}, _errorFactory)) && (undefined === input.anyOf || (Array.isArray(input.anyOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10374
|
+
method: "typia.assert",
|
|
10375
|
+
path: _path + ".anyOf",
|
|
10376
|
+
expected: "(Array<__type>.o1 | undefined)",
|
|
10377
|
+
value: input.anyOf
|
|
10378
|
+
}, _errorFactory)) && input.anyOf.every((elem, _index7) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10379
|
+
method: "typia.assert",
|
|
10380
|
+
path: _path + ".anyOf[" + _index7 + "]",
|
|
10381
|
+
expected: "__type.o3",
|
|
10382
|
+
value: elem
|
|
10383
|
+
}, _errorFactory)) && _ao5(elem, _path + ".anyOf[" + _index7 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10384
|
+
method: "typia.assert",
|
|
10385
|
+
path: _path + ".anyOf[" + _index7 + "]",
|
|
10386
|
+
expected: "__type.o3",
|
|
10387
|
+
value: elem
|
|
10388
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10389
|
+
method: "typia.assert",
|
|
10390
|
+
path: _path + ".anyOf",
|
|
10391
|
+
expected: "(Array<__type>.o1 | undefined)",
|
|
10392
|
+
value: input.anyOf
|
|
10117
10393
|
}, _errorFactory)); const _ao3 = (input, _path, _exceptionable = true) => ("string" === typeof input.label || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10118
10394
|
method: "typia.assert",
|
|
10119
10395
|
path: _path + ".label",
|
|
@@ -10124,7 +10400,17 @@ function _assertDomainRecord(domain, input) {
|
|
|
10124
10400
|
path: _path + ".path",
|
|
10125
10401
|
expected: "string",
|
|
10126
10402
|
value: input.path
|
|
10127
|
-
}, _errorFactory)); const _ao4 = (input, _path, _exceptionable = true) => (
|
|
10403
|
+
}, _errorFactory)); const _ao4 = (input, _path, _exceptionable = true) => true && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10404
|
+
method: "typia.assert",
|
|
10405
|
+
path: _path + ".title",
|
|
10406
|
+
expected: "(string | undefined)",
|
|
10407
|
+
value: input.title
|
|
10408
|
+
}, _errorFactory)); const _ao5 = (input, _path, _exceptionable = true) => true && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10409
|
+
method: "typia.assert",
|
|
10410
|
+
path: _path + ".title",
|
|
10411
|
+
expected: "(string | undefined)",
|
|
10412
|
+
value: input.title
|
|
10413
|
+
}, _errorFactory)); const _ao6 = (input, _path, _exceptionable = true) => (null !== input.panel || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10128
10414
|
method: "typia.assert",
|
|
10129
10415
|
path: _path + ".panel",
|
|
10130
10416
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string | undefined)",
|
|
@@ -10164,7 +10450,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
10164
10450
|
path: _path + ".editor",
|
|
10165
10451
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string | undefined)",
|
|
10166
10452
|
value: input.editor
|
|
10167
|
-
}, _errorFactory))); const
|
|
10453
|
+
}, _errorFactory))); const _ao7 = (input, _path, _exceptionable = true) => ("divider" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10168
10454
|
method: "typia.assert",
|
|
10169
10455
|
path: _path + ".type",
|
|
10170
10456
|
expected: "\"divider\"",
|
|
@@ -10174,7 +10460,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
10174
10460
|
path: _path + ".title",
|
|
10175
10461
|
expected: "(string | undefined)",
|
|
10176
10462
|
value: input.title
|
|
10177
|
-
}, _errorFactory)); const
|
|
10463
|
+
}, _errorFactory)); const _ao8 = (input, _path, _exceptionable = true) => ("string" === typeof input.property || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10178
10464
|
method: "typia.assert",
|
|
10179
10465
|
path: _path + ".property",
|
|
10180
10466
|
expected: "string",
|
|
@@ -10194,12 +10480,12 @@ function _assertDomainRecord(domain, input) {
|
|
|
10194
10480
|
path: _path + ".widget",
|
|
10195
10481
|
expected: "(\"assetTags\" | \"assetTypes\" | \"default\" | \"geopoint\" | \"poster\" | \"tags\" | \"textarea\" | WidgetItem | undefined)",
|
|
10196
10482
|
value: input.widget
|
|
10197
|
-
}, _errorFactory)) &&
|
|
10483
|
+
}, _errorFactory)) && _ao9(input.widget, _path + ".widget", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10198
10484
|
method: "typia.assert",
|
|
10199
10485
|
path: _path + ".widget",
|
|
10200
10486
|
expected: "(\"assetTags\" | \"assetTypes\" | \"default\" | \"geopoint\" | \"poster\" | \"tags\" | \"textarea\" | WidgetItem | undefined)",
|
|
10201
10487
|
value: input.widget
|
|
10202
|
-
}, _errorFactory))); const
|
|
10488
|
+
}, _errorFactory))); const _ao9 = (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 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10203
10489
|
method: "typia.assert",
|
|
10204
10490
|
path: _path + ".type",
|
|
10205
10491
|
expected: "(\"assetTags\" | \"assetTypes\" | \"default\" | \"geopoint\" | \"poster\" | \"tags\" | \"textarea\")",
|
|
@@ -10209,26 +10495,11 @@ function _assertDomainRecord(domain, input) {
|
|
|
10209
10495
|
path: _path + ".readOnly",
|
|
10210
10496
|
expected: "(boolean | undefined)",
|
|
10211
10497
|
value: input.readOnly
|
|
10212
|
-
}, _errorFactory)); const
|
|
10213
|
-
method: "typia.assert",
|
|
10214
|
-
path: _path + ".__context",
|
|
10215
|
-
expected: "object",
|
|
10216
|
-
value: input.__context
|
|
10217
|
-
}, _errorFactory)) && _ao9(input.__context, _path + ".__context", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10218
|
-
method: "typia.assert",
|
|
10219
|
-
path: _path + ".__context",
|
|
10220
|
-
expected: "object",
|
|
10221
|
-
value: input.__context
|
|
10222
|
-
}, _errorFactory)) && ("string" === typeof input.__returnValue || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10223
|
-
method: "typia.assert",
|
|
10224
|
-
path: _path + ".__returnValue",
|
|
10225
|
-
expected: "string",
|
|
10226
|
-
value: input.__returnValue
|
|
10227
|
-
}, _errorFactory)); const _ao9 = (input, _path, _exceptionable = true) => true; const _au0 = (input, _path, _exceptionable = true) => (() => {
|
|
10498
|
+
}, _errorFactory)); const _au0 = (input, _path, _exceptionable = true) => (() => {
|
|
10228
10499
|
if (undefined !== input.type)
|
|
10229
|
-
return
|
|
10500
|
+
return _ao7(input, _path, true && _exceptionable);
|
|
10230
10501
|
else if (undefined !== input.property)
|
|
10231
|
-
return
|
|
10502
|
+
return _ao8(input, _path, true && _exceptionable);
|
|
10232
10503
|
else
|
|
10233
10504
|
return __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10234
10505
|
method: "typia.assert",
|
|
@@ -10236,29 +10507,29 @@ function _assertDomainRecord(domain, input) {
|
|
|
10236
10507
|
expected: "(PanelLayoutDivider | PanelLayoutItem)",
|
|
10237
10508
|
value: input
|
|
10238
10509
|
}, _errorFactory);
|
|
10239
|
-
})(); const _aa0 = (input, _path, _exceptionable = true) => input.every((elem,
|
|
10510
|
+
})(); const _aa0 = (input, _path, _exceptionable = true) => input.every((elem, _index8) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10240
10511
|
method: "typia.assert",
|
|
10241
|
-
path: _path + "[" +
|
|
10512
|
+
path: _path + "[" + _index8 + "]",
|
|
10242
10513
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string)",
|
|
10243
10514
|
value: elem
|
|
10244
10515
|
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10245
10516
|
method: "typia.assert",
|
|
10246
|
-
path: _path + "[" +
|
|
10517
|
+
path: _path + "[" + _index8 + "]",
|
|
10247
10518
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string)",
|
|
10248
10519
|
value: elem
|
|
10249
|
-
}, _errorFactory)) && ("string" === typeof elem || (Array.isArray(elem) && (_aa0(elem, _path + "[" +
|
|
10520
|
+
}, _errorFactory)) && ("string" === typeof elem || (Array.isArray(elem) && (_aa0(elem, _path + "[" + _index8 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10250
10521
|
method: "typia.assert",
|
|
10251
|
-
path: _path + "[" +
|
|
10522
|
+
path: _path + "[" + _index8 + "]",
|
|
10252
10523
|
expected: "Array<PanelLayout>",
|
|
10253
10524
|
value: elem
|
|
10254
|
-
}, _errorFactory)) || "object" === typeof elem && null !== elem && _au0(elem, _path + "[" +
|
|
10525
|
+
}, _errorFactory)) || "object" === typeof elem && null !== elem && _au0(elem, _path + "[" + _index8 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10255
10526
|
method: "typia.assert",
|
|
10256
|
-
path: _path + "[" +
|
|
10527
|
+
path: _path + "[" + _index8 + "]",
|
|
10257
10528
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string)",
|
|
10258
10529
|
value: elem
|
|
10259
10530
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10260
10531
|
method: "typia.assert",
|
|
10261
|
-
path: _path + "[" +
|
|
10532
|
+
path: _path + "[" + _index8 + "]",
|
|
10262
10533
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string)",
|
|
10263
10534
|
value: elem
|
|
10264
10535
|
}, _errorFactory))); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
@@ -13135,41 +13406,66 @@ function _assertDomainRecord(domain, input) {
|
|
|
13135
13406
|
}; })()(input);
|
|
13136
13407
|
}
|
|
13137
13408
|
case ":published": {
|
|
13138
|
-
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 _ao0 = (input, _path, _exceptionable = true) => ("string" === typeof input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13409
|
+
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 _ao0 = (input, _path, _exceptionable = true) => ("string" === typeof input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13139
13410
|
method: "typia.assert",
|
|
13140
13411
|
path: _path + ".type",
|
|
13141
13412
|
expected: "string",
|
|
13142
13413
|
value: input.type
|
|
13143
|
-
}, _errorFactory)) && ("string" === typeof input.parent || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13414
|
+
}, _errorFactory)) && (undefined === input.parent || "string" === typeof input.parent || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13144
13415
|
method: "typia.assert",
|
|
13145
13416
|
path: _path + ".parent",
|
|
13146
|
-
expected: "string",
|
|
13417
|
+
expected: "(string | undefined)",
|
|
13147
13418
|
value: input.parent
|
|
13148
|
-
}, _errorFactory)) && ((
|
|
13419
|
+
}, _errorFactory)) && ((null !== input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13149
13420
|
method: "typia.assert",
|
|
13150
13421
|
path: _path + ".asset",
|
|
13151
|
-
expected: "Array<string>",
|
|
13422
|
+
expected: "(Array<string> | string | undefined)",
|
|
13423
|
+
value: input.asset
|
|
13424
|
+
}, _errorFactory)) && (undefined === input.asset || "string" === typeof input.asset || (Array.isArray(input.asset) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13425
|
+
method: "typia.assert",
|
|
13426
|
+
path: _path + ".asset",
|
|
13427
|
+
expected: "(Array<string> | string | undefined)",
|
|
13152
13428
|
value: input.asset
|
|
13153
|
-
}, _errorFactory)) && input.asset.every((elem,
|
|
13429
|
+
}, _errorFactory)) && input.asset.every((elem, _index3) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13154
13430
|
method: "typia.assert",
|
|
13155
|
-
path: _path + ".asset[" +
|
|
13431
|
+
path: _path + ".asset[" + _index3 + "]",
|
|
13156
13432
|
expected: "string",
|
|
13157
13433
|
value: elem
|
|
13158
13434
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13159
13435
|
method: "typia.assert",
|
|
13160
13436
|
path: _path + ".asset",
|
|
13161
|
-
expected: "Array<string>",
|
|
13437
|
+
expected: "(Array<string> | string | undefined)",
|
|
13162
13438
|
value: input.asset
|
|
13439
|
+
}, _errorFactory))) && (undefined === input.assets || (Array.isArray(input.assets) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13440
|
+
method: "typia.assert",
|
|
13441
|
+
path: _path + ".assets",
|
|
13442
|
+
expected: "(Array<string> | undefined)",
|
|
13443
|
+
value: input.assets
|
|
13444
|
+
}, _errorFactory)) && input.assets.every((elem, _index4) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13445
|
+
method: "typia.assert",
|
|
13446
|
+
path: _path + ".assets[" + _index4 + "]",
|
|
13447
|
+
expected: "string",
|
|
13448
|
+
value: elem
|
|
13449
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13450
|
+
method: "typia.assert",
|
|
13451
|
+
path: _path + ".assets",
|
|
13452
|
+
expected: "(Array<string> | undefined)",
|
|
13453
|
+
value: input.assets
|
|
13163
13454
|
}, _errorFactory)) && ("number" === typeof input.time || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13164
13455
|
method: "typia.assert",
|
|
13165
13456
|
path: _path + ".time",
|
|
13166
13457
|
expected: "number",
|
|
13167
13458
|
value: input.time
|
|
13168
|
-
}, _errorFactory)) && ("string" === typeof input.connection || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13459
|
+
}, _errorFactory)) && (undefined === input.connection || "string" === typeof input.connection || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13169
13460
|
method: "typia.assert",
|
|
13170
13461
|
path: _path + ".connection",
|
|
13171
|
-
expected: "string",
|
|
13462
|
+
expected: "(string | undefined)",
|
|
13172
13463
|
value: input.connection
|
|
13464
|
+
}, _errorFactory)) && (undefined === input.gallery || "string" === typeof input.gallery || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13465
|
+
method: "typia.assert",
|
|
13466
|
+
path: _path + ".gallery",
|
|
13467
|
+
expected: "(string | undefined)",
|
|
13468
|
+
value: input.gallery
|
|
13173
13469
|
}, _errorFactory)) && (undefined === input.user || "string" === typeof input.user || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13174
13470
|
method: "typia.assert",
|
|
13175
13471
|
path: _path + ".user",
|
|
@@ -14476,12 +14772,42 @@ function _assertDomainRecord(domain, input) {
|
|
|
14476
14772
|
}; })()(input);
|
|
14477
14773
|
}
|
|
14478
14774
|
case ":script": {
|
|
14479
|
-
return (() => { const _io0 = input => "string" === typeof input.value; const _ao0 = (input, _path, _exceptionable = true) => "string" === typeof input.value || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14775
|
+
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 _ao0 = (input, _path, _exceptionable = true) => ("string" === typeof input.value || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14480
14776
|
method: "typia.assert",
|
|
14481
14777
|
path: _path + ".value",
|
|
14482
14778
|
expected: "string",
|
|
14483
14779
|
value: input.value
|
|
14484
|
-
}, _errorFactory)
|
|
14780
|
+
}, _errorFactory)) && (undefined === input.refs || (Array.isArray(input.refs) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14781
|
+
method: "typia.assert",
|
|
14782
|
+
path: _path + ".refs",
|
|
14783
|
+
expected: "(Array<__type> | undefined)",
|
|
14784
|
+
value: input.refs
|
|
14785
|
+
}, _errorFactory)) && input.refs.every((elem, _index2) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14786
|
+
method: "typia.assert",
|
|
14787
|
+
path: _path + ".refs[" + _index2 + "]",
|
|
14788
|
+
expected: "__type",
|
|
14789
|
+
value: elem
|
|
14790
|
+
}, _errorFactory)) && _ao1(elem, _path + ".refs[" + _index2 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14791
|
+
method: "typia.assert",
|
|
14792
|
+
path: _path + ".refs[" + _index2 + "]",
|
|
14793
|
+
expected: "__type",
|
|
14794
|
+
value: elem
|
|
14795
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14796
|
+
method: "typia.assert",
|
|
14797
|
+
path: _path + ".refs",
|
|
14798
|
+
expected: "(Array<__type> | undefined)",
|
|
14799
|
+
value: input.refs
|
|
14800
|
+
}, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => ("string" === typeof input.mixin || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14801
|
+
method: "typia.assert",
|
|
14802
|
+
path: _path + ".mixin",
|
|
14803
|
+
expected: "string",
|
|
14804
|
+
value: input.mixin
|
|
14805
|
+
}, _errorFactory)) && (undefined === input.asset || "string" === typeof input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14806
|
+
method: "typia.assert",
|
|
14807
|
+
path: _path + ".asset",
|
|
14808
|
+
expected: "(string | undefined)",
|
|
14809
|
+
value: input.asset
|
|
14810
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
14485
14811
|
if (false === __is(input)) {
|
|
14486
14812
|
_errorFactory = errorFactory;
|
|
14487
14813
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || __typia_transform__assertGuard._assertGuard(true, {
|
|
@@ -15255,29 +15581,29 @@ function _assertDomainRecord(domain, input) {
|
|
|
15255
15581
|
}; })()(input);
|
|
15256
15582
|
}
|
|
15257
15583
|
case ":search": {
|
|
15258
|
-
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 => {
|
|
15584
|
+
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 => {
|
|
15259
15585
|
const value = input[key];
|
|
15260
15586
|
if (undefined === value)
|
|
15261
15587
|
return true;
|
|
15262
15588
|
return "asc" === value || "desc" === value;
|
|
15263
|
-
}); const _ao0 = (input, _path, _exceptionable = true) => (undefined === input.type || "conditions_and" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15589
|
+
}); 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 _ao0 = (input, _path, _exceptionable = true) => (undefined === input.type || "conditions_and" === input.type || "conditions_or" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15264
15590
|
method: "typia.assert",
|
|
15265
15591
|
path: _path + ".type",
|
|
15266
|
-
expected: "(\"conditions_and\" | undefined)",
|
|
15592
|
+
expected: "(\"conditions_and\" | \"conditions_or\" | undefined)",
|
|
15267
15593
|
value: input.type
|
|
15268
15594
|
}, _errorFactory)) && (undefined === input.sort || (Array.isArray(input.sort) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15269
15595
|
method: "typia.assert",
|
|
15270
15596
|
path: _path + ".sort",
|
|
15271
15597
|
expected: "(Array<__type> | undefined)",
|
|
15272
15598
|
value: input.sort
|
|
15273
|
-
}, _errorFactory)) && input.sort.every((elem,
|
|
15599
|
+
}, _errorFactory)) && input.sort.every((elem, _index4) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15274
15600
|
method: "typia.assert",
|
|
15275
|
-
path: _path + ".sort[" +
|
|
15601
|
+
path: _path + ".sort[" + _index4 + "]",
|
|
15276
15602
|
expected: "__type",
|
|
15277
15603
|
value: elem
|
|
15278
|
-
}, _errorFactory)) && _ao1(elem, _path + ".sort[" +
|
|
15604
|
+
}, _errorFactory)) && _ao1(elem, _path + ".sort[" + _index4 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15279
15605
|
method: "typia.assert",
|
|
15280
|
-
path: _path + ".sort[" +
|
|
15606
|
+
path: _path + ".sort[" + _index4 + "]",
|
|
15281
15607
|
expected: "__type",
|
|
15282
15608
|
value: elem
|
|
15283
15609
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15300,24 +15626,39 @@ function _assertDomainRecord(domain, input) {
|
|
|
15300
15626
|
path: _path + ".showHidden",
|
|
15301
15627
|
expected: "(boolean | undefined)",
|
|
15302
15628
|
value: input.showHidden
|
|
15303
|
-
}, _errorFactory)) && (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 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15629
|
+
}, _errorFactory)) && (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 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15304
15630
|
method: "typia.assert",
|
|
15305
15631
|
path: _path + ".view",
|
|
15306
|
-
expected: "(\"AGENDA_VIEW\" | \"CALENDAR_VIEW\" | \"GRID_VIEW\" | \"LIST_VIEW\" | \"MAP_VIEW\" | \"RESOURCE_VIEW\" | undefined)",
|
|
15632
|
+
expected: "(\"AGENDA_VIEW\" | \"CALENDAR_VIEW\" | \"GRID_VIEW\" | \"LIST_VIEW\" | \"MAP_VIEW\" | \"RESOURCE_VIEW\" | null | undefined)",
|
|
15307
15633
|
value: input.view
|
|
15308
|
-
}, _errorFactory)) && (undefined === input.conditions || Array.isArray(input.conditions) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15634
|
+
}, _errorFactory)) && (undefined === input.conditions || (Array.isArray(input.conditions) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15635
|
+
method: "typia.assert",
|
|
15636
|
+
path: _path + ".conditions",
|
|
15637
|
+
expected: "(Array<SearchCondition> | undefined)",
|
|
15638
|
+
value: input.conditions
|
|
15639
|
+
}, _errorFactory)) && input.conditions.every((elem, _index5) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15640
|
+
method: "typia.assert",
|
|
15641
|
+
path: _path + ".conditions[" + _index5 + "]",
|
|
15642
|
+
expected: "SearchCondition",
|
|
15643
|
+
value: elem
|
|
15644
|
+
}, _errorFactory)) && _ao2(elem, _path + ".conditions[" + _index5 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15645
|
+
method: "typia.assert",
|
|
15646
|
+
path: _path + ".conditions[" + _index5 + "]",
|
|
15647
|
+
expected: "SearchCondition",
|
|
15648
|
+
value: elem
|
|
15649
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15309
15650
|
method: "typia.assert",
|
|
15310
15651
|
path: _path + ".conditions",
|
|
15311
|
-
expected: "(Array<
|
|
15652
|
+
expected: "(Array<SearchCondition> | undefined)",
|
|
15312
15653
|
value: input.conditions
|
|
15313
15654
|
}, _errorFactory)) && (null === input.visibleColumnKeys || undefined === input.visibleColumnKeys || (Array.isArray(input.visibleColumnKeys) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15314
15655
|
method: "typia.assert",
|
|
15315
15656
|
path: _path + ".visibleColumnKeys",
|
|
15316
15657
|
expected: "(Array<string> | null | undefined)",
|
|
15317
15658
|
value: input.visibleColumnKeys
|
|
15318
|
-
}, _errorFactory)) && input.visibleColumnKeys.every((elem,
|
|
15659
|
+
}, _errorFactory)) && input.visibleColumnKeys.every((elem, _index6) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15319
15660
|
method: "typia.assert",
|
|
15320
|
-
path: _path + ".visibleColumnKeys[" +
|
|
15661
|
+
path: _path + ".visibleColumnKeys[" + _index6 + "]",
|
|
15321
15662
|
expected: "string",
|
|
15322
15663
|
value: elem
|
|
15323
15664
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15330,6 +15671,31 @@ function _assertDomainRecord(domain, input) {
|
|
|
15330
15671
|
path: _path + ".connectionId",
|
|
15331
15672
|
expected: "(null | string | undefined)",
|
|
15332
15673
|
value: input.connectionId
|
|
15674
|
+
}, _errorFactory)) && (undefined === input.calendar || ("object" === typeof input.calendar && null !== input.calendar && false === Array.isArray(input.calendar) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15675
|
+
method: "typia.assert",
|
|
15676
|
+
path: _path + ".calendar",
|
|
15677
|
+
expected: "(__type.o1 | undefined)",
|
|
15678
|
+
value: input.calendar
|
|
15679
|
+
}, _errorFactory)) && _ao3(input.calendar, _path + ".calendar", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15680
|
+
method: "typia.assert",
|
|
15681
|
+
path: _path + ".calendar",
|
|
15682
|
+
expected: "(__type.o1 | undefined)",
|
|
15683
|
+
value: input.calendar
|
|
15684
|
+
}, _errorFactory)) && (undefined === input.refreshInterval || "number" === typeof input.refreshInterval || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15685
|
+
method: "typia.assert",
|
|
15686
|
+
path: _path + ".refreshInterval",
|
|
15687
|
+
expected: "(number | undefined)",
|
|
15688
|
+
value: input.refreshInterval
|
|
15689
|
+
}, _errorFactory)) && (undefined === input.color || "string" === typeof input.color || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15690
|
+
method: "typia.assert",
|
|
15691
|
+
path: _path + ".color",
|
|
15692
|
+
expected: "(string | undefined)",
|
|
15693
|
+
value: input.color
|
|
15694
|
+
}, _errorFactory)) && (undefined === input.icon || "string" === typeof input.icon || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15695
|
+
method: "typia.assert",
|
|
15696
|
+
path: _path + ".icon",
|
|
15697
|
+
expected: "(string | undefined)",
|
|
15698
|
+
value: input.icon
|
|
15333
15699
|
}, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
15334
15700
|
const value = input[key];
|
|
15335
15701
|
if (undefined === value)
|
|
@@ -15340,7 +15706,37 @@ function _assertDomainRecord(domain, input) {
|
|
|
15340
15706
|
expected: "(\"asc\" | \"desc\")",
|
|
15341
15707
|
value: value
|
|
15342
15708
|
}, _errorFactory);
|
|
15343
|
-
}); const
|
|
15709
|
+
}); const _ao2 = (input, _path, _exceptionable = true) => (undefined === input.field || "string" === typeof input.field || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15710
|
+
method: "typia.assert",
|
|
15711
|
+
path: _path + ".field",
|
|
15712
|
+
expected: "(string | undefined)",
|
|
15713
|
+
value: input.field
|
|
15714
|
+
}, _errorFactory)) && (undefined === input.type || "string" === typeof input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15715
|
+
method: "typia.assert",
|
|
15716
|
+
path: _path + ".type",
|
|
15717
|
+
expected: "(string | undefined)",
|
|
15718
|
+
value: input.type
|
|
15719
|
+
}, _errorFactory)) && (undefined === input.op || "string" === typeof input.op || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15720
|
+
method: "typia.assert",
|
|
15721
|
+
path: _path + ".op",
|
|
15722
|
+
expected: "(string | undefined)",
|
|
15723
|
+
value: input.op
|
|
15724
|
+
}, _errorFactory)) && true; const _ao3 = (input, _path, _exceptionable = true) => (null === input.view || undefined === input.view || "day" === input.view || "week" === input.view || "month" === input.view || "work_week" === input.view || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15725
|
+
method: "typia.assert",
|
|
15726
|
+
path: _path + ".view",
|
|
15727
|
+
expected: "(\"day\" | \"month\" | \"week\" | \"work_week\" | null | undefined)",
|
|
15728
|
+
value: input.view
|
|
15729
|
+
}, _errorFactory)) && (null === input.dateAccessor || undefined === input.dateAccessor || "string" === typeof input.dateAccessor || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15730
|
+
method: "typia.assert",
|
|
15731
|
+
path: _path + ".dateAccessor",
|
|
15732
|
+
expected: "(null | string | undefined)",
|
|
15733
|
+
value: input.dateAccessor
|
|
15734
|
+
}, _errorFactory)) && (undefined === input.agenda || "boolean" === typeof input.agenda || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15735
|
+
method: "typia.assert",
|
|
15736
|
+
path: _path + ".agenda",
|
|
15737
|
+
expected: "(boolean | undefined)",
|
|
15738
|
+
value: input.agenda
|
|
15739
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
15344
15740
|
if (false === __is(input)) {
|
|
15345
15741
|
_errorFactory = errorFactory;
|
|
15346
15742
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
@@ -15359,10 +15755,10 @@ function _assertDomainRecord(domain, input) {
|
|
|
15359
15755
|
}; })()(input);
|
|
15360
15756
|
}
|
|
15361
15757
|
case ":search?": {
|
|
15362
|
-
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 _ao0 = (input, _path, _exceptionable = true) => ((Array.isArray(input.hits) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15758
|
+
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 _ao0 = (input, _path, _exceptionable = true) => (undefined === input.hits || (Array.isArray(input.hits) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15363
15759
|
method: "typia.assert",
|
|
15364
15760
|
path: _path + ".hits",
|
|
15365
|
-
expected: "Array<string>",
|
|
15761
|
+
expected: "(Array<string> | undefined)",
|
|
15366
15762
|
value: input.hits
|
|
15367
15763
|
}, _errorFactory)) && input.hits.every((elem, _index2) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15368
15764
|
method: "typia.assert",
|
|
@@ -15372,7 +15768,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15372
15768
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15373
15769
|
method: "typia.assert",
|
|
15374
15770
|
path: _path + ".hits",
|
|
15375
|
-
expected: "Array<string>",
|
|
15771
|
+
expected: "(Array<string> | undefined)",
|
|
15376
15772
|
value: input.hits
|
|
15377
15773
|
}, _errorFactory)) && (undefined === input.total || "number" === typeof input.total || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15378
15774
|
method: "typia.assert",
|
|
@@ -15389,10 +15785,10 @@ function _assertDomainRecord(domain, input) {
|
|
|
15389
15785
|
path: _path + ".error",
|
|
15390
15786
|
expected: "(string | undefined)",
|
|
15391
15787
|
value: input.error
|
|
15392
|
-
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
15788
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
15393
15789
|
if (false === __is(input)) {
|
|
15394
15790
|
_errorFactory = errorFactory;
|
|
15395
|
-
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || __typia_transform__assertGuard._assertGuard(true, {
|
|
15791
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
15396
15792
|
method: "typia.assert",
|
|
15397
15793
|
path: _path + "",
|
|
15398
15794
|
expected: "SearchRecordProvided",
|
|
@@ -15407,85 +15803,153 @@ function _assertDomainRecord(domain, input) {
|
|
|
15407
15803
|
return input;
|
|
15408
15804
|
}; })()(input);
|
|
15409
15805
|
}
|
|
15806
|
+
case ":search.conditions": {
|
|
15807
|
+
return (() => { const _io0 = input => undefined === input.value || Array.isArray(input.value) && input.value.every(elem => "string" === typeof elem); const _ao0 = (input, _path, _exceptionable = true) => undefined === input.value || (Array.isArray(input.value) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15808
|
+
method: "typia.assert",
|
|
15809
|
+
path: _path + ".value",
|
|
15810
|
+
expected: "(Array<string> | undefined)",
|
|
15811
|
+
value: input.value
|
|
15812
|
+
}, _errorFactory)) && input.value.every((elem, _index2) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15813
|
+
method: "typia.assert",
|
|
15814
|
+
path: _path + ".value[" + _index2 + "]",
|
|
15815
|
+
expected: "string",
|
|
15816
|
+
value: elem
|
|
15817
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15818
|
+
method: "typia.assert",
|
|
15819
|
+
path: _path + ".value",
|
|
15820
|
+
expected: "(Array<string> | undefined)",
|
|
15821
|
+
value: input.value
|
|
15822
|
+
}, _errorFactory); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
15823
|
+
if (false === __is(input)) {
|
|
15824
|
+
_errorFactory = errorFactory;
|
|
15825
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
15826
|
+
method: "typia.assert",
|
|
15827
|
+
path: _path + "",
|
|
15828
|
+
expected: "SearchDomainConditionsRecord",
|
|
15829
|
+
value: input
|
|
15830
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
15831
|
+
method: "typia.assert",
|
|
15832
|
+
path: _path + "",
|
|
15833
|
+
expected: "SearchDomainConditionsRecord",
|
|
15834
|
+
value: input
|
|
15835
|
+
}, _errorFactory))(input, "$input", true);
|
|
15836
|
+
}
|
|
15837
|
+
return input;
|
|
15838
|
+
}; })()(input);
|
|
15839
|
+
}
|
|
15840
|
+
case ":search.visibleColumnKeys": {
|
|
15841
|
+
return (() => { const _io0 = input => undefined === input.value || Array.isArray(input.value) && input.value.every(elem => "string" === typeof elem); const _ao0 = (input, _path, _exceptionable = true) => undefined === input.value || (Array.isArray(input.value) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15842
|
+
method: "typia.assert",
|
|
15843
|
+
path: _path + ".value",
|
|
15844
|
+
expected: "(Array<string> | undefined)",
|
|
15845
|
+
value: input.value
|
|
15846
|
+
}, _errorFactory)) && input.value.every((elem, _index2) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15847
|
+
method: "typia.assert",
|
|
15848
|
+
path: _path + ".value[" + _index2 + "]",
|
|
15849
|
+
expected: "string",
|
|
15850
|
+
value: elem
|
|
15851
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15852
|
+
method: "typia.assert",
|
|
15853
|
+
path: _path + ".value",
|
|
15854
|
+
expected: "(Array<string> | undefined)",
|
|
15855
|
+
value: input.value
|
|
15856
|
+
}, _errorFactory); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
15857
|
+
if (false === __is(input)) {
|
|
15858
|
+
_errorFactory = errorFactory;
|
|
15859
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
15860
|
+
method: "typia.assert",
|
|
15861
|
+
path: _path + "",
|
|
15862
|
+
expected: "SearchDomainVisibleColumnKeysRecord",
|
|
15863
|
+
value: input
|
|
15864
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
15865
|
+
method: "typia.assert",
|
|
15866
|
+
path: _path + "",
|
|
15867
|
+
expected: "SearchDomainVisibleColumnKeysRecord",
|
|
15868
|
+
value: input
|
|
15869
|
+
}, _errorFactory))(input, "$input", true);
|
|
15870
|
+
}
|
|
15871
|
+
return input;
|
|
15872
|
+
}; })()(input);
|
|
15873
|
+
}
|
|
15410
15874
|
case ":settings": {
|
|
15411
|
-
return (() => { const
|
|
15875
|
+
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 _av54 = 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 _av58 = 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 => {
|
|
15412
15876
|
if (["settingsPanelStore"].some(prop => key === prop))
|
|
15413
15877
|
return true;
|
|
15414
15878
|
const value = input[key];
|
|
15415
15879
|
if (undefined === value)
|
|
15416
15880
|
return true;
|
|
15417
15881
|
return undefined === value || "object" === typeof value && null !== value && false === Array.isArray(value) && _io5(value);
|
|
15418
|
-
}); 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) &&
|
|
15419
|
-
const value = input[key];
|
|
15420
|
-
if (undefined === value)
|
|
15421
|
-
return true;
|
|
15422
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io23(value);
|
|
15423
|
-
}); const _io23 = input => (undefined === input.preview || "boolean" === typeof input.preview) && (undefined === input.children || "boolean" === typeof input.children); const _io24 = 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) && _io25(input.defaults)); const _io25 = input => Object.keys(input).every(key => {
|
|
15882
|
+
}); 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 => {
|
|
15424
15883
|
const value = input[key];
|
|
15425
15884
|
if (undefined === value)
|
|
15426
15885
|
return true;
|
|
15427
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15428
|
-
}); const
|
|
15886
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io24(value);
|
|
15887
|
+
}); 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 => {
|
|
15429
15888
|
const value = input[key];
|
|
15430
15889
|
if (undefined === value)
|
|
15431
15890
|
return true;
|
|
15432
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15433
|
-
}); const
|
|
15891
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io27(value);
|
|
15892
|
+
}); 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 => {
|
|
15434
15893
|
const value = input[key];
|
|
15435
15894
|
if (undefined === value)
|
|
15436
15895
|
return true;
|
|
15437
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15438
|
-
}); const _io33 = input => Object.keys(input).every(key => {
|
|
15896
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15897
|
+
}); 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 => {
|
|
15439
15898
|
const value = input[key];
|
|
15440
15899
|
if (undefined === value)
|
|
15441
15900
|
return true;
|
|
15442
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15901
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15443
15902
|
}); const _io34 = input => Object.keys(input).every(key => {
|
|
15444
15903
|
const value = input[key];
|
|
15445
15904
|
if (undefined === value)
|
|
15446
15905
|
return true;
|
|
15447
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15906
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15448
15907
|
}); const _io35 = input => Object.keys(input).every(key => {
|
|
15449
15908
|
const value = input[key];
|
|
15450
15909
|
if (undefined === value)
|
|
15451
15910
|
return true;
|
|
15452
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15911
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15453
15912
|
}); const _io36 = input => Object.keys(input).every(key => {
|
|
15454
15913
|
const value = input[key];
|
|
15455
15914
|
if (undefined === value)
|
|
15456
15915
|
return true;
|
|
15457
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15916
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15458
15917
|
}); const _io37 = input => Object.keys(input).every(key => {
|
|
15459
15918
|
const value = input[key];
|
|
15460
15919
|
if (undefined === value)
|
|
15461
15920
|
return true;
|
|
15462
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15921
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15463
15922
|
}); const _io38 = input => Object.keys(input).every(key => {
|
|
15464
15923
|
const value = input[key];
|
|
15465
15924
|
if (undefined === value)
|
|
15466
15925
|
return true;
|
|
15467
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15926
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15468
15927
|
}); const _io39 = input => Object.keys(input).every(key => {
|
|
15469
15928
|
const value = input[key];
|
|
15470
15929
|
if (undefined === value)
|
|
15471
15930
|
return true;
|
|
15472
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15931
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15473
15932
|
}); const _io40 = input => Object.keys(input).every(key => {
|
|
15474
15933
|
const value = input[key];
|
|
15475
15934
|
if (undefined === value)
|
|
15476
15935
|
return true;
|
|
15477
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15936
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15478
15937
|
}); const _io41 = input => Object.keys(input).every(key => {
|
|
15479
15938
|
const value = input[key];
|
|
15480
15939
|
if (undefined === value)
|
|
15481
15940
|
return true;
|
|
15482
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15483
|
-
}); 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 => {
|
|
15941
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15942
|
+
}); const _io42 = input => Object.keys(input).every(key => {
|
|
15943
|
+
const value = input[key];
|
|
15944
|
+
if (undefined === value)
|
|
15945
|
+
return true;
|
|
15946
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15947
|
+
}); 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 => {
|
|
15484
15948
|
const value = input[key];
|
|
15485
15949
|
if (undefined === value)
|
|
15486
15950
|
return true;
|
|
15487
15951
|
return Array.isArray(value) && value.every(elem => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem);
|
|
15488
|
-
}); const _ao0 = (input, _path, _exceptionable = true) => (undefined === input.autoLogoutTime || "number" === typeof input.autoLogoutTime || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15952
|
+
}); 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 _ao0 = (input, _path, _exceptionable = true) => (undefined === input.autoLogoutTime || "number" === typeof input.autoLogoutTime || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15489
15953
|
method: "typia.assert",
|
|
15490
15954
|
path: _path + ".autoLogoutTime",
|
|
15491
15955
|
expected: "(number | undefined)",
|
|
@@ -15555,19 +16019,19 @@ function _assertDomainRecord(domain, input) {
|
|
|
15555
16019
|
path: _path + ".exclusiveTagGroups",
|
|
15556
16020
|
expected: "(Array<Array<string>> | undefined)",
|
|
15557
16021
|
value: input.exclusiveTagGroups
|
|
15558
|
-
}, _errorFactory)) && input.exclusiveTagGroups.every((elem,
|
|
16022
|
+
}, _errorFactory)) && input.exclusiveTagGroups.every((elem, _index33) => (Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15559
16023
|
method: "typia.assert",
|
|
15560
|
-
path: _path + ".exclusiveTagGroups[" +
|
|
16024
|
+
path: _path + ".exclusiveTagGroups[" + _index33 + "]",
|
|
15561
16025
|
expected: "Array<string>",
|
|
15562
16026
|
value: elem
|
|
15563
|
-
}, _errorFactory)) && elem.every((elem,
|
|
16027
|
+
}, _errorFactory)) && elem.every((elem, _index34) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15564
16028
|
method: "typia.assert",
|
|
15565
|
-
path: _path + ".exclusiveTagGroups[" +
|
|
16029
|
+
path: _path + ".exclusiveTagGroups[" + _index33 + "][" + _index34 + "]",
|
|
15566
16030
|
expected: "string",
|
|
15567
16031
|
value: elem
|
|
15568
16032
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15569
16033
|
method: "typia.assert",
|
|
15570
|
-
path: _path + ".exclusiveTagGroups[" +
|
|
16034
|
+
path: _path + ".exclusiveTagGroups[" + _index33 + "]",
|
|
15571
16035
|
expected: "Array<string>",
|
|
15572
16036
|
value: elem
|
|
15573
16037
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15638,42 +16102,42 @@ function _assertDomainRecord(domain, input) {
|
|
|
15638
16102
|
}, _errorFactory)) && (undefined === input.script || ("object" === typeof input.script && null !== input.script && false === Array.isArray(input.script) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15639
16103
|
method: "typia.assert",
|
|
15640
16104
|
path: _path + ".script",
|
|
15641
|
-
expected: "(__type.
|
|
16105
|
+
expected: "(__type.o16 | undefined)",
|
|
15642
16106
|
value: input.script
|
|
15643
|
-
}, _errorFactory)) &&
|
|
16107
|
+
}, _errorFactory)) && _ao20(input.script, _path + ".script", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15644
16108
|
method: "typia.assert",
|
|
15645
16109
|
path: _path + ".script",
|
|
15646
|
-
expected: "(__type.
|
|
16110
|
+
expected: "(__type.o16 | undefined)",
|
|
15647
16111
|
value: input.script
|
|
15648
16112
|
}, _errorFactory)) && (undefined === input.events || ("object" === typeof input.events && null !== input.events && false === Array.isArray(input.events) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15649
16113
|
method: "typia.assert",
|
|
15650
16114
|
path: _path + ".events",
|
|
15651
|
-
expected: "(__type.
|
|
16115
|
+
expected: "(__type.o20 | undefined)",
|
|
15652
16116
|
value: input.events
|
|
15653
|
-
}, _errorFactory)) &&
|
|
16117
|
+
}, _errorFactory)) && _ao25(input.events, _path + ".events", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15654
16118
|
method: "typia.assert",
|
|
15655
16119
|
path: _path + ".events",
|
|
15656
|
-
expected: "(__type.
|
|
16120
|
+
expected: "(__type.o20 | undefined)",
|
|
15657
16121
|
value: input.events
|
|
15658
16122
|
}, _errorFactory)) && (undefined === input.rundown || ("object" === typeof input.rundown && null !== input.rundown && false === Array.isArray(input.rundown) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15659
16123
|
method: "typia.assert",
|
|
15660
16124
|
path: _path + ".rundown",
|
|
15661
|
-
expected: "(__type.
|
|
16125
|
+
expected: "(__type.o22 | undefined)",
|
|
15662
16126
|
value: input.rundown
|
|
15663
|
-
}, _errorFactory)) &&
|
|
16127
|
+
}, _errorFactory)) && _ao28(input.rundown, _path + ".rundown", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15664
16128
|
method: "typia.assert",
|
|
15665
16129
|
path: _path + ".rundown",
|
|
15666
|
-
expected: "(__type.
|
|
16130
|
+
expected: "(__type.o22 | undefined)",
|
|
15667
16131
|
value: input.rundown
|
|
15668
16132
|
}, _errorFactory)) && (undefined === input.gallery || ("object" === typeof input.gallery && null !== input.gallery && false === Array.isArray(input.gallery) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15669
16133
|
method: "typia.assert",
|
|
15670
16134
|
path: _path + ".gallery",
|
|
15671
|
-
expected: "(__type.
|
|
16135
|
+
expected: "(__type.o23 | undefined)",
|
|
15672
16136
|
value: input.gallery
|
|
15673
|
-
}, _errorFactory)) &&
|
|
16137
|
+
}, _errorFactory)) && _ao29(input.gallery, _path + ".gallery", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15674
16138
|
method: "typia.assert",
|
|
15675
16139
|
path: _path + ".gallery",
|
|
15676
|
-
expected: "(__type.
|
|
16140
|
+
expected: "(__type.o23 | undefined)",
|
|
15677
16141
|
value: input.gallery
|
|
15678
16142
|
}, _errorFactory)) && (undefined === input.history || "boolean" === typeof input.history || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15679
16143
|
method: "typia.assert",
|
|
@@ -15683,47 +16147,47 @@ function _assertDomainRecord(domain, input) {
|
|
|
15683
16147
|
}, _errorFactory)) && (undefined === input.keymap || ("object" === typeof input.keymap && null !== input.keymap && false === Array.isArray(input.keymap) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15684
16148
|
method: "typia.assert",
|
|
15685
16149
|
path: _path + ".keymap",
|
|
15686
|
-
expected: "(__type.
|
|
16150
|
+
expected: "(__type.o24 | undefined)",
|
|
15687
16151
|
value: input.keymap
|
|
15688
|
-
}, _errorFactory)) &&
|
|
16152
|
+
}, _errorFactory)) && _ao30(input.keymap, _path + ".keymap", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15689
16153
|
method: "typia.assert",
|
|
15690
16154
|
path: _path + ".keymap",
|
|
15691
|
-
expected: "(__type.
|
|
16155
|
+
expected: "(__type.o24 | undefined)",
|
|
15692
16156
|
value: input.keymap
|
|
15693
16157
|
}, _errorFactory)) && (undefined === input.media || ("object" === typeof input.media && null !== input.media && false === Array.isArray(input.media) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15694
16158
|
method: "typia.assert",
|
|
15695
16159
|
path: _path + ".media",
|
|
15696
|
-
expected: "(__type.
|
|
16160
|
+
expected: "(__type.o36 | undefined)",
|
|
15697
16161
|
value: input.media
|
|
15698
|
-
}, _errorFactory)) &&
|
|
16162
|
+
}, _errorFactory)) && _ao43(input.media, _path + ".media", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15699
16163
|
method: "typia.assert",
|
|
15700
16164
|
path: _path + ".media",
|
|
15701
|
-
expected: "(__type.
|
|
16165
|
+
expected: "(__type.o36 | undefined)",
|
|
15702
16166
|
value: input.media
|
|
15703
16167
|
}, _errorFactory)) && (undefined === input.edit || ("object" === typeof input.edit && null !== input.edit && false === Array.isArray(input.edit) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15704
16168
|
method: "typia.assert",
|
|
15705
16169
|
path: _path + ".edit",
|
|
15706
|
-
expected: "(__type.
|
|
16170
|
+
expected: "(__type.o49 | undefined)",
|
|
15707
16171
|
value: input.edit
|
|
15708
|
-
}, _errorFactory)) &&
|
|
16172
|
+
}, _errorFactory)) && _ao56(input.edit, _path + ".edit", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15709
16173
|
method: "typia.assert",
|
|
15710
16174
|
path: _path + ".edit",
|
|
15711
|
-
expected: "(__type.
|
|
16175
|
+
expected: "(__type.o49 | undefined)",
|
|
15712
16176
|
value: input.edit
|
|
15713
16177
|
}, _errorFactory)) && (undefined === input.commands || (Array.isArray(input.commands) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15714
16178
|
method: "typia.assert",
|
|
15715
16179
|
path: _path + ".commands",
|
|
15716
16180
|
expected: "(Array<__type>.o4 | undefined)",
|
|
15717
16181
|
value: input.commands
|
|
15718
|
-
}, _errorFactory)) && input.commands.every((elem,
|
|
16182
|
+
}, _errorFactory)) && input.commands.every((elem, _index35) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15719
16183
|
method: "typia.assert",
|
|
15720
|
-
path: _path + ".commands[" +
|
|
15721
|
-
expected: "__type.
|
|
16184
|
+
path: _path + ".commands[" + _index35 + "]",
|
|
16185
|
+
expected: "__type.o51",
|
|
15722
16186
|
value: elem
|
|
15723
|
-
}, _errorFactory)) &&
|
|
16187
|
+
}, _errorFactory)) && _ao58(elem, _path + ".commands[" + _index35 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15724
16188
|
method: "typia.assert",
|
|
15725
|
-
path: _path + ".commands[" +
|
|
15726
|
-
expected: "__type.
|
|
16189
|
+
path: _path + ".commands[" + _index35 + "]",
|
|
16190
|
+
expected: "__type.o51",
|
|
15727
16191
|
value: elem
|
|
15728
16192
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15729
16193
|
method: "typia.assert",
|
|
@@ -15735,9 +16199,9 @@ function _assertDomainRecord(domain, input) {
|
|
|
15735
16199
|
path: _path + ".predefinedTags",
|
|
15736
16200
|
expected: "(Array<string> | undefined)",
|
|
15737
16201
|
value: input.predefinedTags
|
|
15738
|
-
}, _errorFactory)) && input.predefinedTags.every((elem,
|
|
16202
|
+
}, _errorFactory)) && input.predefinedTags.every((elem, _index36) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15739
16203
|
method: "typia.assert",
|
|
15740
|
-
path: _path + ".predefinedTags[" +
|
|
16204
|
+
path: _path + ".predefinedTags[" + _index36 + "]",
|
|
15741
16205
|
expected: "string",
|
|
15742
16206
|
value: elem
|
|
15743
16207
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15748,37 +16212,37 @@ function _assertDomainRecord(domain, input) {
|
|
|
15748
16212
|
}, _errorFactory)) && (undefined === input.storyboard || ("object" === typeof input.storyboard && null !== input.storyboard && false === Array.isArray(input.storyboard) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15749
16213
|
method: "typia.assert",
|
|
15750
16214
|
path: _path + ".storyboard",
|
|
15751
|
-
expected: "(__type.
|
|
16215
|
+
expected: "(__type.o52 | undefined)",
|
|
15752
16216
|
value: input.storyboard
|
|
15753
|
-
}, _errorFactory)) &&
|
|
16217
|
+
}, _errorFactory)) && _ao59(input.storyboard, _path + ".storyboard", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15754
16218
|
method: "typia.assert",
|
|
15755
16219
|
path: _path + ".storyboard",
|
|
15756
|
-
expected: "(__type.
|
|
16220
|
+
expected: "(__type.o52 | undefined)",
|
|
15757
16221
|
value: input.storyboard
|
|
15758
16222
|
}, _errorFactory)) && (undefined === input.print || ("object" === typeof input.print && null !== input.print && false === Array.isArray(input.print) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15759
16223
|
method: "typia.assert",
|
|
15760
16224
|
path: _path + ".print",
|
|
15761
|
-
expected: "(__type.
|
|
16225
|
+
expected: "(__type.o61 | undefined)",
|
|
15762
16226
|
value: input.print
|
|
15763
|
-
}, _errorFactory)) &&
|
|
16227
|
+
}, _errorFactory)) && _ao68(input.print, _path + ".print", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15764
16228
|
method: "typia.assert",
|
|
15765
16229
|
path: _path + ".print",
|
|
15766
|
-
expected: "(__type.
|
|
16230
|
+
expected: "(__type.o61 | undefined)",
|
|
15767
16231
|
value: input.print
|
|
15768
16232
|
}, _errorFactory)) && (undefined === input.hiddenPreviews || (Array.isArray(input.hiddenPreviews) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15769
16233
|
method: "typia.assert",
|
|
15770
16234
|
path: _path + ".hiddenPreviews",
|
|
15771
16235
|
expected: "(Array<__type>.o5 | undefined)",
|
|
15772
16236
|
value: input.hiddenPreviews
|
|
15773
|
-
}, _errorFactory)) && input.hiddenPreviews.every((elem,
|
|
16237
|
+
}, _errorFactory)) && input.hiddenPreviews.every((elem, _index37) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15774
16238
|
method: "typia.assert",
|
|
15775
|
-
path: _path + ".hiddenPreviews[" +
|
|
15776
|
-
expected: "__type.
|
|
16239
|
+
path: _path + ".hiddenPreviews[" + _index37 + "]",
|
|
16240
|
+
expected: "__type.o62",
|
|
15777
16241
|
value: elem
|
|
15778
|
-
}, _errorFactory)) &&
|
|
16242
|
+
}, _errorFactory)) && _ao69(elem, _path + ".hiddenPreviews[" + _index37 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15779
16243
|
method: "typia.assert",
|
|
15780
|
-
path: _path + ".hiddenPreviews[" +
|
|
15781
|
-
expected: "__type.
|
|
16244
|
+
path: _path + ".hiddenPreviews[" + _index37 + "]",
|
|
16245
|
+
expected: "__type.o62",
|
|
15782
16246
|
value: elem
|
|
15783
16247
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15784
16248
|
method: "typia.assert",
|
|
@@ -15788,12 +16252,12 @@ function _assertDomainRecord(domain, input) {
|
|
|
15788
16252
|
}, _errorFactory)) && (undefined === input.plugins || ("object" === typeof input.plugins && null !== input.plugins && false === Array.isArray(input.plugins) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15789
16253
|
method: "typia.assert",
|
|
15790
16254
|
path: _path + ".plugins",
|
|
15791
|
-
expected: "(__type.
|
|
16255
|
+
expected: "(__type.o63 | undefined)",
|
|
15792
16256
|
value: input.plugins
|
|
15793
|
-
}, _errorFactory)) &&
|
|
16257
|
+
}, _errorFactory)) && _ao70(input.plugins, _path + ".plugins", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15794
16258
|
method: "typia.assert",
|
|
15795
16259
|
path: _path + ".plugins",
|
|
15796
|
-
expected: "(__type.
|
|
16260
|
+
expected: "(__type.o63 | undefined)",
|
|
15797
16261
|
value: input.plugins
|
|
15798
16262
|
}, _errorFactory)) && (undefined === input.crashScreen || "boolean" === typeof input.crashScreen || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15799
16263
|
method: "typia.assert",
|
|
@@ -15808,38 +16272,58 @@ function _assertDomainRecord(domain, input) {
|
|
|
15808
16272
|
}, _errorFactory)) && (undefined === input.featurePreview || ("object" === typeof input.featurePreview && null !== input.featurePreview && false === Array.isArray(input.featurePreview) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15809
16273
|
method: "typia.assert",
|
|
15810
16274
|
path: _path + ".featurePreview",
|
|
15811
|
-
expected: "(__type.
|
|
16275
|
+
expected: "(__type.o66 | undefined)",
|
|
15812
16276
|
value: input.featurePreview
|
|
15813
|
-
}, _errorFactory)) &&
|
|
16277
|
+
}, _errorFactory)) && _ao73(input.featurePreview, _path + ".featurePreview", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15814
16278
|
method: "typia.assert",
|
|
15815
16279
|
path: _path + ".featurePreview",
|
|
15816
|
-
expected: "(__type.
|
|
16280
|
+
expected: "(__type.o66 | undefined)",
|
|
15817
16281
|
value: input.featurePreview
|
|
15818
16282
|
}, _errorFactory)) && (undefined === input.flags || ("object" === typeof input.flags && null !== input.flags && false === Array.isArray(input.flags) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15819
16283
|
method: "typia.assert",
|
|
15820
16284
|
path: _path + ".flags",
|
|
15821
|
-
expected: "(__type.
|
|
16285
|
+
expected: "(__type.o67 | undefined)",
|
|
15822
16286
|
value: input.flags
|
|
15823
|
-
}, _errorFactory)) &&
|
|
16287
|
+
}, _errorFactory)) && _ao74(input.flags, _path + ".flags", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15824
16288
|
method: "typia.assert",
|
|
15825
16289
|
path: _path + ".flags",
|
|
15826
|
-
expected: "(__type.
|
|
16290
|
+
expected: "(__type.o67 | undefined)",
|
|
15827
16291
|
value: input.flags
|
|
15828
16292
|
}, _errorFactory)) && (undefined === input.notifications || ("object" === typeof input.notifications && null !== input.notifications && false === Array.isArray(input.notifications) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15829
16293
|
method: "typia.assert",
|
|
15830
16294
|
path: _path + ".notifications",
|
|
15831
|
-
expected: "(__type.
|
|
16295
|
+
expected: "(__type.o68 | undefined)",
|
|
15832
16296
|
value: input.notifications
|
|
15833
|
-
}, _errorFactory)) &&
|
|
16297
|
+
}, _errorFactory)) && _ao75(input.notifications, _path + ".notifications", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15834
16298
|
method: "typia.assert",
|
|
15835
16299
|
path: _path + ".notifications",
|
|
15836
|
-
expected: "(__type.
|
|
16300
|
+
expected: "(__type.o68 | undefined)",
|
|
15837
16301
|
value: input.notifications
|
|
15838
16302
|
}, _errorFactory)) && (undefined === input.suppressDeleteAlert || "boolean" === typeof input.suppressDeleteAlert || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15839
16303
|
method: "typia.assert",
|
|
15840
16304
|
path: _path + ".suppressDeleteAlert",
|
|
15841
16305
|
expected: "(boolean | undefined)",
|
|
15842
16306
|
value: input.suppressDeleteAlert
|
|
16307
|
+
}, _errorFactory)) && (undefined === input.clone || ("object" === typeof input.clone && null !== input.clone && false === Array.isArray(input.clone) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16308
|
+
method: "typia.assert",
|
|
16309
|
+
path: _path + ".clone",
|
|
16310
|
+
expected: "(__type.o71 | undefined)",
|
|
16311
|
+
value: input.clone
|
|
16312
|
+
}, _errorFactory)) && _ao78(input.clone, _path + ".clone", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16313
|
+
method: "typia.assert",
|
|
16314
|
+
path: _path + ".clone",
|
|
16315
|
+
expected: "(__type.o71 | undefined)",
|
|
16316
|
+
value: input.clone
|
|
16317
|
+
}, _errorFactory)) && (undefined === input.utilsAssetEditorPanel || ("object" === typeof input.utilsAssetEditorPanel && null !== input.utilsAssetEditorPanel && false === Array.isArray(input.utilsAssetEditorPanel) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16318
|
+
method: "typia.assert",
|
|
16319
|
+
path: _path + ".utilsAssetEditorPanel",
|
|
16320
|
+
expected: "(__type.o73 | undefined)",
|
|
16321
|
+
value: input.utilsAssetEditorPanel
|
|
16322
|
+
}, _errorFactory)) && _ao80(input.utilsAssetEditorPanel, _path + ".utilsAssetEditorPanel", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16323
|
+
method: "typia.assert",
|
|
16324
|
+
path: _path + ".utilsAssetEditorPanel",
|
|
16325
|
+
expected: "(__type.o73 | undefined)",
|
|
16326
|
+
value: input.utilsAssetEditorPanel
|
|
15843
16327
|
}, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => (undefined === input.overrideUserContact || "boolean" === typeof input.overrideUserContact || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15844
16328
|
method: "typia.assert",
|
|
15845
16329
|
path: _path + ".overrideUserContact",
|
|
@@ -15850,7 +16334,12 @@ function _assertDomainRecord(domain, input) {
|
|
|
15850
16334
|
path: _path + ".overrideUserLogin",
|
|
15851
16335
|
expected: "(boolean | undefined)",
|
|
15852
16336
|
value: input.overrideUserLogin
|
|
15853
|
-
}, _errorFactory)); const _ao2 = (input, _path, _exceptionable = true) => undefined === input.
|
|
16337
|
+
}, _errorFactory)); const _ao2 = (input, _path, _exceptionable = true) => (undefined === input.editor || "string" === typeof input.editor || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16338
|
+
method: "typia.assert",
|
|
16339
|
+
path: _path + ".editor",
|
|
16340
|
+
expected: "(string | undefined)",
|
|
16341
|
+
value: input.editor
|
|
16342
|
+
}, _errorFactory)) && (undefined === input.tabs || ("object" === typeof input.tabs && null !== input.tabs && false === Array.isArray(input.tabs) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15854
16343
|
method: "typia.assert",
|
|
15855
16344
|
path: _path + ".tabs",
|
|
15856
16345
|
expected: "(ModuleTabs | undefined)",
|
|
@@ -15860,7 +16349,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
15860
16349
|
path: _path + ".tabs",
|
|
15861
16350
|
expected: "(ModuleTabs | undefined)",
|
|
15862
16351
|
value: input.tabs
|
|
15863
|
-
}, _errorFactory); const _ao3 = (input, _path, _exceptionable = true) => (undefined === input.settingsPanelStore || ("object" === typeof input.settingsPanelStore && null !== input.settingsPanelStore && false === Array.isArray(input.settingsPanelStore) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16352
|
+
}, _errorFactory)); const _ao3 = (input, _path, _exceptionable = true) => (undefined === input.settingsPanelStore || ("object" === typeof input.settingsPanelStore && null !== input.settingsPanelStore && false === Array.isArray(input.settingsPanelStore) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15864
16353
|
method: "typia.assert",
|
|
15865
16354
|
path: _path + ".settingsPanelStore",
|
|
15866
16355
|
expected: "(SettingsPanelStoreTab | undefined)",
|
|
@@ -15892,17 +16381,27 @@ function _assertDomainRecord(domain, input) {
|
|
|
15892
16381
|
path: _path + ".activeSectionIndex",
|
|
15893
16382
|
expected: "(number | undefined)",
|
|
15894
16383
|
value: input.activeSectionIndex
|
|
15895
|
-
}, _errorFactory)) && (undefined === input.activeTab || "string" === typeof input.activeTab || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16384
|
+
}, _errorFactory)) && (null === input.activeTab || undefined === input.activeTab || "string" === typeof input.activeTab || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15896
16385
|
method: "typia.assert",
|
|
15897
16386
|
path: _path + ".activeTab",
|
|
15898
|
-
expected: "(string | undefined)",
|
|
16387
|
+
expected: "(null | string | undefined)",
|
|
15899
16388
|
value: input.activeTab
|
|
15900
|
-
}, _errorFactory))
|
|
16389
|
+
}, _errorFactory)) && (undefined === input.priority || "number" === typeof input.priority || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16390
|
+
method: "typia.assert",
|
|
16391
|
+
path: _path + ".priority",
|
|
16392
|
+
expected: "(number | undefined)",
|
|
16393
|
+
value: input.priority
|
|
16394
|
+
}, _errorFactory)); const _ao5 = (input, _path, _exceptionable = true) => (null === input.activeTab || undefined === input.activeTab || "string" === typeof input.activeTab || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15901
16395
|
method: "typia.assert",
|
|
15902
16396
|
path: _path + ".activeTab",
|
|
15903
|
-
expected: "(string | undefined)",
|
|
16397
|
+
expected: "(null | string | undefined)",
|
|
15904
16398
|
value: input.activeTab
|
|
15905
|
-
}, _errorFactory)
|
|
16399
|
+
}, _errorFactory)) && (undefined === input.priority || "number" === typeof input.priority || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16400
|
+
method: "typia.assert",
|
|
16401
|
+
path: _path + ".priority",
|
|
16402
|
+
expected: "(number | undefined)",
|
|
16403
|
+
value: input.priority
|
|
16404
|
+
}, _errorFactory)); const _ao6 = (input, _path, _exceptionable = true) => (undefined === input.defaultGrouping || "" === input.defaultGrouping || "collection" === input.defaultGrouping || "stitch" === input.defaultGrouping || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15906
16405
|
method: "typia.assert",
|
|
15907
16406
|
path: _path + ".defaultGrouping",
|
|
15908
16407
|
expected: "(\"\" | \"collection\" | \"stitch\" | undefined)",
|
|
@@ -15982,9 +16481,9 @@ function _assertDomainRecord(domain, input) {
|
|
|
15982
16481
|
path: _path + ".sortOrder",
|
|
15983
16482
|
expected: "(Array<string> | undefined)",
|
|
15984
16483
|
value: input.sortOrder
|
|
15985
|
-
}, _errorFactory)) && input.sortOrder.every((elem,
|
|
16484
|
+
}, _errorFactory)) && input.sortOrder.every((elem, _index38) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15986
16485
|
method: "typia.assert",
|
|
15987
|
-
path: _path + ".sortOrder[" +
|
|
16486
|
+
path: _path + ".sortOrder[" + _index38 + "]",
|
|
15988
16487
|
expected: "string",
|
|
15989
16488
|
value: elem
|
|
15990
16489
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15992,14 +16491,29 @@ function _assertDomainRecord(domain, input) {
|
|
|
15992
16491
|
path: _path + ".sortOrder",
|
|
15993
16492
|
expected: "(Array<string> | undefined)",
|
|
15994
16493
|
value: input.sortOrder
|
|
15995
|
-
}, _errorFactory); const _ao12 = (input, _path, _exceptionable = true) => undefined === input.
|
|
16494
|
+
}, _errorFactory); const _ao12 = (input, _path, _exceptionable = true) => (undefined === input.include || (Array.isArray(input.include) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16495
|
+
method: "typia.assert",
|
|
16496
|
+
path: _path + ".include",
|
|
16497
|
+
expected: "(Array<string> | undefined)",
|
|
16498
|
+
value: input.include
|
|
16499
|
+
}, _errorFactory)) && input.include.every((elem, _index39) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16500
|
+
method: "typia.assert",
|
|
16501
|
+
path: _path + ".include[" + _index39 + "]",
|
|
16502
|
+
expected: "string",
|
|
16503
|
+
value: elem
|
|
16504
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16505
|
+
method: "typia.assert",
|
|
16506
|
+
path: _path + ".include",
|
|
16507
|
+
expected: "(Array<string> | undefined)",
|
|
16508
|
+
value: input.include
|
|
16509
|
+
}, _errorFactory)) && (undefined === input.exclude || (Array.isArray(input.exclude) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15996
16510
|
method: "typia.assert",
|
|
15997
16511
|
path: _path + ".exclude",
|
|
15998
16512
|
expected: "(Array<string> | undefined)",
|
|
15999
16513
|
value: input.exclude
|
|
16000
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
16514
|
+
}, _errorFactory)) && input.exclude.every((elem, _index40) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16001
16515
|
method: "typia.assert",
|
|
16002
|
-
path: _path + ".exclude[" +
|
|
16516
|
+
path: _path + ".exclude[" + _index40 + "]",
|
|
16003
16517
|
expected: "string",
|
|
16004
16518
|
value: elem
|
|
16005
16519
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16007,14 +16521,14 @@ function _assertDomainRecord(domain, input) {
|
|
|
16007
16521
|
path: _path + ".exclude",
|
|
16008
16522
|
expected: "(Array<string> | undefined)",
|
|
16009
16523
|
value: input.exclude
|
|
16010
|
-
}, _errorFactory); const _ao13 = (input, _path, _exceptionable = true) => (undefined === input.include || (Array.isArray(input.include) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16524
|
+
}, _errorFactory)); const _ao13 = (input, _path, _exceptionable = true) => (undefined === input.include || (Array.isArray(input.include) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16011
16525
|
method: "typia.assert",
|
|
16012
16526
|
path: _path + ".include",
|
|
16013
16527
|
expected: "(Array<string> | undefined)",
|
|
16014
16528
|
value: input.include
|
|
16015
|
-
}, _errorFactory)) && input.include.every((elem,
|
|
16529
|
+
}, _errorFactory)) && input.include.every((elem, _index41) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16016
16530
|
method: "typia.assert",
|
|
16017
|
-
path: _path + ".include[" +
|
|
16531
|
+
path: _path + ".include[" + _index41 + "]",
|
|
16018
16532
|
expected: "string",
|
|
16019
16533
|
value: elem
|
|
16020
16534
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16027,9 +16541,9 @@ function _assertDomainRecord(domain, input) {
|
|
|
16027
16541
|
path: _path + ".exclude",
|
|
16028
16542
|
expected: "(Array<string> | undefined)",
|
|
16029
16543
|
value: input.exclude
|
|
16030
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
16544
|
+
}, _errorFactory)) && input.exclude.every((elem, _index42) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16031
16545
|
method: "typia.assert",
|
|
16032
|
-
path: _path + ".exclude[" +
|
|
16546
|
+
path: _path + ".exclude[" + _index42 + "]",
|
|
16033
16547
|
expected: "string",
|
|
16034
16548
|
value: elem
|
|
16035
16549
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16042,9 +16556,9 @@ function _assertDomainRecord(domain, input) {
|
|
|
16042
16556
|
path: _path + ".include",
|
|
16043
16557
|
expected: "(Array<string> | undefined)",
|
|
16044
16558
|
value: input.include
|
|
16045
|
-
}, _errorFactory)) && input.include.every((elem,
|
|
16559
|
+
}, _errorFactory)) && input.include.every((elem, _index43) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16046
16560
|
method: "typia.assert",
|
|
16047
|
-
path: _path + ".include[" +
|
|
16561
|
+
path: _path + ".include[" + _index43 + "]",
|
|
16048
16562
|
expected: "string",
|
|
16049
16563
|
value: elem
|
|
16050
16564
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16057,9 +16571,9 @@ function _assertDomainRecord(domain, input) {
|
|
|
16057
16571
|
path: _path + ".exclude",
|
|
16058
16572
|
expected: "(Array<string> | undefined)",
|
|
16059
16573
|
value: input.exclude
|
|
16060
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
16574
|
+
}, _errorFactory)) && input.exclude.every((elem, _index44) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16061
16575
|
method: "typia.assert",
|
|
16062
|
-
path: _path + ".exclude[" +
|
|
16576
|
+
path: _path + ".exclude[" + _index44 + "]",
|
|
16063
16577
|
expected: "string",
|
|
16064
16578
|
value: elem
|
|
16065
16579
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16072,9 +16586,9 @@ function _assertDomainRecord(domain, input) {
|
|
|
16072
16586
|
path: _path + ".include",
|
|
16073
16587
|
expected: "(Array<string> | undefined)",
|
|
16074
16588
|
value: input.include
|
|
16075
|
-
}, _errorFactory)) && input.include.every((elem,
|
|
16589
|
+
}, _errorFactory)) && input.include.every((elem, _index45) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16076
16590
|
method: "typia.assert",
|
|
16077
|
-
path: _path + ".include[" +
|
|
16591
|
+
path: _path + ".include[" + _index45 + "]",
|
|
16078
16592
|
expected: "string",
|
|
16079
16593
|
value: elem
|
|
16080
16594
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16087,9 +16601,9 @@ function _assertDomainRecord(domain, input) {
|
|
|
16087
16601
|
path: _path + ".exclude",
|
|
16088
16602
|
expected: "(Array<string> | undefined)",
|
|
16089
16603
|
value: input.exclude
|
|
16090
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
16604
|
+
}, _errorFactory)) && input.exclude.every((elem, _index46) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16091
16605
|
method: "typia.assert",
|
|
16092
|
-
path: _path + ".exclude[" +
|
|
16606
|
+
path: _path + ".exclude[" + _index46 + "]",
|
|
16093
16607
|
expected: "string",
|
|
16094
16608
|
value: elem
|
|
16095
16609
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16152,29 +16666,49 @@ function _assertDomainRecord(domain, input) {
|
|
|
16152
16666
|
path: _path + ".maxTabs",
|
|
16153
16667
|
expected: "(number | undefined)",
|
|
16154
16668
|
value: input.maxTabs
|
|
16155
|
-
}, _errorFactory))
|
|
16669
|
+
}, _errorFactory)) && (undefined === input.layout || ("object" === typeof input.layout && null !== input.layout && false === Array.isArray(input.layout) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16156
16670
|
method: "typia.assert",
|
|
16157
|
-
path: _path + ".
|
|
16158
|
-
expected: "(__type.
|
|
16159
|
-
value: input.
|
|
16160
|
-
}, _errorFactory)) &&
|
|
16671
|
+
path: _path + ".layout",
|
|
16672
|
+
expected: "(__type.o15 | undefined)",
|
|
16673
|
+
value: input.layout
|
|
16674
|
+
}, _errorFactory)) && _ao19(input.layout, _path + ".layout", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16675
|
+
method: "typia.assert",
|
|
16676
|
+
path: _path + ".layout",
|
|
16677
|
+
expected: "(__type.o15 | undefined)",
|
|
16678
|
+
value: input.layout
|
|
16679
|
+
}, _errorFactory)); const _ao19 = (input, _path, _exceptionable = true) => (undefined === input.bookmarks || "number" === typeof input.bookmarks || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16680
|
+
method: "typia.assert",
|
|
16681
|
+
path: _path + ".bookmarks",
|
|
16682
|
+
expected: "(number | undefined)",
|
|
16683
|
+
value: input.bookmarks
|
|
16684
|
+
}, _errorFactory)) && (undefined === input.browser || "number" === typeof input.browser || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16685
|
+
method: "typia.assert",
|
|
16686
|
+
path: _path + ".browser",
|
|
16687
|
+
expected: "(number | undefined)",
|
|
16688
|
+
value: input.browser
|
|
16689
|
+
}, _errorFactory)); const _ao20 = (input, _path, _exceptionable = true) => (undefined === input.createMenu || ("object" === typeof input.createMenu && null !== input.createMenu && false === Array.isArray(input.createMenu) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16161
16690
|
method: "typia.assert",
|
|
16162
16691
|
path: _path + ".createMenu",
|
|
16163
|
-
expected: "(__type.
|
|
16692
|
+
expected: "(__type.o17 | undefined)",
|
|
16693
|
+
value: input.createMenu
|
|
16694
|
+
}, _errorFactory)) && _ao21(input.createMenu, _path + ".createMenu", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16695
|
+
method: "typia.assert",
|
|
16696
|
+
path: _path + ".createMenu",
|
|
16697
|
+
expected: "(__type.o17 | undefined)",
|
|
16164
16698
|
value: input.createMenu
|
|
16165
16699
|
}, _errorFactory)) && (undefined === input.colorTags || (Array.isArray(input.colorTags) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16166
16700
|
method: "typia.assert",
|
|
16167
16701
|
path: _path + ".colorTags",
|
|
16168
16702
|
expected: "(Array<PromotedTag> | undefined)",
|
|
16169
16703
|
value: input.colorTags
|
|
16170
|
-
}, _errorFactory)) && input.colorTags.every((elem,
|
|
16704
|
+
}, _errorFactory)) && input.colorTags.every((elem, _index47) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16171
16705
|
method: "typia.assert",
|
|
16172
|
-
path: _path + ".colorTags[" +
|
|
16706
|
+
path: _path + ".colorTags[" + _index47 + "]",
|
|
16173
16707
|
expected: "PromotedTag",
|
|
16174
16708
|
value: elem
|
|
16175
|
-
}, _errorFactory)) &&
|
|
16709
|
+
}, _errorFactory)) && _ao22(elem, _path + ".colorTags[" + _index47 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16176
16710
|
method: "typia.assert",
|
|
16177
|
-
path: _path + ".colorTags[" +
|
|
16711
|
+
path: _path + ".colorTags[" + _index47 + "]",
|
|
16178
16712
|
expected: "PromotedTag",
|
|
16179
16713
|
value: elem
|
|
16180
16714
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16195,14 +16729,14 @@ function _assertDomainRecord(domain, input) {
|
|
|
16195
16729
|
}, _errorFactory)) && (undefined === input.collapsedNodes || ("object" === typeof input.collapsedNodes && null !== input.collapsedNodes && false === Array.isArray(input.collapsedNodes) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16196
16730
|
method: "typia.assert",
|
|
16197
16731
|
path: _path + ".collapsedNodes",
|
|
16198
|
-
expected: "(__type.
|
|
16732
|
+
expected: "(__type.o18 | undefined)",
|
|
16199
16733
|
value: input.collapsedNodes
|
|
16200
|
-
}, _errorFactory)) &&
|
|
16734
|
+
}, _errorFactory)) && _ao23(input.collapsedNodes, _path + ".collapsedNodes", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16201
16735
|
method: "typia.assert",
|
|
16202
16736
|
path: _path + ".collapsedNodes",
|
|
16203
|
-
expected: "(__type.
|
|
16737
|
+
expected: "(__type.o18 | undefined)",
|
|
16204
16738
|
value: input.collapsedNodes
|
|
16205
|
-
}, _errorFactory)); const
|
|
16739
|
+
}, _errorFactory)); const _ao21 = (input, _path, _exceptionable = true) => (undefined === input.sortBy || "index" === input.sortBy || "title" === input.sortBy || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16206
16740
|
method: "typia.assert",
|
|
16207
16741
|
path: _path + ".sortBy",
|
|
16208
16742
|
expected: "(\"index\" | \"title\" | undefined)",
|
|
@@ -16212,7 +16746,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16212
16746
|
path: _path + ".showPreview",
|
|
16213
16747
|
expected: "(boolean | undefined)",
|
|
16214
16748
|
value: input.showPreview
|
|
16215
|
-
}, _errorFactory)); const
|
|
16749
|
+
}, _errorFactory)); const _ao22 = (input, _path, _exceptionable = true) => (null === input.name || "string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16216
16750
|
method: "typia.assert",
|
|
16217
16751
|
path: _path + ".name",
|
|
16218
16752
|
expected: "(null | string)",
|
|
@@ -16232,22 +16766,22 @@ function _assertDomainRecord(domain, input) {
|
|
|
16232
16766
|
path: _path + ".description",
|
|
16233
16767
|
expected: "(null | string)",
|
|
16234
16768
|
value: input.description
|
|
16235
|
-
}, _errorFactory)); const
|
|
16769
|
+
}, _errorFactory)); const _ao23 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16236
16770
|
const value = input[key];
|
|
16237
16771
|
if (undefined === value)
|
|
16238
16772
|
return true;
|
|
16239
16773
|
return ("object" === typeof value && null !== value && false === Array.isArray(value) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16240
16774
|
method: "typia.assert",
|
|
16241
16775
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16242
|
-
expected: "__type.
|
|
16776
|
+
expected: "__type.o19",
|
|
16243
16777
|
value: value
|
|
16244
|
-
}, _errorFactory)) &&
|
|
16778
|
+
}, _errorFactory)) && _ao24(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16245
16779
|
method: "typia.assert",
|
|
16246
16780
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16247
|
-
expected: "__type.
|
|
16781
|
+
expected: "__type.o19",
|
|
16248
16782
|
value: value
|
|
16249
16783
|
}, _errorFactory);
|
|
16250
|
-
}); const
|
|
16784
|
+
}); const _ao24 = (input, _path, _exceptionable = true) => (undefined === input.preview || "boolean" === typeof input.preview || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16251
16785
|
method: "typia.assert",
|
|
16252
16786
|
path: _path + ".preview",
|
|
16253
16787
|
expected: "(boolean | undefined)",
|
|
@@ -16257,7 +16791,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16257
16791
|
path: _path + ".children",
|
|
16258
16792
|
expected: "(boolean | undefined)",
|
|
16259
16793
|
value: input.children
|
|
16260
|
-
}, _errorFactory)); const
|
|
16794
|
+
}, _errorFactory)); const _ao25 = (input, _path, _exceptionable = true) => (undefined === input.graphicBaseTemplate || "string" === typeof input.graphicBaseTemplate || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16261
16795
|
method: "typia.assert",
|
|
16262
16796
|
path: _path + ".graphicBaseTemplate",
|
|
16263
16797
|
expected: "(string | undefined)",
|
|
@@ -16267,9 +16801,9 @@ function _assertDomainRecord(domain, input) {
|
|
|
16267
16801
|
path: _path + ".favorites",
|
|
16268
16802
|
expected: "(Array<string> | undefined)",
|
|
16269
16803
|
value: input.favorites
|
|
16270
|
-
}, _errorFactory)) && input.favorites.every((elem,
|
|
16804
|
+
}, _errorFactory)) && input.favorites.every((elem, _index48) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16271
16805
|
method: "typia.assert",
|
|
16272
|
-
path: _path + ".favorites[" +
|
|
16806
|
+
path: _path + ".favorites[" + _index48 + "]",
|
|
16273
16807
|
expected: "string",
|
|
16274
16808
|
value: elem
|
|
16275
16809
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16282,27 +16816,27 @@ function _assertDomainRecord(domain, input) {
|
|
|
16282
16816
|
path: _path + ".defaults",
|
|
16283
16817
|
expected: "(Record<string, __type> | undefined)",
|
|
16284
16818
|
value: input.defaults
|
|
16285
|
-
}, _errorFactory)) &&
|
|
16819
|
+
}, _errorFactory)) && _ao26(input.defaults, _path + ".defaults", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16286
16820
|
method: "typia.assert",
|
|
16287
16821
|
path: _path + ".defaults",
|
|
16288
16822
|
expected: "(Record<string, __type> | undefined)",
|
|
16289
16823
|
value: input.defaults
|
|
16290
|
-
}, _errorFactory)); const
|
|
16824
|
+
}, _errorFactory)); const _ao26 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16291
16825
|
const value = input[key];
|
|
16292
16826
|
if (undefined === value)
|
|
16293
16827
|
return true;
|
|
16294
16828
|
return ("object" === typeof value && null !== value && false === Array.isArray(value) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16295
16829
|
method: "typia.assert",
|
|
16296
16830
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16297
|
-
expected: "__type.
|
|
16831
|
+
expected: "__type.o21",
|
|
16298
16832
|
value: value
|
|
16299
|
-
}, _errorFactory)) &&
|
|
16833
|
+
}, _errorFactory)) && _ao27(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16300
16834
|
method: "typia.assert",
|
|
16301
16835
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16302
|
-
expected: "__type.
|
|
16836
|
+
expected: "__type.o21",
|
|
16303
16837
|
value: value
|
|
16304
16838
|
}, _errorFactory);
|
|
16305
|
-
}); const
|
|
16839
|
+
}); const _ao27 = (input, _path, _exceptionable = true) => (undefined === input.event || "string" === typeof input.event || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16306
16840
|
method: "typia.assert",
|
|
16307
16841
|
path: _path + ".event",
|
|
16308
16842
|
expected: "(string | undefined)",
|
|
@@ -16312,12 +16846,12 @@ function _assertDomainRecord(domain, input) {
|
|
|
16312
16846
|
path: _path + ".property",
|
|
16313
16847
|
expected: "(string | undefined)",
|
|
16314
16848
|
value: input.property
|
|
16315
|
-
}, _errorFactory)); const
|
|
16849
|
+
}, _errorFactory)); const _ao28 = (input, _path, _exceptionable = true) => undefined === input.eventThumbnails || "boolean" === typeof input.eventThumbnails || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16316
16850
|
method: "typia.assert",
|
|
16317
16851
|
path: _path + ".eventThumbnails",
|
|
16318
16852
|
expected: "(boolean | undefined)",
|
|
16319
16853
|
value: input.eventThumbnails
|
|
16320
|
-
}, _errorFactory); const
|
|
16854
|
+
}, _errorFactory); const _ao29 = (input, _path, _exceptionable = true) => (undefined === input.dimOnBlur || "boolean" === typeof input.dimOnBlur || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16321
16855
|
method: "typia.assert",
|
|
16322
16856
|
path: _path + ".dimOnBlur",
|
|
16323
16857
|
expected: "(boolean | undefined)",
|
|
@@ -16327,117 +16861,122 @@ function _assertDomainRecord(domain, input) {
|
|
|
16327
16861
|
path: _path + ".float",
|
|
16328
16862
|
expected: "(\"disabled\" | \"gallery\" | \"rundown\" | undefined)",
|
|
16329
16863
|
value: input.float
|
|
16330
|
-
}, _errorFactory))
|
|
16864
|
+
}, _errorFactory)) && (undefined === input.countFloatedDuration || "boolean" === typeof input.countFloatedDuration || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16865
|
+
method: "typia.assert",
|
|
16866
|
+
path: _path + ".countFloatedDuration",
|
|
16867
|
+
expected: "(boolean | undefined)",
|
|
16868
|
+
value: input.countFloatedDuration
|
|
16869
|
+
}, _errorFactory)); const _ao30 = (input, _path, _exceptionable = true) => (undefined === input.display || ("object" === typeof input.display && null !== input.display && false === Array.isArray(input.display) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16331
16870
|
method: "typia.assert",
|
|
16332
16871
|
path: _path + ".display",
|
|
16333
|
-
expected: "(__type.
|
|
16872
|
+
expected: "(__type.o25 | undefined)",
|
|
16334
16873
|
value: input.display
|
|
16335
|
-
}, _errorFactory)) &&
|
|
16874
|
+
}, _errorFactory)) && _ao31(input.display, _path + ".display", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16336
16875
|
method: "typia.assert",
|
|
16337
16876
|
path: _path + ".display",
|
|
16338
|
-
expected: "(__type.
|
|
16877
|
+
expected: "(__type.o25 | undefined)",
|
|
16339
16878
|
value: input.display
|
|
16340
16879
|
}, _errorFactory)) && (undefined === input.browser || ("object" === typeof input.browser && null !== input.browser && false === Array.isArray(input.browser) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16341
16880
|
method: "typia.assert",
|
|
16342
16881
|
path: _path + ".browser",
|
|
16343
|
-
expected: "(__type.
|
|
16882
|
+
expected: "(__type.o26 | undefined)",
|
|
16344
16883
|
value: input.browser
|
|
16345
|
-
}, _errorFactory)) &&
|
|
16884
|
+
}, _errorFactory)) && _ao33(input.browser, _path + ".browser", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16346
16885
|
method: "typia.assert",
|
|
16347
16886
|
path: _path + ".browser",
|
|
16348
|
-
expected: "(__type.
|
|
16887
|
+
expected: "(__type.o26 | undefined)",
|
|
16349
16888
|
value: input.browser
|
|
16350
16889
|
}, _errorFactory)) && (undefined === input.gallery || ("object" === typeof input.gallery && null !== input.gallery && false === Array.isArray(input.gallery) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16351
16890
|
method: "typia.assert",
|
|
16352
16891
|
path: _path + ".gallery",
|
|
16353
|
-
expected: "(__type.
|
|
16892
|
+
expected: "(__type.o27 | undefined)",
|
|
16354
16893
|
value: input.gallery
|
|
16355
|
-
}, _errorFactory)) &&
|
|
16894
|
+
}, _errorFactory)) && _ao34(input.gallery, _path + ".gallery", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16356
16895
|
method: "typia.assert",
|
|
16357
16896
|
path: _path + ".gallery",
|
|
16358
|
-
expected: "(__type.
|
|
16897
|
+
expected: "(__type.o27 | undefined)",
|
|
16359
16898
|
value: input.gallery
|
|
16360
16899
|
}, _errorFactory)) && (undefined === input.global || ("object" === typeof input.global && null !== input.global && false === Array.isArray(input.global) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16361
16900
|
method: "typia.assert",
|
|
16362
16901
|
path: _path + ".global",
|
|
16363
|
-
expected: "(__type.
|
|
16902
|
+
expected: "(__type.o28 | undefined)",
|
|
16364
16903
|
value: input.global
|
|
16365
|
-
}, _errorFactory)) &&
|
|
16904
|
+
}, _errorFactory)) && _ao35(input.global, _path + ".global", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16366
16905
|
method: "typia.assert",
|
|
16367
16906
|
path: _path + ".global",
|
|
16368
|
-
expected: "(__type.
|
|
16907
|
+
expected: "(__type.o28 | undefined)",
|
|
16369
16908
|
value: input.global
|
|
16370
16909
|
}, _errorFactory)) && (undefined === input.player || ("object" === typeof input.player && null !== input.player && false === Array.isArray(input.player) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16371
16910
|
method: "typia.assert",
|
|
16372
16911
|
path: _path + ".player",
|
|
16373
|
-
expected: "(__type.
|
|
16912
|
+
expected: "(__type.o29 | undefined)",
|
|
16374
16913
|
value: input.player
|
|
16375
|
-
}, _errorFactory)) &&
|
|
16914
|
+
}, _errorFactory)) && _ao36(input.player, _path + ".player", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16376
16915
|
method: "typia.assert",
|
|
16377
16916
|
path: _path + ".player",
|
|
16378
|
-
expected: "(__type.
|
|
16917
|
+
expected: "(__type.o29 | undefined)",
|
|
16379
16918
|
value: input.player
|
|
16380
16919
|
}, _errorFactory)) && (undefined === input.script || ("object" === typeof input.script && null !== input.script && false === Array.isArray(input.script) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16381
16920
|
method: "typia.assert",
|
|
16382
16921
|
path: _path + ".script",
|
|
16383
|
-
expected: "(__type.
|
|
16922
|
+
expected: "(__type.o30 | undefined)",
|
|
16384
16923
|
value: input.script
|
|
16385
|
-
}, _errorFactory)) &&
|
|
16924
|
+
}, _errorFactory)) && _ao37(input.script, _path + ".script", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16386
16925
|
method: "typia.assert",
|
|
16387
16926
|
path: _path + ".script",
|
|
16388
|
-
expected: "(__type.
|
|
16927
|
+
expected: "(__type.o30 | undefined)",
|
|
16389
16928
|
value: input.script
|
|
16390
16929
|
}, _errorFactory)) && (undefined === input.codeEditor || ("object" === typeof input.codeEditor && null !== input.codeEditor && false === Array.isArray(input.codeEditor) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16391
16930
|
method: "typia.assert",
|
|
16392
16931
|
path: _path + ".codeEditor",
|
|
16393
|
-
expected: "(__type.
|
|
16932
|
+
expected: "(__type.o31 | undefined)",
|
|
16394
16933
|
value: input.codeEditor
|
|
16395
|
-
}, _errorFactory)) &&
|
|
16934
|
+
}, _errorFactory)) && _ao38(input.codeEditor, _path + ".codeEditor", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16396
16935
|
method: "typia.assert",
|
|
16397
16936
|
path: _path + ".codeEditor",
|
|
16398
|
-
expected: "(__type.
|
|
16937
|
+
expected: "(__type.o31 | undefined)",
|
|
16399
16938
|
value: input.codeEditor
|
|
16400
16939
|
}, _errorFactory)) && (undefined === input.bookmarks || ("object" === typeof input.bookmarks && null !== input.bookmarks && false === Array.isArray(input.bookmarks) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16401
16940
|
method: "typia.assert",
|
|
16402
16941
|
path: _path + ".bookmarks",
|
|
16403
|
-
expected: "(__type.
|
|
16942
|
+
expected: "(__type.o32 | undefined)",
|
|
16404
16943
|
value: input.bookmarks
|
|
16405
|
-
}, _errorFactory)) &&
|
|
16944
|
+
}, _errorFactory)) && _ao39(input.bookmarks, _path + ".bookmarks", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16406
16945
|
method: "typia.assert",
|
|
16407
16946
|
path: _path + ".bookmarks",
|
|
16408
|
-
expected: "(__type.
|
|
16947
|
+
expected: "(__type.o32 | undefined)",
|
|
16409
16948
|
value: input.bookmarks
|
|
16410
16949
|
}, _errorFactory)) && (undefined === input.edit || ("object" === typeof input.edit && null !== input.edit && false === Array.isArray(input.edit) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16411
16950
|
method: "typia.assert",
|
|
16412
16951
|
path: _path + ".edit",
|
|
16413
|
-
expected: "(__type.
|
|
16952
|
+
expected: "(__type.o33 | undefined)",
|
|
16414
16953
|
value: input.edit
|
|
16415
|
-
}, _errorFactory)) &&
|
|
16954
|
+
}, _errorFactory)) && _ao40(input.edit, _path + ".edit", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16416
16955
|
method: "typia.assert",
|
|
16417
16956
|
path: _path + ".edit",
|
|
16418
|
-
expected: "(__type.
|
|
16957
|
+
expected: "(__type.o33 | undefined)",
|
|
16419
16958
|
value: input.edit
|
|
16420
16959
|
}, _errorFactory)) && (undefined === input.rundown || ("object" === typeof input.rundown && null !== input.rundown && false === Array.isArray(input.rundown) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16421
16960
|
method: "typia.assert",
|
|
16422
16961
|
path: _path + ".rundown",
|
|
16423
|
-
expected: "(__type.
|
|
16962
|
+
expected: "(__type.o34 | undefined)",
|
|
16424
16963
|
value: input.rundown
|
|
16425
|
-
}, _errorFactory)) &&
|
|
16964
|
+
}, _errorFactory)) && _ao41(input.rundown, _path + ".rundown", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16426
16965
|
method: "typia.assert",
|
|
16427
16966
|
path: _path + ".rundown",
|
|
16428
|
-
expected: "(__type.
|
|
16967
|
+
expected: "(__type.o34 | undefined)",
|
|
16429
16968
|
value: input.rundown
|
|
16430
16969
|
}, _errorFactory)) && (undefined === input.segment || ("object" === typeof input.segment && null !== input.segment && false === Array.isArray(input.segment) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16431
16970
|
method: "typia.assert",
|
|
16432
16971
|
path: _path + ".segment",
|
|
16433
|
-
expected: "(__type.
|
|
16972
|
+
expected: "(__type.o35 | undefined)",
|
|
16434
16973
|
value: input.segment
|
|
16435
|
-
}, _errorFactory)) &&
|
|
16974
|
+
}, _errorFactory)) && _ao42(input.segment, _path + ".segment", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16436
16975
|
method: "typia.assert",
|
|
16437
16976
|
path: _path + ".segment",
|
|
16438
|
-
expected: "(__type.
|
|
16977
|
+
expected: "(__type.o35 | undefined)",
|
|
16439
16978
|
value: input.segment
|
|
16440
|
-
}, _errorFactory)); const
|
|
16979
|
+
}, _errorFactory)); const _ao31 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16441
16980
|
const value = input[key];
|
|
16442
16981
|
if (undefined === value)
|
|
16443
16982
|
return true;
|
|
@@ -16446,13 +16985,13 @@ function _assertDomainRecord(domain, input) {
|
|
|
16446
16985
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16447
16986
|
expected: "KeymapSetting",
|
|
16448
16987
|
value: value
|
|
16449
|
-
}, _errorFactory)) &&
|
|
16988
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16450
16989
|
method: "typia.assert",
|
|
16451
16990
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16452
16991
|
expected: "KeymapSetting",
|
|
16453
16992
|
value: value
|
|
16454
16993
|
}, _errorFactory);
|
|
16455
|
-
}); const
|
|
16994
|
+
}); const _ao32 = (input, _path, _exceptionable = true) => (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16456
16995
|
method: "typia.assert",
|
|
16457
16996
|
path: _path + ".title",
|
|
16458
16997
|
expected: "(string | undefined)",
|
|
@@ -16462,7 +17001,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16462
17001
|
path: _path + ".sequence",
|
|
16463
17002
|
expected: "(string | undefined)",
|
|
16464
17003
|
value: input.sequence
|
|
16465
|
-
}, _errorFactory)); const
|
|
17004
|
+
}, _errorFactory)); const _ao33 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16466
17005
|
const value = input[key];
|
|
16467
17006
|
if (undefined === value)
|
|
16468
17007
|
return true;
|
|
@@ -16471,13 +17010,13 @@ function _assertDomainRecord(domain, input) {
|
|
|
16471
17010
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16472
17011
|
expected: "KeymapSetting",
|
|
16473
17012
|
value: value
|
|
16474
|
-
}, _errorFactory)) &&
|
|
17013
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16475
17014
|
method: "typia.assert",
|
|
16476
17015
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16477
17016
|
expected: "KeymapSetting",
|
|
16478
17017
|
value: value
|
|
16479
17018
|
}, _errorFactory);
|
|
16480
|
-
}); const
|
|
17019
|
+
}); const _ao34 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16481
17020
|
const value = input[key];
|
|
16482
17021
|
if (undefined === value)
|
|
16483
17022
|
return true;
|
|
@@ -16486,13 +17025,13 @@ function _assertDomainRecord(domain, input) {
|
|
|
16486
17025
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16487
17026
|
expected: "KeymapSetting",
|
|
16488
17027
|
value: value
|
|
16489
|
-
}, _errorFactory)) &&
|
|
17028
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16490
17029
|
method: "typia.assert",
|
|
16491
17030
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16492
17031
|
expected: "KeymapSetting",
|
|
16493
17032
|
value: value
|
|
16494
17033
|
}, _errorFactory);
|
|
16495
|
-
}); const
|
|
17034
|
+
}); const _ao35 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16496
17035
|
const value = input[key];
|
|
16497
17036
|
if (undefined === value)
|
|
16498
17037
|
return true;
|
|
@@ -16501,13 +17040,13 @@ function _assertDomainRecord(domain, input) {
|
|
|
16501
17040
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16502
17041
|
expected: "KeymapSetting",
|
|
16503
17042
|
value: value
|
|
16504
|
-
}, _errorFactory)) &&
|
|
17043
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16505
17044
|
method: "typia.assert",
|
|
16506
17045
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16507
17046
|
expected: "KeymapSetting",
|
|
16508
17047
|
value: value
|
|
16509
17048
|
}, _errorFactory);
|
|
16510
|
-
}); const
|
|
17049
|
+
}); const _ao36 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16511
17050
|
const value = input[key];
|
|
16512
17051
|
if (undefined === value)
|
|
16513
17052
|
return true;
|
|
@@ -16516,13 +17055,13 @@ function _assertDomainRecord(domain, input) {
|
|
|
16516
17055
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16517
17056
|
expected: "KeymapSetting",
|
|
16518
17057
|
value: value
|
|
16519
|
-
}, _errorFactory)) &&
|
|
17058
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16520
17059
|
method: "typia.assert",
|
|
16521
17060
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16522
17061
|
expected: "KeymapSetting",
|
|
16523
17062
|
value: value
|
|
16524
17063
|
}, _errorFactory);
|
|
16525
|
-
}); const
|
|
17064
|
+
}); const _ao37 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16526
17065
|
const value = input[key];
|
|
16527
17066
|
if (undefined === value)
|
|
16528
17067
|
return true;
|
|
@@ -16531,13 +17070,13 @@ function _assertDomainRecord(domain, input) {
|
|
|
16531
17070
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16532
17071
|
expected: "KeymapSetting",
|
|
16533
17072
|
value: value
|
|
16534
|
-
}, _errorFactory)) &&
|
|
17073
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16535
17074
|
method: "typia.assert",
|
|
16536
17075
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16537
17076
|
expected: "KeymapSetting",
|
|
16538
17077
|
value: value
|
|
16539
17078
|
}, _errorFactory);
|
|
16540
|
-
}); const
|
|
17079
|
+
}); const _ao38 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16541
17080
|
const value = input[key];
|
|
16542
17081
|
if (undefined === value)
|
|
16543
17082
|
return true;
|
|
@@ -16546,13 +17085,13 @@ function _assertDomainRecord(domain, input) {
|
|
|
16546
17085
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16547
17086
|
expected: "KeymapSetting",
|
|
16548
17087
|
value: value
|
|
16549
|
-
}, _errorFactory)) &&
|
|
17088
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16550
17089
|
method: "typia.assert",
|
|
16551
17090
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16552
17091
|
expected: "KeymapSetting",
|
|
16553
17092
|
value: value
|
|
16554
17093
|
}, _errorFactory);
|
|
16555
|
-
}); const
|
|
17094
|
+
}); const _ao39 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16556
17095
|
const value = input[key];
|
|
16557
17096
|
if (undefined === value)
|
|
16558
17097
|
return true;
|
|
@@ -16561,13 +17100,13 @@ function _assertDomainRecord(domain, input) {
|
|
|
16561
17100
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16562
17101
|
expected: "KeymapSetting",
|
|
16563
17102
|
value: value
|
|
16564
|
-
}, _errorFactory)) &&
|
|
17103
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16565
17104
|
method: "typia.assert",
|
|
16566
17105
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16567
17106
|
expected: "KeymapSetting",
|
|
16568
17107
|
value: value
|
|
16569
17108
|
}, _errorFactory);
|
|
16570
|
-
}); const
|
|
17109
|
+
}); const _ao40 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16571
17110
|
const value = input[key];
|
|
16572
17111
|
if (undefined === value)
|
|
16573
17112
|
return true;
|
|
@@ -16576,13 +17115,13 @@ function _assertDomainRecord(domain, input) {
|
|
|
16576
17115
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16577
17116
|
expected: "KeymapSetting",
|
|
16578
17117
|
value: value
|
|
16579
|
-
}, _errorFactory)) &&
|
|
17118
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16580
17119
|
method: "typia.assert",
|
|
16581
17120
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16582
17121
|
expected: "KeymapSetting",
|
|
16583
17122
|
value: value
|
|
16584
17123
|
}, _errorFactory);
|
|
16585
|
-
}); const
|
|
17124
|
+
}); const _ao41 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16586
17125
|
const value = input[key];
|
|
16587
17126
|
if (undefined === value)
|
|
16588
17127
|
return true;
|
|
@@ -16591,13 +17130,13 @@ function _assertDomainRecord(domain, input) {
|
|
|
16591
17130
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16592
17131
|
expected: "KeymapSetting",
|
|
16593
17132
|
value: value
|
|
16594
|
-
}, _errorFactory)) &&
|
|
17133
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16595
17134
|
method: "typia.assert",
|
|
16596
17135
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16597
17136
|
expected: "KeymapSetting",
|
|
16598
17137
|
value: value
|
|
16599
17138
|
}, _errorFactory);
|
|
16600
|
-
}); const
|
|
17139
|
+
}); const _ao42 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16601
17140
|
const value = input[key];
|
|
16602
17141
|
if (undefined === value)
|
|
16603
17142
|
return true;
|
|
@@ -16606,13 +17145,13 @@ function _assertDomainRecord(domain, input) {
|
|
|
16606
17145
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16607
17146
|
expected: "KeymapSetting",
|
|
16608
17147
|
value: value
|
|
16609
|
-
}, _errorFactory)) &&
|
|
17148
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16610
17149
|
method: "typia.assert",
|
|
16611
17150
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16612
17151
|
expected: "KeymapSetting",
|
|
16613
17152
|
value: value
|
|
16614
17153
|
}, _errorFactory);
|
|
16615
|
-
}); const
|
|
17154
|
+
}); const _ao43 = (input, _path, _exceptionable = true) => (undefined === input.defaultFrameRate || "number" === typeof input.defaultFrameRate || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16616
17155
|
method: "typia.assert",
|
|
16617
17156
|
path: _path + ".defaultFrameRate",
|
|
16618
17157
|
expected: "(number | undefined)",
|
|
@@ -16625,12 +17164,12 @@ function _assertDomainRecord(domain, input) {
|
|
|
16625
17164
|
}, _errorFactory)) && (undefined === input.guide || ("object" === typeof input.guide && null !== input.guide && false === Array.isArray(input.guide) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16626
17165
|
method: "typia.assert",
|
|
16627
17166
|
path: _path + ".guide",
|
|
16628
|
-
expected: "(__type.
|
|
17167
|
+
expected: "(__type.o37 | undefined)",
|
|
16629
17168
|
value: input.guide
|
|
16630
|
-
}, _errorFactory)) &&
|
|
17169
|
+
}, _errorFactory)) && _ao44(input.guide, _path + ".guide", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16631
17170
|
method: "typia.assert",
|
|
16632
17171
|
path: _path + ".guide",
|
|
16633
|
-
expected: "(__type.
|
|
17172
|
+
expected: "(__type.o37 | undefined)",
|
|
16634
17173
|
value: input.guide
|
|
16635
17174
|
}, _errorFactory)) && (undefined === input.stepManyFrames || "number" === typeof input.stepManyFrames || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16636
17175
|
method: "typia.assert",
|
|
@@ -16650,12 +17189,12 @@ function _assertDomainRecord(domain, input) {
|
|
|
16650
17189
|
}, _errorFactory)) && (undefined === input.tile || ("object" === typeof input.tile && null !== input.tile && false === Array.isArray(input.tile) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16651
17190
|
method: "typia.assert",
|
|
16652
17191
|
path: _path + ".tile",
|
|
16653
|
-
expected: "(__type.
|
|
17192
|
+
expected: "(__type.o38 | undefined)",
|
|
16654
17193
|
value: input.tile
|
|
16655
|
-
}, _errorFactory)) &&
|
|
17194
|
+
}, _errorFactory)) && _ao45(input.tile, _path + ".tile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16656
17195
|
method: "typia.assert",
|
|
16657
17196
|
path: _path + ".tile",
|
|
16658
|
-
expected: "(__type.
|
|
17197
|
+
expected: "(__type.o38 | undefined)",
|
|
16659
17198
|
value: input.tile
|
|
16660
17199
|
}, _errorFactory)) && (undefined === input.timecodeReference || "string" === typeof input.timecodeReference || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16661
17200
|
method: "typia.assert",
|
|
@@ -16687,9 +17226,9 @@ function _assertDomainRecord(domain, input) {
|
|
|
16687
17226
|
path: _path + ".playbackRates",
|
|
16688
17227
|
expected: "(Array<number> | undefined)",
|
|
16689
17228
|
value: input.playbackRates
|
|
16690
|
-
}, _errorFactory)) && input.playbackRates.every((elem,
|
|
17229
|
+
}, _errorFactory)) && input.playbackRates.every((elem, _index49) => "number" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16691
17230
|
method: "typia.assert",
|
|
16692
|
-
path: _path + ".playbackRates[" +
|
|
17231
|
+
path: _path + ".playbackRates[" + _index49 + "]",
|
|
16693
17232
|
expected: "number",
|
|
16694
17233
|
value: elem
|
|
16695
17234
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16700,12 +17239,12 @@ function _assertDomainRecord(domain, input) {
|
|
|
16700
17239
|
}, _errorFactory)) && (undefined === input.subtitles || ("object" === typeof input.subtitles && null !== input.subtitles && false === Array.isArray(input.subtitles) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16701
17240
|
method: "typia.assert",
|
|
16702
17241
|
path: _path + ".subtitles",
|
|
16703
|
-
expected: "(__type.
|
|
17242
|
+
expected: "(__type.o39 | undefined)",
|
|
16704
17243
|
value: input.subtitles
|
|
16705
|
-
}, _errorFactory)) &&
|
|
17244
|
+
}, _errorFactory)) && _ao46(input.subtitles, _path + ".subtitles", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16706
17245
|
method: "typia.assert",
|
|
16707
17246
|
path: _path + ".subtitles",
|
|
16708
|
-
expected: "(__type.
|
|
17247
|
+
expected: "(__type.o39 | undefined)",
|
|
16709
17248
|
value: input.subtitles
|
|
16710
17249
|
}, _errorFactory)) && (undefined === input.subtitleTemplateId || "string" === typeof input.subtitleTemplateId || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16711
17250
|
method: "typia.assert",
|
|
@@ -16722,15 +17261,15 @@ function _assertDomainRecord(domain, input) {
|
|
|
16722
17261
|
path: _path + ".guides",
|
|
16723
17262
|
expected: "(Array<__type>.o2 | undefined)",
|
|
16724
17263
|
value: input.guides
|
|
16725
|
-
}, _errorFactory)) && input.guides.every((elem,
|
|
17264
|
+
}, _errorFactory)) && input.guides.every((elem, _index50) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16726
17265
|
method: "typia.assert",
|
|
16727
|
-
path: _path + ".guides[" +
|
|
16728
|
-
expected: "__type.
|
|
17266
|
+
path: _path + ".guides[" + _index50 + "]",
|
|
17267
|
+
expected: "__type.o42",
|
|
16729
17268
|
value: elem
|
|
16730
|
-
}, _errorFactory)) &&
|
|
17269
|
+
}, _errorFactory)) && _ao49(elem, _path + ".guides[" + _index50 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16731
17270
|
method: "typia.assert",
|
|
16732
|
-
path: _path + ".guides[" +
|
|
16733
|
-
expected: "__type.
|
|
17271
|
+
path: _path + ".guides[" + _index50 + "]",
|
|
17272
|
+
expected: "__type.o42",
|
|
16734
17273
|
value: elem
|
|
16735
17274
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16736
17275
|
method: "typia.assert",
|
|
@@ -16745,39 +17284,39 @@ function _assertDomainRecord(domain, input) {
|
|
|
16745
17284
|
}, _errorFactory)) && (undefined === input.editMode || ("object" === typeof input.editMode && null !== input.editMode && false === Array.isArray(input.editMode) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16746
17285
|
method: "typia.assert",
|
|
16747
17286
|
path: _path + ".editMode",
|
|
16748
|
-
expected: "(__type.
|
|
17287
|
+
expected: "(__type.o43 | undefined)",
|
|
16749
17288
|
value: input.editMode
|
|
16750
|
-
}, _errorFactory)) &&
|
|
17289
|
+
}, _errorFactory)) && _ao50(input.editMode, _path + ".editMode", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16751
17290
|
method: "typia.assert",
|
|
16752
17291
|
path: _path + ".editMode",
|
|
16753
|
-
expected: "(__type.
|
|
17292
|
+
expected: "(__type.o43 | undefined)",
|
|
16754
17293
|
value: input.editMode
|
|
16755
17294
|
}, _errorFactory)) && (undefined === input.transcribe || ("object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16756
17295
|
method: "typia.assert",
|
|
16757
17296
|
path: _path + ".transcribe",
|
|
16758
|
-
expected: "(__type.
|
|
17297
|
+
expected: "(__type.o44 | undefined)",
|
|
16759
17298
|
value: input.transcribe
|
|
16760
|
-
}, _errorFactory)) &&
|
|
17299
|
+
}, _errorFactory)) && _ao51(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16761
17300
|
method: "typia.assert",
|
|
16762
17301
|
path: _path + ".transcribe",
|
|
16763
|
-
expected: "(__type.
|
|
17302
|
+
expected: "(__type.o44 | undefined)",
|
|
16764
17303
|
value: input.transcribe
|
|
16765
17304
|
}, _errorFactory)) && ((null !== input.openCommand || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16766
17305
|
method: "typia.assert",
|
|
16767
17306
|
path: _path + ".openCommand",
|
|
16768
|
-
expected: "(__type.
|
|
17307
|
+
expected: "(__type.o48 | string | undefined)",
|
|
16769
17308
|
value: input.openCommand
|
|
16770
17309
|
}, _errorFactory)) && (undefined === input.openCommand || "string" === typeof input.openCommand || ("object" === typeof input.openCommand && null !== input.openCommand && false === Array.isArray(input.openCommand) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16771
17310
|
method: "typia.assert",
|
|
16772
17311
|
path: _path + ".openCommand",
|
|
16773
|
-
expected: "(__type.
|
|
17312
|
+
expected: "(__type.o48 | string | undefined)",
|
|
16774
17313
|
value: input.openCommand
|
|
16775
|
-
}, _errorFactory)) &&
|
|
17314
|
+
}, _errorFactory)) && _ao55(input.openCommand, _path + ".openCommand", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16776
17315
|
method: "typia.assert",
|
|
16777
17316
|
path: _path + ".openCommand",
|
|
16778
|
-
expected: "(__type.
|
|
17317
|
+
expected: "(__type.o48 | string | undefined)",
|
|
16779
17318
|
value: input.openCommand
|
|
16780
|
-
}, _errorFactory))); const
|
|
17319
|
+
}, _errorFactory))); const _ao44 = (input, _path, _exceptionable = true) => (undefined === input.mask || "boolean" === typeof input.mask || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16781
17320
|
method: "typia.assert",
|
|
16782
17321
|
path: _path + ".mask",
|
|
16783
17322
|
expected: "(boolean | undefined)",
|
|
@@ -16792,7 +17331,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16792
17331
|
path: _path + ".titleSafe",
|
|
16793
17332
|
expected: "(boolean | undefined)",
|
|
16794
17333
|
value: input.titleSafe
|
|
16795
|
-
}, _errorFactory)); const
|
|
17334
|
+
}, _errorFactory)); const _ao45 = (input, _path, _exceptionable = true) => (undefined === input.preview || "disabled" === input.preview || "play" === input.preview || "seek" === input.preview || "seekplay" === input.preview || "boolean" === typeof input.preview || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16796
17335
|
method: "typia.assert",
|
|
16797
17336
|
path: _path + ".preview",
|
|
16798
17337
|
expected: "(\"disabled\" | \"play\" | \"seek\" | \"seekplay\" | boolean | undefined)",
|
|
@@ -16802,7 +17341,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16802
17341
|
path: _path + ".showRenderProgress",
|
|
16803
17342
|
expected: "(boolean | undefined)",
|
|
16804
17343
|
value: input.showRenderProgress
|
|
16805
|
-
}, _errorFactory)); const
|
|
17344
|
+
}, _errorFactory)); const _ao46 = (input, _path, _exceptionable = true) => (undefined === input.spacing || "number" === typeof input.spacing || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16806
17345
|
method: "typia.assert",
|
|
16807
17346
|
path: _path + ".spacing",
|
|
16808
17347
|
expected: "(number | undefined)",
|
|
@@ -16817,15 +17356,15 @@ function _assertDomainRecord(domain, input) {
|
|
|
16817
17356
|
path: _path + ".suggestions",
|
|
16818
17357
|
expected: "(Array<__type> | undefined)",
|
|
16819
17358
|
value: input.suggestions
|
|
16820
|
-
}, _errorFactory)) && input.suggestions.every((elem,
|
|
17359
|
+
}, _errorFactory)) && input.suggestions.every((elem, _index51) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16821
17360
|
method: "typia.assert",
|
|
16822
|
-
path: _path + ".suggestions[" +
|
|
16823
|
-
expected: "__type.
|
|
17361
|
+
path: _path + ".suggestions[" + _index51 + "]",
|
|
17362
|
+
expected: "__type.o40",
|
|
16824
17363
|
value: elem
|
|
16825
|
-
}, _errorFactory)) &&
|
|
17364
|
+
}, _errorFactory)) && _ao47(elem, _path + ".suggestions[" + _index51 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16826
17365
|
method: "typia.assert",
|
|
16827
|
-
path: _path + ".suggestions[" +
|
|
16828
|
-
expected: "__type.
|
|
17366
|
+
path: _path + ".suggestions[" + _index51 + "]",
|
|
17367
|
+
expected: "__type.o40",
|
|
16829
17368
|
value: elem
|
|
16830
17369
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16831
17370
|
method: "typia.assert",
|
|
@@ -16837,15 +17376,15 @@ function _assertDomainRecord(domain, input) {
|
|
|
16837
17376
|
path: _path + ".colors",
|
|
16838
17377
|
expected: "(Array<__type>.o1 | undefined)",
|
|
16839
17378
|
value: input.colors
|
|
16840
|
-
}, _errorFactory)) && input.colors.every((elem,
|
|
17379
|
+
}, _errorFactory)) && input.colors.every((elem, _index52) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16841
17380
|
method: "typia.assert",
|
|
16842
|
-
path: _path + ".colors[" +
|
|
16843
|
-
expected: "__type.
|
|
17381
|
+
path: _path + ".colors[" + _index52 + "]",
|
|
17382
|
+
expected: "__type.o41",
|
|
16844
17383
|
value: elem
|
|
16845
|
-
}, _errorFactory)) &&
|
|
17384
|
+
}, _errorFactory)) && _ao48(elem, _path + ".colors[" + _index52 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16846
17385
|
method: "typia.assert",
|
|
16847
|
-
path: _path + ".colors[" +
|
|
16848
|
-
expected: "__type.
|
|
17386
|
+
path: _path + ".colors[" + _index52 + "]",
|
|
17387
|
+
expected: "__type.o41",
|
|
16849
17388
|
value: elem
|
|
16850
17389
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16851
17390
|
method: "typia.assert",
|
|
@@ -16857,9 +17396,9 @@ function _assertDomainRecord(domain, input) {
|
|
|
16857
17396
|
path: _path + ".overridableProperties",
|
|
16858
17397
|
expected: "(Array<keyof SubtitleStyle | null> | undefined)",
|
|
16859
17398
|
value: input.overridableProperties
|
|
16860
|
-
}, _errorFactory)) && input.overridableProperties.every((elem,
|
|
17399
|
+
}, _errorFactory)) && input.overridableProperties.every((elem, _index53) => null === elem || true === _av54.has(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16861
17400
|
method: "typia.assert",
|
|
16862
|
-
path: _path + ".overridableProperties[" +
|
|
17401
|
+
path: _path + ".overridableProperties[" + _index53 + "]",
|
|
16863
17402
|
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)",
|
|
16864
17403
|
value: elem
|
|
16865
17404
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16867,7 +17406,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16867
17406
|
path: _path + ".overridableProperties",
|
|
16868
17407
|
expected: "(Array<keyof SubtitleStyle | null> | undefined)",
|
|
16869
17408
|
value: input.overridableProperties
|
|
16870
|
-
}, _errorFactory)); const
|
|
17409
|
+
}, _errorFactory)); const _ao47 = (input, _path, _exceptionable = true) => (null === input.ifAspectRatio || undefined === input.ifAspectRatio || "string" === typeof input.ifAspectRatio || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16871
17410
|
method: "typia.assert",
|
|
16872
17411
|
path: _path + ".ifAspectRatio",
|
|
16873
17412
|
expected: "(null | string | undefined)",
|
|
@@ -16887,7 +17426,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16887
17426
|
path: _path + ".thenMaxCharactersPerLine",
|
|
16888
17427
|
expected: "(null | number | undefined)",
|
|
16889
17428
|
value: input.thenMaxCharactersPerLine
|
|
16890
|
-
}, _errorFactory)); const
|
|
17429
|
+
}, _errorFactory)); const _ao48 = (input, _path, _exceptionable = true) => (null === input.label || undefined === input.label || "string" === typeof input.label || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16891
17430
|
method: "typia.assert",
|
|
16892
17431
|
path: _path + ".label",
|
|
16893
17432
|
expected: "(null | string | undefined)",
|
|
@@ -16897,7 +17436,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16897
17436
|
path: _path + ".color",
|
|
16898
17437
|
expected: "(null | string | undefined)",
|
|
16899
17438
|
value: input.color
|
|
16900
|
-
}, _errorFactory)); const
|
|
17439
|
+
}, _errorFactory)); const _ao49 = (input, _path, _exceptionable = true) => (undefined === input.label || "string" === typeof input.label || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16901
17440
|
method: "typia.assert",
|
|
16902
17441
|
path: _path + ".label",
|
|
16903
17442
|
expected: "(string | undefined)",
|
|
@@ -16907,7 +17446,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16907
17446
|
path: _path + ".aspectRatio",
|
|
16908
17447
|
expected: "(string | undefined)",
|
|
16909
17448
|
value: input.aspectRatio
|
|
16910
|
-
}, _errorFactory)); const
|
|
17449
|
+
}, _errorFactory)); const _ao50 = (input, _path, _exceptionable = true) => (undefined === input.enabled || "boolean" === typeof input.enabled || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16911
17450
|
method: "typia.assert",
|
|
16912
17451
|
path: _path + ".enabled",
|
|
16913
17452
|
expected: "(boolean | undefined)",
|
|
@@ -16922,17 +17461,17 @@ function _assertDomainRecord(domain, input) {
|
|
|
16922
17461
|
path: _path + ".defaultExitOption",
|
|
16923
17462
|
expected: "(\"leave\" | \"none\" | \"update\" | undefined)",
|
|
16924
17463
|
value: input.defaultExitOption
|
|
16925
|
-
}, _errorFactory)); const
|
|
17464
|
+
}, _errorFactory)); const _ao51 = (input, _path, _exceptionable = true) => undefined === input.subtitleDisclaimer || ("object" === typeof input.subtitleDisclaimer && null !== input.subtitleDisclaimer && false === Array.isArray(input.subtitleDisclaimer) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16926
17465
|
method: "typia.assert",
|
|
16927
17466
|
path: _path + ".subtitleDisclaimer",
|
|
16928
|
-
expected: "(__type.
|
|
17467
|
+
expected: "(__type.o45 | undefined)",
|
|
16929
17468
|
value: input.subtitleDisclaimer
|
|
16930
|
-
}, _errorFactory)) &&
|
|
17469
|
+
}, _errorFactory)) && _ao52(input.subtitleDisclaimer, _path + ".subtitleDisclaimer", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16931
17470
|
method: "typia.assert",
|
|
16932
17471
|
path: _path + ".subtitleDisclaimer",
|
|
16933
|
-
expected: "(__type.
|
|
17472
|
+
expected: "(__type.o45 | undefined)",
|
|
16934
17473
|
value: input.subtitleDisclaimer
|
|
16935
|
-
}, _errorFactory); const
|
|
17474
|
+
}, _errorFactory); const _ao52 = (input, _path, _exceptionable = true) => (undefined === input.isUserConfigurable || "boolean" === typeof input.isUserConfigurable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16936
17475
|
method: "typia.assert",
|
|
16937
17476
|
path: _path + ".isUserConfigurable",
|
|
16938
17477
|
expected: "(boolean | undefined)",
|
|
@@ -16940,14 +17479,14 @@ function _assertDomainRecord(domain, input) {
|
|
|
16940
17479
|
}, _errorFactory)) && (undefined === input.defaultValue || ("object" === typeof input.defaultValue && null !== input.defaultValue && false === Array.isArray(input.defaultValue) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16941
17480
|
method: "typia.assert",
|
|
16942
17481
|
path: _path + ".defaultValue",
|
|
16943
|
-
expected: "(__type.
|
|
17482
|
+
expected: "(__type.o46 | undefined)",
|
|
16944
17483
|
value: input.defaultValue
|
|
16945
|
-
}, _errorFactory)) &&
|
|
17484
|
+
}, _errorFactory)) && _ao53(input.defaultValue, _path + ".defaultValue", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16946
17485
|
method: "typia.assert",
|
|
16947
17486
|
path: _path + ".defaultValue",
|
|
16948
|
-
expected: "(__type.
|
|
17487
|
+
expected: "(__type.o46 | undefined)",
|
|
16949
17488
|
value: input.defaultValue
|
|
16950
|
-
}, _errorFactory)); const
|
|
17489
|
+
}, _errorFactory)); const _ao53 = (input, _path, _exceptionable = true) => (undefined === input.enabled || false === input.enabled || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16951
17490
|
method: "typia.assert",
|
|
16952
17491
|
path: _path + ".enabled",
|
|
16953
17492
|
expected: "(false | undefined)",
|
|
@@ -16957,15 +17496,15 @@ function _assertDomainRecord(domain, input) {
|
|
|
16957
17496
|
path: _path + ".text",
|
|
16958
17497
|
expected: "(Array<__type>.o3 | undefined)",
|
|
16959
17498
|
value: input.text
|
|
16960
|
-
}, _errorFactory)) && input.text.every((elem,
|
|
17499
|
+
}, _errorFactory)) && input.text.every((elem, _index55) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16961
17500
|
method: "typia.assert",
|
|
16962
|
-
path: _path + ".text[" +
|
|
16963
|
-
expected: "__type.
|
|
17501
|
+
path: _path + ".text[" + _index55 + "]",
|
|
17502
|
+
expected: "__type.o47",
|
|
16964
17503
|
value: elem
|
|
16965
|
-
}, _errorFactory)) &&
|
|
17504
|
+
}, _errorFactory)) && _ao54(elem, _path + ".text[" + _index55 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16966
17505
|
method: "typia.assert",
|
|
16967
|
-
path: _path + ".text[" +
|
|
16968
|
-
expected: "__type.
|
|
17506
|
+
path: _path + ".text[" + _index55 + "]",
|
|
17507
|
+
expected: "__type.o47",
|
|
16969
17508
|
value: elem
|
|
16970
17509
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16971
17510
|
method: "typia.assert",
|
|
@@ -16982,7 +17521,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16982
17521
|
path: _path + ".duration",
|
|
16983
17522
|
expected: "(number | undefined)",
|
|
16984
17523
|
value: input.duration
|
|
16985
|
-
}, _errorFactory)); const
|
|
17524
|
+
}, _errorFactory)); const _ao54 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16986
17525
|
method: "typia.assert",
|
|
16987
17526
|
path: _path + ".language",
|
|
16988
17527
|
expected: "(string | undefined)",
|
|
@@ -16992,7 +17531,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
16992
17531
|
path: _path + ".value",
|
|
16993
17532
|
expected: "(string | undefined)",
|
|
16994
17533
|
value: input.value
|
|
16995
|
-
}, _errorFactory)); const
|
|
17534
|
+
}, _errorFactory)); const _ao55 = (input, _path, _exceptionable = true) => (undefined === input.url || "string" === typeof input.url || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16996
17535
|
method: "typia.assert",
|
|
16997
17536
|
path: _path + ".url",
|
|
16998
17537
|
expected: "(string | undefined)",
|
|
@@ -17012,9 +17551,9 @@ function _assertDomainRecord(domain, input) {
|
|
|
17012
17551
|
path: _path + ".args",
|
|
17013
17552
|
expected: "(Array<string> | undefined)",
|
|
17014
17553
|
value: input.args
|
|
17015
|
-
}, _errorFactory)) && input.args.every((elem,
|
|
17554
|
+
}, _errorFactory)) && input.args.every((elem, _index56) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17016
17555
|
method: "typia.assert",
|
|
17017
|
-
path: _path + ".args[" +
|
|
17556
|
+
path: _path + ".args[" + _index56 + "]",
|
|
17018
17557
|
expected: "string",
|
|
17019
17558
|
value: elem
|
|
17020
17559
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17022,7 +17561,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17022
17561
|
path: _path + ".args",
|
|
17023
17562
|
expected: "(Array<string> | undefined)",
|
|
17024
17563
|
value: input.args
|
|
17025
|
-
}, _errorFactory)); const
|
|
17564
|
+
}, _errorFactory)); const _ao56 = (input, _path, _exceptionable = true) => (undefined === input.thumbnailView || "none" === input.thumbnailView || "filmStrip" === input.thumbnailView || "thumbnail" === input.thumbnailView || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17026
17565
|
method: "typia.assert",
|
|
17027
17566
|
path: _path + ".thumbnailView",
|
|
17028
17567
|
expected: "(\"filmStrip\" | \"none\" | \"thumbnail\" | undefined)",
|
|
@@ -17030,14 +17569,14 @@ function _assertDomainRecord(domain, input) {
|
|
|
17030
17569
|
}, _errorFactory)) && (undefined === input.voiceOver || ("object" === typeof input.voiceOver && null !== input.voiceOver && false === Array.isArray(input.voiceOver) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17031
17570
|
method: "typia.assert",
|
|
17032
17571
|
path: _path + ".voiceOver",
|
|
17033
|
-
expected: "(__type.
|
|
17572
|
+
expected: "(__type.o50 | undefined)",
|
|
17034
17573
|
value: input.voiceOver
|
|
17035
|
-
}, _errorFactory)) &&
|
|
17574
|
+
}, _errorFactory)) && _ao57(input.voiceOver, _path + ".voiceOver", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17036
17575
|
method: "typia.assert",
|
|
17037
17576
|
path: _path + ".voiceOver",
|
|
17038
|
-
expected: "(__type.
|
|
17577
|
+
expected: "(__type.o50 | undefined)",
|
|
17039
17578
|
value: input.voiceOver
|
|
17040
|
-
}, _errorFactory)); const
|
|
17579
|
+
}, _errorFactory)); const _ao57 = (input, _path, _exceptionable = true) => (undefined === input.inputDevice || "string" === typeof input.inputDevice || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17041
17580
|
method: "typia.assert",
|
|
17042
17581
|
path: _path + ".inputDevice",
|
|
17043
17582
|
expected: "(string | undefined)",
|
|
@@ -17062,7 +17601,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17062
17601
|
path: _path + ".preRollDuration",
|
|
17063
17602
|
expected: "(number | undefined)",
|
|
17064
17603
|
value: input.preRollDuration
|
|
17065
|
-
}, _errorFactory)); const
|
|
17604
|
+
}, _errorFactory)); const _ao58 = (input, _path, _exceptionable = true) => (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17066
17605
|
method: "typia.assert",
|
|
17067
17606
|
path: _path + ".title",
|
|
17068
17607
|
expected: "(string | undefined)",
|
|
@@ -17077,9 +17616,9 @@ function _assertDomainRecord(domain, input) {
|
|
|
17077
17616
|
path: _path + ".args",
|
|
17078
17617
|
expected: "(Array<string> | undefined)",
|
|
17079
17618
|
value: input.args
|
|
17080
|
-
}, _errorFactory)) && input.args.every((elem,
|
|
17619
|
+
}, _errorFactory)) && input.args.every((elem, _index57) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17081
17620
|
method: "typia.assert",
|
|
17082
|
-
path: _path + ".args[" +
|
|
17621
|
+
path: _path + ".args[" + _index57 + "]",
|
|
17083
17622
|
expected: "string",
|
|
17084
17623
|
value: elem
|
|
17085
17624
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17087,82 +17626,82 @@ function _assertDomainRecord(domain, input) {
|
|
|
17087
17626
|
path: _path + ".args",
|
|
17088
17627
|
expected: "(Array<string> | undefined)",
|
|
17089
17628
|
value: input.args
|
|
17090
|
-
}, _errorFactory)); const
|
|
17629
|
+
}, _errorFactory)); const _ao59 = (input, _path, _exceptionable = true) => (undefined === input.folded || ("object" === typeof input.folded && null !== input.folded && false === Array.isArray(input.folded) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17091
17630
|
method: "typia.assert",
|
|
17092
17631
|
path: _path + ".folded",
|
|
17093
|
-
expected: "(__type.
|
|
17632
|
+
expected: "(__type.o53 | undefined)",
|
|
17094
17633
|
value: input.folded
|
|
17095
|
-
}, _errorFactory)) &&
|
|
17634
|
+
}, _errorFactory)) && _ao60(input.folded, _path + ".folded", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17096
17635
|
method: "typia.assert",
|
|
17097
17636
|
path: _path + ".folded",
|
|
17098
|
-
expected: "(__type.
|
|
17637
|
+
expected: "(__type.o53 | undefined)",
|
|
17099
17638
|
value: input.folded
|
|
17100
17639
|
}, _errorFactory)) && (undefined === input.assets || ("object" === typeof input.assets && null !== input.assets && false === Array.isArray(input.assets) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17101
17640
|
method: "typia.assert",
|
|
17102
17641
|
path: _path + ".assets",
|
|
17103
|
-
expected: "(__type.
|
|
17642
|
+
expected: "(__type.o54 | undefined)",
|
|
17104
17643
|
value: input.assets
|
|
17105
|
-
}, _errorFactory)) &&
|
|
17644
|
+
}, _errorFactory)) && _ao61(input.assets, _path + ".assets", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17106
17645
|
method: "typia.assert",
|
|
17107
17646
|
path: _path + ".assets",
|
|
17108
|
-
expected: "(__type.
|
|
17647
|
+
expected: "(__type.o54 | undefined)",
|
|
17109
17648
|
value: input.assets
|
|
17110
17649
|
}, _errorFactory)) && (undefined === input.pipeline || ("object" === typeof input.pipeline && null !== input.pipeline && false === Array.isArray(input.pipeline) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17111
17650
|
method: "typia.assert",
|
|
17112
17651
|
path: _path + ".pipeline",
|
|
17113
|
-
expected: "(__type.
|
|
17652
|
+
expected: "(__type.o58 | undefined)",
|
|
17114
17653
|
value: input.pipeline
|
|
17115
|
-
}, _errorFactory)) &&
|
|
17654
|
+
}, _errorFactory)) && _ao65(input.pipeline, _path + ".pipeline", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17116
17655
|
method: "typia.assert",
|
|
17117
17656
|
path: _path + ".pipeline",
|
|
17118
|
-
expected: "(__type.
|
|
17657
|
+
expected: "(__type.o58 | undefined)",
|
|
17119
17658
|
value: input.pipeline
|
|
17120
17659
|
}, _errorFactory)) && (undefined === input.item || ("object" === typeof input.item && null !== input.item && false === Array.isArray(input.item) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17121
17660
|
method: "typia.assert",
|
|
17122
17661
|
path: _path + ".item",
|
|
17123
|
-
expected: "(__type.
|
|
17662
|
+
expected: "(__type.o60 | undefined)",
|
|
17124
17663
|
value: input.item
|
|
17125
|
-
}, _errorFactory)) &&
|
|
17664
|
+
}, _errorFactory)) && _ao67(input.item, _path + ".item", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17126
17665
|
method: "typia.assert",
|
|
17127
17666
|
path: _path + ".item",
|
|
17128
|
-
expected: "(__type.
|
|
17667
|
+
expected: "(__type.o60 | undefined)",
|
|
17129
17668
|
value: input.item
|
|
17130
|
-
}, _errorFactory)); const
|
|
17669
|
+
}, _errorFactory)); const _ao60 = (input, _path, _exceptionable = true) => undefined === input.auto || "boolean" === typeof input.auto || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17131
17670
|
method: "typia.assert",
|
|
17132
17671
|
path: _path + ".auto",
|
|
17133
17672
|
expected: "(boolean | undefined)",
|
|
17134
17673
|
value: input.auto
|
|
17135
|
-
}, _errorFactory); const
|
|
17674
|
+
}, _errorFactory); const _ao61 = (input, _path, _exceptionable = true) => (undefined === input.story || ("object" === typeof input.story && null !== input.story && false === Array.isArray(input.story) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17136
17675
|
method: "typia.assert",
|
|
17137
17676
|
path: _path + ".story",
|
|
17138
|
-
expected: "(__type.
|
|
17677
|
+
expected: "(__type.o55 | undefined)",
|
|
17139
17678
|
value: input.story
|
|
17140
|
-
}, _errorFactory)) &&
|
|
17679
|
+
}, _errorFactory)) && _ao62(input.story, _path + ".story", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17141
17680
|
method: "typia.assert",
|
|
17142
17681
|
path: _path + ".story",
|
|
17143
|
-
expected: "(__type.
|
|
17682
|
+
expected: "(__type.o55 | undefined)",
|
|
17144
17683
|
value: input.story
|
|
17145
17684
|
}, _errorFactory)) && (undefined === input.note || ("object" === typeof input.note && null !== input.note && false === Array.isArray(input.note) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17146
17685
|
method: "typia.assert",
|
|
17147
17686
|
path: _path + ".note",
|
|
17148
|
-
expected: "(__type.
|
|
17687
|
+
expected: "(__type.o57 | undefined)",
|
|
17149
17688
|
value: input.note
|
|
17150
|
-
}, _errorFactory)) &&
|
|
17689
|
+
}, _errorFactory)) && _ao64(input.note, _path + ".note", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17151
17690
|
method: "typia.assert",
|
|
17152
17691
|
path: _path + ".note",
|
|
17153
|
-
expected: "(__type.
|
|
17692
|
+
expected: "(__type.o57 | undefined)",
|
|
17154
17693
|
value: input.note
|
|
17155
|
-
}, _errorFactory)); const
|
|
17694
|
+
}, _errorFactory)); const _ao62 = (input, _path, _exceptionable = true) => undefined === input.excerpt || ("object" === typeof input.excerpt && null !== input.excerpt && false === Array.isArray(input.excerpt) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17156
17695
|
method: "typia.assert",
|
|
17157
17696
|
path: _path + ".excerpt",
|
|
17158
|
-
expected: "(__type.
|
|
17697
|
+
expected: "(__type.o56 | undefined)",
|
|
17159
17698
|
value: input.excerpt
|
|
17160
|
-
}, _errorFactory)) &&
|
|
17699
|
+
}, _errorFactory)) && _ao63(input.excerpt, _path + ".excerpt", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17161
17700
|
method: "typia.assert",
|
|
17162
17701
|
path: _path + ".excerpt",
|
|
17163
|
-
expected: "(__type.
|
|
17702
|
+
expected: "(__type.o56 | undefined)",
|
|
17164
17703
|
value: input.excerpt
|
|
17165
|
-
}, _errorFactory); const
|
|
17704
|
+
}, _errorFactory); const _ao63 = (input, _path, _exceptionable = true) => (undefined === input.maxLines || "number" === typeof input.maxLines || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17166
17705
|
method: "typia.assert",
|
|
17167
17706
|
path: _path + ".maxLines",
|
|
17168
17707
|
expected: "(number | undefined)",
|
|
@@ -17177,44 +17716,49 @@ function _assertDomainRecord(domain, input) {
|
|
|
17177
17716
|
path: _path + ".comments",
|
|
17178
17717
|
expected: "(boolean | undefined)",
|
|
17179
17718
|
value: input.comments
|
|
17180
|
-
}, _errorFactory)); const
|
|
17719
|
+
}, _errorFactory)); const _ao64 = (input, _path, _exceptionable = true) => undefined === input.maxHeight || "number" === typeof input.maxHeight || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17181
17720
|
method: "typia.assert",
|
|
17182
17721
|
path: _path + ".maxHeight",
|
|
17183
17722
|
expected: "(number | undefined)",
|
|
17184
17723
|
value: input.maxHeight
|
|
17185
|
-
}, _errorFactory); const
|
|
17724
|
+
}, _errorFactory); const _ao65 = (input, _path, _exceptionable = true) => (undefined === input.search || ("object" === typeof input.search && null !== input.search && false === Array.isArray(input.search) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17186
17725
|
method: "typia.assert",
|
|
17187
17726
|
path: _path + ".search",
|
|
17188
|
-
expected: "(__type.
|
|
17727
|
+
expected: "(__type.o59 | undefined)",
|
|
17189
17728
|
value: input.search
|
|
17190
|
-
}, _errorFactory)) &&
|
|
17729
|
+
}, _errorFactory)) && _ao66(input.search, _path + ".search", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17191
17730
|
method: "typia.assert",
|
|
17192
17731
|
path: _path + ".search",
|
|
17193
|
-
expected: "(__type.
|
|
17732
|
+
expected: "(__type.o59 | undefined)",
|
|
17194
17733
|
value: input.search
|
|
17195
|
-
}, _errorFactory)) && (undefined === input.sortMode || true ===
|
|
17734
|
+
}, _errorFactory)) && (undefined === input.sortMode || true === _av58.has(input.sortMode) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17196
17735
|
method: "typia.assert",
|
|
17197
17736
|
path: _path + ".sortMode",
|
|
17198
17737
|
expected: "(\"az\" | \"default\" | \"earliestdeadline\" | \"latestdeadline\" | \"leastrecent\" | \"manual\" | \"mostrecent\" | \"newest\" | \"oldest\" | \"za\" | undefined)",
|
|
17199
17738
|
value: input.sortMode
|
|
17200
|
-
}, _errorFactory)); const
|
|
17739
|
+
}, _errorFactory)); const _ao66 = (input, _path, _exceptionable = true) => undefined === input.maxItemsDisplayed || "number" === typeof input.maxItemsDisplayed || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17201
17740
|
method: "typia.assert",
|
|
17202
17741
|
path: _path + ".maxItemsDisplayed",
|
|
17203
17742
|
expected: "(number | undefined)",
|
|
17204
17743
|
value: input.maxItemsDisplayed
|
|
17205
|
-
}, _errorFactory); const
|
|
17744
|
+
}, _errorFactory); const _ao67 = (input, _path, _exceptionable = true) => (undefined === input.maxHeight || "number" === typeof input.maxHeight || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17206
17745
|
method: "typia.assert",
|
|
17207
17746
|
path: _path + ".maxHeight",
|
|
17208
17747
|
expected: "(number | undefined)",
|
|
17209
17748
|
value: input.maxHeight
|
|
17210
|
-
}, _errorFactory)
|
|
17749
|
+
}, _errorFactory)) && (undefined === input.titleLines || "number" === typeof input.titleLines || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17750
|
+
method: "typia.assert",
|
|
17751
|
+
path: _path + ".titleLines",
|
|
17752
|
+
expected: "(number | undefined)",
|
|
17753
|
+
value: input.titleLines
|
|
17754
|
+
}, _errorFactory)); const _ao68 = (input, _path, _exceptionable = true) => undefined === input.fontFamilies || (Array.isArray(input.fontFamilies) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17211
17755
|
method: "typia.assert",
|
|
17212
17756
|
path: _path + ".fontFamilies",
|
|
17213
17757
|
expected: "(Array<string> | undefined)",
|
|
17214
17758
|
value: input.fontFamilies
|
|
17215
|
-
}, _errorFactory)) && input.fontFamilies.every((elem,
|
|
17759
|
+
}, _errorFactory)) && input.fontFamilies.every((elem, _index59) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17216
17760
|
method: "typia.assert",
|
|
17217
|
-
path: _path + ".fontFamilies[" +
|
|
17761
|
+
path: _path + ".fontFamilies[" + _index59 + "]",
|
|
17218
17762
|
expected: "string",
|
|
17219
17763
|
value: elem
|
|
17220
17764
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17222,7 +17766,7 @@ function _assertDomainRecord(domain, input) {
|
|
|
17222
17766
|
path: _path + ".fontFamilies",
|
|
17223
17767
|
expected: "(Array<string> | undefined)",
|
|
17224
17768
|
value: input.fontFamilies
|
|
17225
|
-
}, _errorFactory); const
|
|
17769
|
+
}, _errorFactory); const _ao69 = (input, _path, _exceptionable = true) => (undefined === input.id || "string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17226
17770
|
method: "typia.assert",
|
|
17227
17771
|
path: _path + ".id",
|
|
17228
17772
|
expected: "(string | undefined)",
|
|
@@ -17232,37 +17776,37 @@ function _assertDomainRecord(domain, input) {
|
|
|
17232
17776
|
path: _path + ".folded",
|
|
17233
17777
|
expected: "(boolean | undefined)",
|
|
17234
17778
|
value: input.folded
|
|
17235
|
-
}, _errorFactory)); const
|
|
17779
|
+
}, _errorFactory)); const _ao70 = (input, _path, _exceptionable = true) => (undefined === input.adobe || ("object" === typeof input.adobe && null !== input.adobe && false === Array.isArray(input.adobe) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17236
17780
|
method: "typia.assert",
|
|
17237
17781
|
path: _path + ".adobe",
|
|
17238
|
-
expected: "(__type.
|
|
17782
|
+
expected: "(__type.o64 | undefined)",
|
|
17239
17783
|
value: input.adobe
|
|
17240
|
-
}, _errorFactory)) &&
|
|
17784
|
+
}, _errorFactory)) && _ao71(input.adobe, _path + ".adobe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17241
17785
|
method: "typia.assert",
|
|
17242
17786
|
path: _path + ".adobe",
|
|
17243
|
-
expected: "(__type.
|
|
17787
|
+
expected: "(__type.o64 | undefined)",
|
|
17244
17788
|
value: input.adobe
|
|
17245
17789
|
}, _errorFactory)) && (undefined === input.rive || ("object" === typeof input.rive && null !== input.rive && false === Array.isArray(input.rive) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17246
17790
|
method: "typia.assert",
|
|
17247
17791
|
path: _path + ".rive",
|
|
17248
|
-
expected: "(__type.
|
|
17792
|
+
expected: "(__type.o65 | undefined)",
|
|
17249
17793
|
value: input.rive
|
|
17250
|
-
}, _errorFactory)) &&
|
|
17794
|
+
}, _errorFactory)) && _ao72(input.rive, _path + ".rive", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17251
17795
|
method: "typia.assert",
|
|
17252
17796
|
path: _path + ".rive",
|
|
17253
|
-
expected: "(__type.
|
|
17797
|
+
expected: "(__type.o65 | undefined)",
|
|
17254
17798
|
value: input.rive
|
|
17255
|
-
}, _errorFactory)); const
|
|
17799
|
+
}, _errorFactory)); const _ao71 = (input, _path, _exceptionable = true) => undefined === input.useProxies || "boolean" === typeof input.useProxies || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17256
17800
|
method: "typia.assert",
|
|
17257
17801
|
path: _path + ".useProxies",
|
|
17258
17802
|
expected: "(boolean | undefined)",
|
|
17259
17803
|
value: input.useProxies
|
|
17260
|
-
}, _errorFactory); const
|
|
17804
|
+
}, _errorFactory); const _ao72 = (input, _path, _exceptionable = true) => undefined === input.template || "string" === typeof input.template || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17261
17805
|
method: "typia.assert",
|
|
17262
17806
|
path: _path + ".template",
|
|
17263
17807
|
expected: "(string | undefined)",
|
|
17264
17808
|
value: input.template
|
|
17265
|
-
}, _errorFactory); const
|
|
17809
|
+
}, _errorFactory); const _ao73 = (input, _path, _exceptionable = true) => (undefined === input.collections || "boolean" === typeof input.collections || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17266
17810
|
method: "typia.assert",
|
|
17267
17811
|
path: _path + ".collections",
|
|
17268
17812
|
expected: "(boolean | undefined)",
|
|
@@ -17277,11 +17821,21 @@ function _assertDomainRecord(domain, input) {
|
|
|
17277
17821
|
path: _path + ".ameRemoteRendering",
|
|
17278
17822
|
expected: "(boolean | undefined)",
|
|
17279
17823
|
value: input.ameRemoteRendering
|
|
17280
|
-
}, _errorFactory)); const
|
|
17824
|
+
}, _errorFactory)); const _ao74 = (input, _path, _exceptionable = true) => (undefined === input.utils || "boolean" === typeof input.utils || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17281
17825
|
method: "typia.assert",
|
|
17282
17826
|
path: _path + ".utils",
|
|
17283
17827
|
expected: "(boolean | undefined)",
|
|
17284
17828
|
value: input.utils
|
|
17829
|
+
}, _errorFactory)) && (undefined === input.utilsAssetEditor || "boolean" === typeof input.utilsAssetEditor || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17830
|
+
method: "typia.assert",
|
|
17831
|
+
path: _path + ".utilsAssetEditor",
|
|
17832
|
+
expected: "(boolean | undefined)",
|
|
17833
|
+
value: input.utilsAssetEditor
|
|
17834
|
+
}, _errorFactory)) && (undefined === input.utilsAssetPanel || "boolean" === typeof input.utilsAssetPanel || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17835
|
+
method: "typia.assert",
|
|
17836
|
+
path: _path + ".utilsAssetPanel",
|
|
17837
|
+
expected: "(boolean | undefined)",
|
|
17838
|
+
value: input.utilsAssetPanel
|
|
17285
17839
|
}, _errorFactory)) && (undefined === input.history || "boolean" === typeof input.history || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17286
17840
|
method: "typia.assert",
|
|
17287
17841
|
path: _path + ".history",
|
|
@@ -17362,24 +17916,24 @@ function _assertDomainRecord(domain, input) {
|
|
|
17362
17916
|
path: _path + ".systemHealth",
|
|
17363
17917
|
expected: "(boolean | undefined)",
|
|
17364
17918
|
value: input.systemHealth
|
|
17365
|
-
}, _errorFactory)); const
|
|
17919
|
+
}, _errorFactory)); const _ao75 = (input, _path, _exceptionable = true) => undefined === input.events || ("object" === typeof input.events && null !== input.events && false === Array.isArray(input.events) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17366
17920
|
method: "typia.assert",
|
|
17367
17921
|
path: _path + ".events",
|
|
17368
|
-
expected: "(__type.
|
|
17922
|
+
expected: "(__type.o69 | undefined)",
|
|
17369
17923
|
value: input.events
|
|
17370
|
-
}, _errorFactory)) &&
|
|
17924
|
+
}, _errorFactory)) && _ao76(input.events, _path + ".events", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17371
17925
|
method: "typia.assert",
|
|
17372
17926
|
path: _path + ".events",
|
|
17373
|
-
expected: "(__type.
|
|
17927
|
+
expected: "(__type.o69 | undefined)",
|
|
17374
17928
|
value: input.events
|
|
17375
|
-
}, _errorFactory); const
|
|
17929
|
+
}, _errorFactory); const _ao76 = (input, _path, _exceptionable = true) => (undefined === input.comment || (Array.isArray(input.comment) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17376
17930
|
method: "typia.assert",
|
|
17377
17931
|
path: _path + ".comment",
|
|
17378
17932
|
expected: "(Array<NotificationReason> | undefined)",
|
|
17379
17933
|
value: input.comment
|
|
17380
|
-
}, _errorFactory)) && input.comment.every((elem,
|
|
17934
|
+
}, _errorFactory)) && input.comment.every((elem, _index60) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17381
17935
|
method: "typia.assert",
|
|
17382
|
-
path: _path + ".comment[" +
|
|
17936
|
+
path: _path + ".comment[" + _index60 + "]",
|
|
17383
17937
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
17384
17938
|
value: elem
|
|
17385
17939
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17392,9 +17946,9 @@ function _assertDomainRecord(domain, input) {
|
|
|
17392
17946
|
path: _path + ".assigned",
|
|
17393
17947
|
expected: "(Array<NotificationReason> | undefined)",
|
|
17394
17948
|
value: input.assigned
|
|
17395
|
-
}, _errorFactory)) && input.assigned.every((elem,
|
|
17949
|
+
}, _errorFactory)) && input.assigned.every((elem, _index61) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17396
17950
|
method: "typia.assert",
|
|
17397
|
-
path: _path + ".assigned[" +
|
|
17951
|
+
path: _path + ".assigned[" + _index61 + "]",
|
|
17398
17952
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
17399
17953
|
value: elem
|
|
17400
17954
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17407,9 +17961,9 @@ function _assertDomainRecord(domain, input) {
|
|
|
17407
17961
|
path: _path + ".unassigned",
|
|
17408
17962
|
expected: "(Array<NotificationReason> | undefined)",
|
|
17409
17963
|
value: input.unassigned
|
|
17410
|
-
}, _errorFactory)) && input.unassigned.every((elem,
|
|
17964
|
+
}, _errorFactory)) && input.unassigned.every((elem, _index62) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17411
17965
|
method: "typia.assert",
|
|
17412
|
-
path: _path + ".unassigned[" +
|
|
17966
|
+
path: _path + ".unassigned[" + _index62 + "]",
|
|
17413
17967
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
17414
17968
|
value: elem
|
|
17415
17969
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17420,14 +17974,14 @@ function _assertDomainRecord(domain, input) {
|
|
|
17420
17974
|
}, _errorFactory)) && (undefined === input.publishSucceeded || ("object" === typeof input.publishSucceeded && null !== input.publishSucceeded && false === Array.isArray(input.publishSucceeded) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17421
17975
|
method: "typia.assert",
|
|
17422
17976
|
path: _path + ".publishSucceeded",
|
|
17423
|
-
expected: "(__type.
|
|
17977
|
+
expected: "(__type.o70 | undefined)",
|
|
17424
17978
|
value: input.publishSucceeded
|
|
17425
|
-
}, _errorFactory)) &&
|
|
17979
|
+
}, _errorFactory)) && _ao77(input.publishSucceeded, _path + ".publishSucceeded", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17426
17980
|
method: "typia.assert",
|
|
17427
17981
|
path: _path + ".publishSucceeded",
|
|
17428
|
-
expected: "(__type.
|
|
17982
|
+
expected: "(__type.o70 | undefined)",
|
|
17429
17983
|
value: input.publishSucceeded
|
|
17430
|
-
}, _errorFactory)); const
|
|
17984
|
+
}, _errorFactory)); const _ao77 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
17431
17985
|
const value = input[key];
|
|
17432
17986
|
if (undefined === value)
|
|
17433
17987
|
return true;
|
|
@@ -17436,9 +17990,9 @@ function _assertDomainRecord(domain, input) {
|
|
|
17436
17990
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
17437
17991
|
expected: "Array<NotificationReason>",
|
|
17438
17992
|
value: value
|
|
17439
|
-
}, _errorFactory)) && value.every((elem,
|
|
17993
|
+
}, _errorFactory)) && value.every((elem, _index63) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17440
17994
|
method: "typia.assert",
|
|
17441
|
-
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key) + "[" +
|
|
17995
|
+
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key) + "[" + _index63 + "]",
|
|
17442
17996
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
17443
17997
|
value: elem
|
|
17444
17998
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17447,7 +18001,67 @@ function _assertDomainRecord(domain, input) {
|
|
|
17447
18001
|
expected: "Array<NotificationReason>",
|
|
17448
18002
|
value: value
|
|
17449
18003
|
}, _errorFactory);
|
|
17450
|
-
}); const
|
|
18004
|
+
}); const _ao78 = (input, _path, _exceptionable = true) => undefined === input.duplicate || ("object" === typeof input.duplicate && null !== input.duplicate && false === Array.isArray(input.duplicate) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18005
|
+
method: "typia.assert",
|
|
18006
|
+
path: _path + ".duplicate",
|
|
18007
|
+
expected: "(__type.o72 | undefined)",
|
|
18008
|
+
value: input.duplicate
|
|
18009
|
+
}, _errorFactory)) && _ao79(input.duplicate, _path + ".duplicate", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18010
|
+
method: "typia.assert",
|
|
18011
|
+
path: _path + ".duplicate",
|
|
18012
|
+
expected: "(__type.o72 | undefined)",
|
|
18013
|
+
value: input.duplicate
|
|
18014
|
+
}, _errorFactory); const _ao79 = (input, _path, _exceptionable = true) => (undefined === input.titlePrefix || "string" === typeof input.titlePrefix || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18015
|
+
method: "typia.assert",
|
|
18016
|
+
path: _path + ".titlePrefix",
|
|
18017
|
+
expected: "(string | undefined)",
|
|
18018
|
+
value: input.titlePrefix
|
|
18019
|
+
}, _errorFactory)) && (undefined === input.titleSuffix || "string" === typeof input.titleSuffix || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18020
|
+
method: "typia.assert",
|
|
18021
|
+
path: _path + ".titleSuffix",
|
|
18022
|
+
expected: "(string | undefined)",
|
|
18023
|
+
value: input.titleSuffix
|
|
18024
|
+
}, _errorFactory)); const _ao80 = (input, _path, _exceptionable = true) => (undefined === input.stateFilter || (Array.isArray(input.stateFilter) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18025
|
+
method: "typia.assert",
|
|
18026
|
+
path: _path + ".stateFilter",
|
|
18027
|
+
expected: "(Array<number> | undefined)",
|
|
18028
|
+
value: input.stateFilter
|
|
18029
|
+
}, _errorFactory)) && input.stateFilter.every((elem, _index64) => "number" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18030
|
+
method: "typia.assert",
|
|
18031
|
+
path: _path + ".stateFilter[" + _index64 + "]",
|
|
18032
|
+
expected: "number",
|
|
18033
|
+
value: elem
|
|
18034
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18035
|
+
method: "typia.assert",
|
|
18036
|
+
path: _path + ".stateFilter",
|
|
18037
|
+
expected: "(Array<number> | undefined)",
|
|
18038
|
+
value: input.stateFilter
|
|
18039
|
+
}, _errorFactory)) && (undefined === input.textFilter || "string" === typeof input.textFilter || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18040
|
+
method: "typia.assert",
|
|
18041
|
+
path: _path + ".textFilter",
|
|
18042
|
+
expected: "(string | undefined)",
|
|
18043
|
+
value: input.textFilter
|
|
18044
|
+
}, _errorFactory)) && (undefined === input.showEmpty || "boolean" === typeof input.showEmpty || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18045
|
+
method: "typia.assert",
|
|
18046
|
+
path: _path + ".showEmpty",
|
|
18047
|
+
expected: "(boolean | undefined)",
|
|
18048
|
+
value: input.showEmpty
|
|
18049
|
+
}, _errorFactory)) && (undefined === input.selectedRecord || "string" === typeof input.selectedRecord || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18050
|
+
method: "typia.assert",
|
|
18051
|
+
path: _path + ".selectedRecord",
|
|
18052
|
+
expected: "(string | undefined)",
|
|
18053
|
+
value: input.selectedRecord
|
|
18054
|
+
}, _errorFactory)) && (undefined === input.subscribeSearchHits || "boolean" === typeof input.subscribeSearchHits || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18055
|
+
method: "typia.assert",
|
|
18056
|
+
path: _path + ".subscribeSearchHits",
|
|
18057
|
+
expected: "(boolean | undefined)",
|
|
18058
|
+
value: input.subscribeSearchHits
|
|
18059
|
+
}, _errorFactory)) && (undefined === input.parseRegex || "boolean" === typeof input.parseRegex || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18060
|
+
method: "typia.assert",
|
|
18061
|
+
path: _path + ".parseRegex",
|
|
18062
|
+
expected: "(boolean | undefined)",
|
|
18063
|
+
value: input.parseRegex
|
|
18064
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
17451
18065
|
if (false === __is(input)) {
|
|
17452
18066
|
_errorFactory = errorFactory;
|
|
17453
18067
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
@@ -17465,6 +18079,210 @@ function _assertDomainRecord(domain, input) {
|
|
|
17465
18079
|
return input;
|
|
17466
18080
|
}; })()(input);
|
|
17467
18081
|
}
|
|
18082
|
+
case ":shotbox": {
|
|
18083
|
+
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 => (() => {
|
|
18084
|
+
if ("stream" === input.type)
|
|
18085
|
+
return _io4(input);
|
|
18086
|
+
else
|
|
18087
|
+
return _io2(input);
|
|
18088
|
+
})(); const _ao0 = (input, _path, _exceptionable = true) => undefined === input.pages || (Array.isArray(input.pages) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18089
|
+
method: "typia.assert",
|
|
18090
|
+
path: _path + ".pages",
|
|
18091
|
+
expected: "(Array<ShotboxPage> | undefined)",
|
|
18092
|
+
value: input.pages
|
|
18093
|
+
}, _errorFactory)) && input.pages.every((elem, _index6) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18094
|
+
method: "typia.assert",
|
|
18095
|
+
path: _path + ".pages[" + _index6 + "]",
|
|
18096
|
+
expected: "ShotboxPage",
|
|
18097
|
+
value: elem
|
|
18098
|
+
}, _errorFactory)) && _ao1(elem, _path + ".pages[" + _index6 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18099
|
+
method: "typia.assert",
|
|
18100
|
+
path: _path + ".pages[" + _index6 + "]",
|
|
18101
|
+
expected: "ShotboxPage",
|
|
18102
|
+
value: elem
|
|
18103
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18104
|
+
method: "typia.assert",
|
|
18105
|
+
path: _path + ".pages",
|
|
18106
|
+
expected: "(Array<ShotboxPage> | undefined)",
|
|
18107
|
+
value: input.pages
|
|
18108
|
+
}, _errorFactory); const _ao1 = (input, _path, _exceptionable = true) => (undefined === input.stickyTopRow || "boolean" === typeof input.stickyTopRow || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18109
|
+
method: "typia.assert",
|
|
18110
|
+
path: _path + ".stickyTopRow",
|
|
18111
|
+
expected: "(boolean | undefined)",
|
|
18112
|
+
value: input.stickyTopRow
|
|
18113
|
+
}, _errorFactory)) && (undefined === input.inferGroups || "boolean" === typeof input.inferGroups || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18114
|
+
method: "typia.assert",
|
|
18115
|
+
path: _path + ".inferGroups",
|
|
18116
|
+
expected: "(boolean | undefined)",
|
|
18117
|
+
value: input.inferGroups
|
|
18118
|
+
}, _errorFactory)) && (undefined === input.layout || (Array.isArray(input.layout) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18119
|
+
method: "typia.assert",
|
|
18120
|
+
path: _path + ".layout",
|
|
18121
|
+
expected: "(Array<ShotboxGroup | ShotboxGroup[]> | undefined)",
|
|
18122
|
+
value: input.layout
|
|
18123
|
+
}, _errorFactory)) && input.layout.every((elem, _index7) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18124
|
+
method: "typia.assert",
|
|
18125
|
+
path: _path + ".layout[" + _index7 + "]",
|
|
18126
|
+
expected: "(Array<ShotboxGroup> | ShotboxEventGroup | ShotboxStreamGroup)",
|
|
18127
|
+
value: elem
|
|
18128
|
+
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18129
|
+
method: "typia.assert",
|
|
18130
|
+
path: _path + ".layout[" + _index7 + "]",
|
|
18131
|
+
expected: "(Array<ShotboxGroup> | ShotboxEventGroup | ShotboxStreamGroup)",
|
|
18132
|
+
value: elem
|
|
18133
|
+
}, _errorFactory)) && (Array.isArray(elem) && elem.every((elem, _index8) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18134
|
+
method: "typia.assert",
|
|
18135
|
+
path: _path + ".layout[" + _index7 + "][" + _index8 + "]",
|
|
18136
|
+
expected: "(ShotboxEventGroup | ShotboxStreamGroup)",
|
|
18137
|
+
value: elem
|
|
18138
|
+
}, _errorFactory)) && _au0(elem, _path + ".layout[" + _index7 + "][" + _index8 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18139
|
+
method: "typia.assert",
|
|
18140
|
+
path: _path + ".layout[" + _index7 + "][" + _index8 + "]",
|
|
18141
|
+
expected: "(ShotboxEventGroup | ShotboxStreamGroup)",
|
|
18142
|
+
value: elem
|
|
18143
|
+
}, _errorFactory)) || "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _au0(elem, _path + ".layout[" + _index7 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18144
|
+
method: "typia.assert",
|
|
18145
|
+
path: _path + ".layout[" + _index7 + "]",
|
|
18146
|
+
expected: "(Array<ShotboxGroup> | ShotboxEventGroup | ShotboxStreamGroup)",
|
|
18147
|
+
value: elem
|
|
18148
|
+
}, _errorFactory) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18149
|
+
method: "typia.assert",
|
|
18150
|
+
path: _path + ".layout[" + _index7 + "]",
|
|
18151
|
+
expected: "(Array<ShotboxGroup> | ShotboxEventGroup | ShotboxStreamGroup)",
|
|
18152
|
+
value: elem
|
|
18153
|
+
}, _errorFactory))) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18154
|
+
method: "typia.assert",
|
|
18155
|
+
path: _path + ".layout",
|
|
18156
|
+
expected: "(Array<ShotboxGroup | ShotboxGroup[]> | undefined)",
|
|
18157
|
+
value: input.layout
|
|
18158
|
+
}, _errorFactory)); const _ao2 = (input, _path, _exceptionable = true) => (undefined === input.id || "string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18159
|
+
method: "typia.assert",
|
|
18160
|
+
path: _path + ".id",
|
|
18161
|
+
expected: "(string | undefined)",
|
|
18162
|
+
value: input.id
|
|
18163
|
+
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18164
|
+
method: "typia.assert",
|
|
18165
|
+
path: _path + ".title",
|
|
18166
|
+
expected: "(string | undefined)",
|
|
18167
|
+
value: input.title
|
|
18168
|
+
}, _errorFactory)) && (undefined === input.sticky || "boolean" === typeof input.sticky || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18169
|
+
method: "typia.assert",
|
|
18170
|
+
path: _path + ".sticky",
|
|
18171
|
+
expected: "(boolean | undefined)",
|
|
18172
|
+
value: input.sticky
|
|
18173
|
+
}, _errorFactory)) && (undefined === input.type || "trigger" === input.type || "toggle" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18174
|
+
method: "typia.assert",
|
|
18175
|
+
path: _path + ".type",
|
|
18176
|
+
expected: "(\"toggle\" | \"trigger\" | undefined)",
|
|
18177
|
+
value: input.type
|
|
18178
|
+
}, _errorFactory)) && (undefined === input.width || "string" === typeof input.width || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18179
|
+
method: "typia.assert",
|
|
18180
|
+
path: _path + ".width",
|
|
18181
|
+
expected: "(string | undefined)",
|
|
18182
|
+
value: input.width
|
|
18183
|
+
}, _errorFactory)) && (undefined === input.include || (Array.isArray(input.include) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18184
|
+
method: "typia.assert",
|
|
18185
|
+
path: _path + ".include",
|
|
18186
|
+
expected: "(Array<string> | undefined)",
|
|
18187
|
+
value: input.include
|
|
18188
|
+
}, _errorFactory)) && input.include.every((elem, _index9) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18189
|
+
method: "typia.assert",
|
|
18190
|
+
path: _path + ".include[" + _index9 + "]",
|
|
18191
|
+
expected: "string",
|
|
18192
|
+
value: elem
|
|
18193
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18194
|
+
method: "typia.assert",
|
|
18195
|
+
path: _path + ".include",
|
|
18196
|
+
expected: "(Array<string> | undefined)",
|
|
18197
|
+
value: input.include
|
|
18198
|
+
}, _errorFactory)) && (undefined === input.exclude || (Array.isArray(input.exclude) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18199
|
+
method: "typia.assert",
|
|
18200
|
+
path: _path + ".exclude",
|
|
18201
|
+
expected: "(Array<string> | undefined)",
|
|
18202
|
+
value: input.exclude
|
|
18203
|
+
}, _errorFactory)) && input.exclude.every((elem, _index10) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18204
|
+
method: "typia.assert",
|
|
18205
|
+
path: _path + ".exclude[" + _index10 + "]",
|
|
18206
|
+
expected: "string",
|
|
18207
|
+
value: elem
|
|
18208
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18209
|
+
method: "typia.assert",
|
|
18210
|
+
path: _path + ".exclude",
|
|
18211
|
+
expected: "(Array<string> | undefined)",
|
|
18212
|
+
value: input.exclude
|
|
18213
|
+
}, _errorFactory)) && (undefined === input.states || ("object" === typeof input.states && null !== input.states || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18214
|
+
method: "typia.assert",
|
|
18215
|
+
path: _path + ".states",
|
|
18216
|
+
expected: "(__type | undefined)",
|
|
18217
|
+
value: input.states
|
|
18218
|
+
}, _errorFactory)) && _ao3(input.states, _path + ".states", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18219
|
+
method: "typia.assert",
|
|
18220
|
+
path: _path + ".states",
|
|
18221
|
+
expected: "(__type | undefined)",
|
|
18222
|
+
value: input.states
|
|
18223
|
+
}, _errorFactory)) && (undefined === input.flow || "column" === input.flow || "row" === input.flow || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18224
|
+
method: "typia.assert",
|
|
18225
|
+
path: _path + ".flow",
|
|
18226
|
+
expected: "(\"column\" | \"row\" | undefined)",
|
|
18227
|
+
value: input.flow
|
|
18228
|
+
}, _errorFactory)) && (undefined === input.minRows || "number" === typeof input.minRows || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18229
|
+
method: "typia.assert",
|
|
18230
|
+
path: _path + ".minRows",
|
|
18231
|
+
expected: "(number | undefined)",
|
|
18232
|
+
value: input.minRows
|
|
18233
|
+
}, _errorFactory)) && (undefined === input.maxRows || "number" === typeof input.maxRows || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18234
|
+
method: "typia.assert",
|
|
18235
|
+
path: _path + ".maxRows",
|
|
18236
|
+
expected: "(number | undefined)",
|
|
18237
|
+
value: input.maxRows
|
|
18238
|
+
}, _errorFactory)); const _ao3 = (input, _path, _exceptionable = true) => "boolean" === typeof input.completed || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18239
|
+
method: "typia.assert",
|
|
18240
|
+
path: _path + ".completed",
|
|
18241
|
+
expected: "boolean",
|
|
18242
|
+
value: input.completed
|
|
18243
|
+
}, _errorFactory); const _ao4 = (input, _path, _exceptionable = true) => ("stream" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18244
|
+
method: "typia.assert",
|
|
18245
|
+
path: _path + ".type",
|
|
18246
|
+
expected: "\"stream\"",
|
|
18247
|
+
value: input.type
|
|
18248
|
+
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18249
|
+
method: "typia.assert",
|
|
18250
|
+
path: _path + ".title",
|
|
18251
|
+
expected: "(string | undefined)",
|
|
18252
|
+
value: input.title
|
|
18253
|
+
}, _errorFactory)) && (undefined === input.width || "string" === typeof input.width || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18254
|
+
method: "typia.assert",
|
|
18255
|
+
path: _path + ".width",
|
|
18256
|
+
expected: "(string | undefined)",
|
|
18257
|
+
value: input.width
|
|
18258
|
+
}, _errorFactory)) && (undefined === input.source || "string" === typeof input.source || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18259
|
+
method: "typia.assert",
|
|
18260
|
+
path: _path + ".source",
|
|
18261
|
+
expected: "(string | undefined)",
|
|
18262
|
+
value: input.source
|
|
18263
|
+
}, _errorFactory)); const _au0 = (input, _path, _exceptionable = true) => (() => {
|
|
18264
|
+
if ("stream" === input.type)
|
|
18265
|
+
return _ao4(input, _path, true && _exceptionable);
|
|
18266
|
+
else
|
|
18267
|
+
return _ao2(input, _path, true && _exceptionable);
|
|
18268
|
+
})(); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
18269
|
+
if (false === __is(input)) {
|
|
18270
|
+
_errorFactory = errorFactory;
|
|
18271
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
18272
|
+
method: "typia.assert",
|
|
18273
|
+
path: _path + "",
|
|
18274
|
+
expected: "ShotboxDomainRecord",
|
|
18275
|
+
value: input
|
|
18276
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
18277
|
+
method: "typia.assert",
|
|
18278
|
+
path: _path + "",
|
|
18279
|
+
expected: "ShotboxDomainRecord",
|
|
18280
|
+
value: input
|
|
18281
|
+
}, _errorFactory))(input, "$input", true);
|
|
18282
|
+
}
|
|
18283
|
+
return input;
|
|
18284
|
+
}; })()(input);
|
|
18285
|
+
}
|
|
17468
18286
|
case ":storyboard": {
|
|
17469
18287
|
return (() => { const _io0 = input => Object.keys(input).every(key => {
|
|
17470
18288
|
const value = input[key];
|