@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
|
@@ -3019,6 +3019,89 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
3019
3019
|
}
|
|
3020
3020
|
}; })()(input);
|
|
3021
3021
|
}
|
|
3022
|
+
case ":calendarevent": {
|
|
3023
|
+
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, {
|
|
3024
|
+
method: "typia.assertGuard",
|
|
3025
|
+
path: _path + ".start",
|
|
3026
|
+
expected: "(null | string | undefined)",
|
|
3027
|
+
value: input.start
|
|
3028
|
+
}, _errorFactory)) && (null === input.end || undefined === input.end || "string" === typeof input.end || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3029
|
+
method: "typia.assertGuard",
|
|
3030
|
+
path: _path + ".end",
|
|
3031
|
+
expected: "(null | string | undefined)",
|
|
3032
|
+
value: input.end
|
|
3033
|
+
}, _errorFactory)) && (undefined === input.description || "string" === typeof input.description || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3034
|
+
method: "typia.assertGuard",
|
|
3035
|
+
path: _path + ".description",
|
|
3036
|
+
expected: "(string | undefined)",
|
|
3037
|
+
value: input.description
|
|
3038
|
+
}, _errorFactory)) && (null === input.recurrence || undefined === input.recurrence || ("object" === typeof input.recurrence && null !== input.recurrence && false === Array.isArray(input.recurrence) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3039
|
+
method: "typia.assertGuard",
|
|
3040
|
+
path: _path + ".recurrence",
|
|
3041
|
+
expected: "(CalendarEventDomainRecurrenceRule | null | undefined)",
|
|
3042
|
+
value: input.recurrence
|
|
3043
|
+
}, _errorFactory)) && _ao1(input.recurrence, _path + ".recurrence", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3044
|
+
method: "typia.assertGuard",
|
|
3045
|
+
path: _path + ".recurrence",
|
|
3046
|
+
expected: "(CalendarEventDomainRecurrenceRule | null | undefined)",
|
|
3047
|
+
value: input.recurrence
|
|
3048
|
+
}, _errorFactory)) && (undefined === input.color || "string" === typeof input.color || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3049
|
+
method: "typia.assertGuard",
|
|
3050
|
+
path: _path + ".color",
|
|
3051
|
+
expected: "(string | undefined)",
|
|
3052
|
+
value: input.color
|
|
3053
|
+
}, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => (undefined === input.interval || "number" === typeof input.interval || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3054
|
+
method: "typia.assertGuard",
|
|
3055
|
+
path: _path + ".interval",
|
|
3056
|
+
expected: "(number | undefined)",
|
|
3057
|
+
value: input.interval
|
|
3058
|
+
}, _errorFactory)) && (null === input.frequency || undefined === input.frequency || "days" === input.frequency || "weeks" === input.frequency || "months" === input.frequency || "years" === input.frequency || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3059
|
+
method: "typia.assertGuard",
|
|
3060
|
+
path: _path + ".frequency",
|
|
3061
|
+
expected: "(\"days\" | \"months\" | \"weeks\" | \"years\" | null | undefined)",
|
|
3062
|
+
value: input.frequency
|
|
3063
|
+
}, _errorFactory)) && (null === input.byweekday || undefined === input.byweekday || (Array.isArray(input.byweekday) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3064
|
+
method: "typia.assertGuard",
|
|
3065
|
+
path: _path + ".byweekday",
|
|
3066
|
+
expected: "(Array<number> | null | undefined)",
|
|
3067
|
+
value: input.byweekday
|
|
3068
|
+
}, _errorFactory)) && input.byweekday.every((elem, _index2) => "number" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3069
|
+
method: "typia.assertGuard",
|
|
3070
|
+
path: _path + ".byweekday[" + _index2 + "]",
|
|
3071
|
+
expected: "number",
|
|
3072
|
+
value: elem
|
|
3073
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3074
|
+
method: "typia.assertGuard",
|
|
3075
|
+
path: _path + ".byweekday",
|
|
3076
|
+
expected: "(Array<number> | null | undefined)",
|
|
3077
|
+
value: input.byweekday
|
|
3078
|
+
}, _errorFactory)) && (null === input.count || undefined === input.count || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3079
|
+
method: "typia.assertGuard",
|
|
3080
|
+
path: _path + ".count",
|
|
3081
|
+
expected: "(null | undefined)",
|
|
3082
|
+
value: input.count
|
|
3083
|
+
}, _errorFactory)) && (null === input.until || undefined === input.until || "string" === typeof input.until || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3084
|
+
method: "typia.assertGuard",
|
|
3085
|
+
path: _path + ".until",
|
|
3086
|
+
expected: "(null | string | undefined)",
|
|
3087
|
+
value: input.until
|
|
3088
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
3089
|
+
if (false === __is(input)) {
|
|
3090
|
+
_errorFactory = errorFactory;
|
|
3091
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
3092
|
+
method: "typia.assertGuard",
|
|
3093
|
+
path: _path + "",
|
|
3094
|
+
expected: "CalendarEventDomainRecord",
|
|
3095
|
+
value: input
|
|
3096
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
3097
|
+
method: "typia.assertGuard",
|
|
3098
|
+
path: _path + "",
|
|
3099
|
+
expected: "CalendarEventDomainRecord",
|
|
3100
|
+
value: input
|
|
3101
|
+
}, _errorFactory))(input, "$input", true);
|
|
3102
|
+
}
|
|
3103
|
+
}; })()(input);
|
|
3104
|
+
}
|
|
3022
3105
|
case ":clone": {
|
|
3023
3106
|
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, {
|
|
3024
3107
|
method: "typia.assertGuard",
|
|
@@ -3579,6 +3662,39 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
3579
3662
|
}
|
|
3580
3663
|
}; })()(input);
|
|
3581
3664
|
}
|
|
3665
|
+
case ":condition": {
|
|
3666
|
+
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, {
|
|
3667
|
+
method: "typia.assertGuard",
|
|
3668
|
+
path: _path + ".field",
|
|
3669
|
+
expected: "(string | undefined)",
|
|
3670
|
+
value: input.field
|
|
3671
|
+
}, _errorFactory)) && (undefined === input.type || "string" === typeof input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3672
|
+
method: "typia.assertGuard",
|
|
3673
|
+
path: _path + ".type",
|
|
3674
|
+
expected: "(string | undefined)",
|
|
3675
|
+
value: input.type
|
|
3676
|
+
}, _errorFactory)) && (undefined === input.op || "string" === typeof input.op || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3677
|
+
method: "typia.assertGuard",
|
|
3678
|
+
path: _path + ".op",
|
|
3679
|
+
expected: "(string | undefined)",
|
|
3680
|
+
value: input.op
|
|
3681
|
+
}, _errorFactory)) && true; const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
3682
|
+
if (false === __is(input)) {
|
|
3683
|
+
_errorFactory = errorFactory;
|
|
3684
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
3685
|
+
method: "typia.assertGuard",
|
|
3686
|
+
path: _path + "",
|
|
3687
|
+
expected: "SearchCondition",
|
|
3688
|
+
value: input
|
|
3689
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
3690
|
+
method: "typia.assertGuard",
|
|
3691
|
+
path: _path + "",
|
|
3692
|
+
expected: "SearchCondition",
|
|
3693
|
+
value: input
|
|
3694
|
+
}, _errorFactory))(input, "$input", true);
|
|
3695
|
+
}
|
|
3696
|
+
}; })()(input);
|
|
3697
|
+
}
|
|
3582
3698
|
case ":connection": {
|
|
3583
3699
|
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 => {
|
|
3584
3700
|
const value = input[key];
|
|
@@ -8009,6 +8125,157 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
8009
8125
|
}
|
|
8010
8126
|
}; })()(input);
|
|
8011
8127
|
}
|
|
8128
|
+
case ":harvest": {
|
|
8129
|
+
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, {
|
|
8130
|
+
method: "typia.assertGuard",
|
|
8131
|
+
path: _path + ".active",
|
|
8132
|
+
expected: "(boolean | undefined)",
|
|
8133
|
+
value: input.active
|
|
8134
|
+
}, _errorFactory)) && (undefined === input.tags || (Array.isArray(input.tags) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8135
|
+
method: "typia.assertGuard",
|
|
8136
|
+
path: _path + ".tags",
|
|
8137
|
+
expected: "(Array<string> | undefined)",
|
|
8138
|
+
value: input.tags
|
|
8139
|
+
}, _errorFactory)) && input.tags.every((elem, _index2) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8140
|
+
method: "typia.assertGuard",
|
|
8141
|
+
path: _path + ".tags[" + _index2 + "]",
|
|
8142
|
+
expected: "string",
|
|
8143
|
+
value: elem
|
|
8144
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8145
|
+
method: "typia.assertGuard",
|
|
8146
|
+
path: _path + ".tags",
|
|
8147
|
+
expected: "(Array<string> | undefined)",
|
|
8148
|
+
value: input.tags
|
|
8149
|
+
}, _errorFactory)) && (undefined === input.revisions || "boolean" === typeof input.revisions || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8150
|
+
method: "typia.assertGuard",
|
|
8151
|
+
path: _path + ".revisions",
|
|
8152
|
+
expected: "(boolean | undefined)",
|
|
8153
|
+
value: input.revisions
|
|
8154
|
+
}, _errorFactory)) && (undefined === input.concurrency || "number" === typeof input.concurrency || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8155
|
+
method: "typia.assertGuard",
|
|
8156
|
+
path: _path + ".concurrency",
|
|
8157
|
+
expected: "(number | undefined)",
|
|
8158
|
+
value: input.concurrency
|
|
8159
|
+
}, _errorFactory)) && (undefined === input.throttle || "number" === typeof input.throttle || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8160
|
+
method: "typia.assertGuard",
|
|
8161
|
+
path: _path + ".throttle",
|
|
8162
|
+
expected: "(number | undefined)",
|
|
8163
|
+
value: input.throttle
|
|
8164
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
8165
|
+
if (false === __is(input)) {
|
|
8166
|
+
_errorFactory = errorFactory;
|
|
8167
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
8168
|
+
method: "typia.assertGuard",
|
|
8169
|
+
path: _path + "",
|
|
8170
|
+
expected: "HarvestDomainRecord",
|
|
8171
|
+
value: input
|
|
8172
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
8173
|
+
method: "typia.assertGuard",
|
|
8174
|
+
path: _path + "",
|
|
8175
|
+
expected: "HarvestDomainRecord",
|
|
8176
|
+
value: input
|
|
8177
|
+
}, _errorFactory))(input, "$input", true);
|
|
8178
|
+
}
|
|
8179
|
+
}; })()(input);
|
|
8180
|
+
}
|
|
8181
|
+
case ":ingestclip": {
|
|
8182
|
+
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, {
|
|
8183
|
+
method: "typia.assertGuard",
|
|
8184
|
+
path: _path + ".time",
|
|
8185
|
+
expected: "(number | undefined)",
|
|
8186
|
+
value: input.time
|
|
8187
|
+
}, _errorFactory)) && (undefined === input.duration || "number" === typeof input.duration || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8188
|
+
method: "typia.assertGuard",
|
|
8189
|
+
path: _path + ".duration",
|
|
8190
|
+
expected: "(number | undefined)",
|
|
8191
|
+
value: input.duration
|
|
8192
|
+
}, _errorFactory)) && (undefined === input.type || "string" === typeof input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8193
|
+
method: "typia.assertGuard",
|
|
8194
|
+
path: _path + ".type",
|
|
8195
|
+
expected: "(string | undefined)",
|
|
8196
|
+
value: input.type
|
|
8197
|
+
}, _errorFactory)) && (undefined === input.record || "string" === typeof input.record || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8198
|
+
method: "typia.assertGuard",
|
|
8199
|
+
path: _path + ".record",
|
|
8200
|
+
expected: "(string | undefined)",
|
|
8201
|
+
value: input.record
|
|
8202
|
+
}, _errorFactory)) && (undefined === input.data || "boolean" === typeof input.data || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8203
|
+
method: "typia.assertGuard",
|
|
8204
|
+
path: _path + ".data",
|
|
8205
|
+
expected: "(boolean | undefined)",
|
|
8206
|
+
value: input.data
|
|
8207
|
+
}, _errorFactory)) && (undefined === input.gallery || "string" === typeof input.gallery || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8208
|
+
method: "typia.assertGuard",
|
|
8209
|
+
path: _path + ".gallery",
|
|
8210
|
+
expected: "(string | undefined)",
|
|
8211
|
+
value: input.gallery
|
|
8212
|
+
}, _errorFactory)) && (undefined === input.rundown || "string" === typeof input.rundown || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8213
|
+
method: "typia.assertGuard",
|
|
8214
|
+
path: _path + ".rundown",
|
|
8215
|
+
expected: "(string | undefined)",
|
|
8216
|
+
value: input.rundown
|
|
8217
|
+
}, _errorFactory)) && (undefined === input.segment || "string" === typeof input.segment || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8218
|
+
method: "typia.assertGuard",
|
|
8219
|
+
path: _path + ".segment",
|
|
8220
|
+
expected: "(string | undefined)",
|
|
8221
|
+
value: input.segment
|
|
8222
|
+
}, _errorFactory)) && (undefined === input.story || "string" === typeof input.story || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8223
|
+
method: "typia.assertGuard",
|
|
8224
|
+
path: _path + ".story",
|
|
8225
|
+
expected: "(string | undefined)",
|
|
8226
|
+
value: input.story
|
|
8227
|
+
}, _errorFactory)) && (undefined === input.event || "string" === typeof input.event || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8228
|
+
method: "typia.assertGuard",
|
|
8229
|
+
path: _path + ".event",
|
|
8230
|
+
expected: "(string | undefined)",
|
|
8231
|
+
value: input.event
|
|
8232
|
+
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8233
|
+
method: "typia.assertGuard",
|
|
8234
|
+
path: _path + ".title",
|
|
8235
|
+
expected: "(string | undefined)",
|
|
8236
|
+
value: input.title
|
|
8237
|
+
}, _errorFactory)) && (undefined === input.start || "number" === typeof input.start || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8238
|
+
method: "typia.assertGuard",
|
|
8239
|
+
path: _path + ".start",
|
|
8240
|
+
expected: "(number | undefined)",
|
|
8241
|
+
value: input.start
|
|
8242
|
+
}, _errorFactory)) && (undefined === input.end || "number" === typeof input.end || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8243
|
+
method: "typia.assertGuard",
|
|
8244
|
+
path: _path + ".end",
|
|
8245
|
+
expected: "(number | undefined)",
|
|
8246
|
+
value: input.end
|
|
8247
|
+
}, _errorFactory)) && (undefined === input.channel || "string" === typeof input.channel || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8248
|
+
method: "typia.assertGuard",
|
|
8249
|
+
path: _path + ".channel",
|
|
8250
|
+
expected: "(string | undefined)",
|
|
8251
|
+
value: input.channel
|
|
8252
|
+
}, _errorFactory)) && (undefined === input.schedule || "string" === typeof input.schedule || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8253
|
+
method: "typia.assertGuard",
|
|
8254
|
+
path: _path + ".schedule",
|
|
8255
|
+
expected: "(string | undefined)",
|
|
8256
|
+
value: input.schedule
|
|
8257
|
+
}, _errorFactory)) && (undefined === input.parent || "string" === typeof input.parent || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8258
|
+
method: "typia.assertGuard",
|
|
8259
|
+
path: _path + ".parent",
|
|
8260
|
+
expected: "(string | undefined)",
|
|
8261
|
+
value: input.parent
|
|
8262
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
8263
|
+
if (false === __is(input)) {
|
|
8264
|
+
_errorFactory = errorFactory;
|
|
8265
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
8266
|
+
method: "typia.assertGuard",
|
|
8267
|
+
path: _path + "",
|
|
8268
|
+
expected: "IngestclipDomainRecord",
|
|
8269
|
+
value: input
|
|
8270
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
8271
|
+
method: "typia.assertGuard",
|
|
8272
|
+
path: _path + "",
|
|
8273
|
+
expected: "IngestclipDomainRecord",
|
|
8274
|
+
value: input
|
|
8275
|
+
}, _errorFactory))(input, "$input", true);
|
|
8276
|
+
}
|
|
8277
|
+
}; })()(input);
|
|
8278
|
+
}
|
|
8012
8279
|
case ":media.source": {
|
|
8013
8280
|
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 => {
|
|
8014
8281
|
const value = input[key];
|
|
@@ -9868,16 +10135,16 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
9868
10135
|
}; })()(input);
|
|
9869
10136
|
}
|
|
9870
10137
|
case ":panel": {
|
|
9871
|
-
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) &&
|
|
10138
|
+
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 => {
|
|
9872
10139
|
const value = input[key];
|
|
9873
10140
|
if (undefined === value)
|
|
9874
10141
|
return true;
|
|
9875
10142
|
return "object" === typeof value && null !== value && _io2(value);
|
|
9876
|
-
}); 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
|
|
10143
|
+
}); 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 => (() => {
|
|
9877
10144
|
if (undefined !== input.type)
|
|
9878
|
-
return
|
|
10145
|
+
return _io7(input);
|
|
9879
10146
|
else if (undefined !== input.property)
|
|
9880
|
-
return
|
|
10147
|
+
return _io8(input);
|
|
9881
10148
|
else
|
|
9882
10149
|
return false;
|
|
9883
10150
|
})(); 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, {
|
|
@@ -9895,9 +10162,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
9895
10162
|
path: _path + ".supports",
|
|
9896
10163
|
expected: "(Array<string> | string | undefined)",
|
|
9897
10164
|
value: input.supports
|
|
9898
|
-
}, _errorFactory)) && input.supports.every((elem,
|
|
10165
|
+
}, _errorFactory)) && input.supports.every((elem, _index5) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9899
10166
|
method: "typia.assertGuard",
|
|
9900
|
-
path: _path + ".supports[" +
|
|
10167
|
+
path: _path + ".supports[" + _index5 + "]",
|
|
9901
10168
|
expected: "string",
|
|
9902
10169
|
value: elem
|
|
9903
10170
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -9928,44 +10195,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
9928
10195
|
}, _errorFactory)) && (undefined === input.layout || ("object" === typeof input.layout && null !== input.layout && false === Array.isArray(input.layout) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9929
10196
|
method: "typia.assertGuard",
|
|
9930
10197
|
path: _path + ".layout",
|
|
9931
|
-
expected: "(__type.
|
|
10198
|
+
expected: "(__type.o4 | undefined)",
|
|
9932
10199
|
value: input.layout
|
|
9933
|
-
}, _errorFactory)) &&
|
|
10200
|
+
}, _errorFactory)) && _ao6(input.layout, _path + ".layout", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9934
10201
|
method: "typia.assertGuard",
|
|
9935
10202
|
path: _path + ".layout",
|
|
9936
|
-
expected: "(__type.
|
|
10203
|
+
expected: "(__type.o4 | undefined)",
|
|
9937
10204
|
value: input.layout
|
|
9938
|
-
}, _errorFactory)) &&
|
|
9939
|
-
method: "typia.assertGuard",
|
|
9940
|
-
path: _path + ".filter",
|
|
9941
|
-
expected: "(__type.o3 | string | undefined)",
|
|
9942
|
-
value: input.filter
|
|
9943
|
-
}, _errorFactory)) && (undefined === input.filter || "string" === typeof input.filter || ("object" === typeof input.filter && null !== input.filter || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9944
|
-
method: "typia.assertGuard",
|
|
9945
|
-
path: _path + ".filter",
|
|
9946
|
-
expected: "(__type.o3 | string | undefined)",
|
|
9947
|
-
value: input.filter
|
|
9948
|
-
}, _errorFactory)) && _ao8(input.filter, _path + ".filter", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9949
|
-
method: "typia.assertGuard",
|
|
9950
|
-
path: _path + ".filter",
|
|
9951
|
-
expected: "(__type.o3 | string | undefined)",
|
|
9952
|
-
value: input.filter
|
|
9953
|
-
}, _errorFactory))) && ((null !== input.expand || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9954
|
-
method: "typia.assertGuard",
|
|
9955
|
-
path: _path + ".expand",
|
|
9956
|
-
expected: "(__type.o3 | string | undefined)",
|
|
9957
|
-
value: input.expand
|
|
9958
|
-
}, _errorFactory)) && (undefined === input.expand || "string" === typeof input.expand || ("object" === typeof input.expand && null !== input.expand || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9959
|
-
method: "typia.assertGuard",
|
|
9960
|
-
path: _path + ".expand",
|
|
9961
|
-
expected: "(__type.o3 | string | undefined)",
|
|
9962
|
-
value: input.expand
|
|
9963
|
-
}, _errorFactory)) && _ao8(input.expand, _path + ".expand", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9964
|
-
method: "typia.assertGuard",
|
|
9965
|
-
path: _path + ".expand",
|
|
9966
|
-
expected: "(__type.o3 | string | undefined)",
|
|
9967
|
-
value: input.expand
|
|
9968
|
-
}, _errorFactory))); const _ao1 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
10205
|
+
}, _errorFactory)) && true && true; const _ao1 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
9969
10206
|
const value = input[key];
|
|
9970
10207
|
if (undefined === value)
|
|
9971
10208
|
return true;
|
|
@@ -10020,11 +10257,46 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10020
10257
|
path: _path + ".required",
|
|
10021
10258
|
expected: "(boolean | undefined)",
|
|
10022
10259
|
value: input.required
|
|
10023
|
-
}, _errorFactory)) && (undefined === input.oneOf || Array.isArray(input.oneOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10260
|
+
}, _errorFactory)) && (undefined === input.oneOf || (Array.isArray(input.oneOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10261
|
+
method: "typia.assertGuard",
|
|
10262
|
+
path: _path + ".oneOf",
|
|
10263
|
+
expected: "(Array<__type> | undefined)",
|
|
10264
|
+
value: input.oneOf
|
|
10265
|
+
}, _errorFactory)) && input.oneOf.every((elem, _index6) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10266
|
+
method: "typia.assertGuard",
|
|
10267
|
+
path: _path + ".oneOf[" + _index6 + "]",
|
|
10268
|
+
expected: "__type.o2",
|
|
10269
|
+
value: elem
|
|
10270
|
+
}, _errorFactory)) && _ao4(elem, _path + ".oneOf[" + _index6 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10271
|
+
method: "typia.assertGuard",
|
|
10272
|
+
path: _path + ".oneOf[" + _index6 + "]",
|
|
10273
|
+
expected: "__type.o2",
|
|
10274
|
+
value: elem
|
|
10275
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10024
10276
|
method: "typia.assertGuard",
|
|
10025
10277
|
path: _path + ".oneOf",
|
|
10026
|
-
expected: "(Array<
|
|
10278
|
+
expected: "(Array<__type> | undefined)",
|
|
10027
10279
|
value: input.oneOf
|
|
10280
|
+
}, _errorFactory)) && (undefined === input.anyOf || (Array.isArray(input.anyOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10281
|
+
method: "typia.assertGuard",
|
|
10282
|
+
path: _path + ".anyOf",
|
|
10283
|
+
expected: "(Array<__type>.o1 | undefined)",
|
|
10284
|
+
value: input.anyOf
|
|
10285
|
+
}, _errorFactory)) && input.anyOf.every((elem, _index7) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10286
|
+
method: "typia.assertGuard",
|
|
10287
|
+
path: _path + ".anyOf[" + _index7 + "]",
|
|
10288
|
+
expected: "__type.o3",
|
|
10289
|
+
value: elem
|
|
10290
|
+
}, _errorFactory)) && _ao5(elem, _path + ".anyOf[" + _index7 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10291
|
+
method: "typia.assertGuard",
|
|
10292
|
+
path: _path + ".anyOf[" + _index7 + "]",
|
|
10293
|
+
expected: "__type.o3",
|
|
10294
|
+
value: elem
|
|
10295
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10296
|
+
method: "typia.assertGuard",
|
|
10297
|
+
path: _path + ".anyOf",
|
|
10298
|
+
expected: "(Array<__type>.o1 | undefined)",
|
|
10299
|
+
value: input.anyOf
|
|
10028
10300
|
}, _errorFactory)); const _ao3 = (input, _path, _exceptionable = true) => ("string" === typeof input.label || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10029
10301
|
method: "typia.assertGuard",
|
|
10030
10302
|
path: _path + ".label",
|
|
@@ -10035,7 +10307,17 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10035
10307
|
path: _path + ".path",
|
|
10036
10308
|
expected: "string",
|
|
10037
10309
|
value: input.path
|
|
10038
|
-
}, _errorFactory)); const _ao4 = (input, _path, _exceptionable = true) => (
|
|
10310
|
+
}, _errorFactory)); const _ao4 = (input, _path, _exceptionable = true) => true && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10311
|
+
method: "typia.assertGuard",
|
|
10312
|
+
path: _path + ".title",
|
|
10313
|
+
expected: "(string | undefined)",
|
|
10314
|
+
value: input.title
|
|
10315
|
+
}, _errorFactory)); const _ao5 = (input, _path, _exceptionable = true) => true && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10316
|
+
method: "typia.assertGuard",
|
|
10317
|
+
path: _path + ".title",
|
|
10318
|
+
expected: "(string | undefined)",
|
|
10319
|
+
value: input.title
|
|
10320
|
+
}, _errorFactory)); const _ao6 = (input, _path, _exceptionable = true) => (null !== input.panel || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10039
10321
|
method: "typia.assertGuard",
|
|
10040
10322
|
path: _path + ".panel",
|
|
10041
10323
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string | undefined)",
|
|
@@ -10075,7 +10357,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10075
10357
|
path: _path + ".editor",
|
|
10076
10358
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string | undefined)",
|
|
10077
10359
|
value: input.editor
|
|
10078
|
-
}, _errorFactory))); const
|
|
10360
|
+
}, _errorFactory))); const _ao7 = (input, _path, _exceptionable = true) => ("divider" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10079
10361
|
method: "typia.assertGuard",
|
|
10080
10362
|
path: _path + ".type",
|
|
10081
10363
|
expected: "\"divider\"",
|
|
@@ -10085,7 +10367,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10085
10367
|
path: _path + ".title",
|
|
10086
10368
|
expected: "(string | undefined)",
|
|
10087
10369
|
value: input.title
|
|
10088
|
-
}, _errorFactory)); const
|
|
10370
|
+
}, _errorFactory)); const _ao8 = (input, _path, _exceptionable = true) => ("string" === typeof input.property || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10089
10371
|
method: "typia.assertGuard",
|
|
10090
10372
|
path: _path + ".property",
|
|
10091
10373
|
expected: "string",
|
|
@@ -10105,12 +10387,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10105
10387
|
path: _path + ".widget",
|
|
10106
10388
|
expected: "(\"assetTags\" | \"assetTypes\" | \"default\" | \"geopoint\" | \"poster\" | \"tags\" | \"textarea\" | WidgetItem | undefined)",
|
|
10107
10389
|
value: input.widget
|
|
10108
|
-
}, _errorFactory)) &&
|
|
10390
|
+
}, _errorFactory)) && _ao9(input.widget, _path + ".widget", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10109
10391
|
method: "typia.assertGuard",
|
|
10110
10392
|
path: _path + ".widget",
|
|
10111
10393
|
expected: "(\"assetTags\" | \"assetTypes\" | \"default\" | \"geopoint\" | \"poster\" | \"tags\" | \"textarea\" | WidgetItem | undefined)",
|
|
10112
10394
|
value: input.widget
|
|
10113
|
-
}, _errorFactory))); const
|
|
10395
|
+
}, _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, {
|
|
10114
10396
|
method: "typia.assertGuard",
|
|
10115
10397
|
path: _path + ".type",
|
|
10116
10398
|
expected: "(\"assetTags\" | \"assetTypes\" | \"default\" | \"geopoint\" | \"poster\" | \"tags\" | \"textarea\")",
|
|
@@ -10120,26 +10402,11 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10120
10402
|
path: _path + ".readOnly",
|
|
10121
10403
|
expected: "(boolean | undefined)",
|
|
10122
10404
|
value: input.readOnly
|
|
10123
|
-
}, _errorFactory)); const
|
|
10124
|
-
method: "typia.assertGuard",
|
|
10125
|
-
path: _path + ".__context",
|
|
10126
|
-
expected: "object",
|
|
10127
|
-
value: input.__context
|
|
10128
|
-
}, _errorFactory)) && _ao9(input.__context, _path + ".__context", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10129
|
-
method: "typia.assertGuard",
|
|
10130
|
-
path: _path + ".__context",
|
|
10131
|
-
expected: "object",
|
|
10132
|
-
value: input.__context
|
|
10133
|
-
}, _errorFactory)) && ("string" === typeof input.__returnValue || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10134
|
-
method: "typia.assertGuard",
|
|
10135
|
-
path: _path + ".__returnValue",
|
|
10136
|
-
expected: "string",
|
|
10137
|
-
value: input.__returnValue
|
|
10138
|
-
}, _errorFactory)); const _ao9 = (input, _path, _exceptionable = true) => true; const _au0 = (input, _path, _exceptionable = true) => (() => {
|
|
10405
|
+
}, _errorFactory)); const _au0 = (input, _path, _exceptionable = true) => (() => {
|
|
10139
10406
|
if (undefined !== input.type)
|
|
10140
|
-
return
|
|
10407
|
+
return _ao7(input, _path, true && _exceptionable);
|
|
10141
10408
|
else if (undefined !== input.property)
|
|
10142
|
-
return
|
|
10409
|
+
return _ao8(input, _path, true && _exceptionable);
|
|
10143
10410
|
else
|
|
10144
10411
|
return __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10145
10412
|
method: "typia.assertGuard",
|
|
@@ -10147,29 +10414,29 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10147
10414
|
expected: "(PanelLayoutDivider | PanelLayoutItem)",
|
|
10148
10415
|
value: input
|
|
10149
10416
|
}, _errorFactory);
|
|
10150
|
-
})(); const _aa0 = (input, _path, _exceptionable = true) => input.every((elem,
|
|
10417
|
+
})(); const _aa0 = (input, _path, _exceptionable = true) => input.every((elem, _index8) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10151
10418
|
method: "typia.assertGuard",
|
|
10152
|
-
path: _path + "[" +
|
|
10419
|
+
path: _path + "[" + _index8 + "]",
|
|
10153
10420
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string)",
|
|
10154
10421
|
value: elem
|
|
10155
10422
|
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10156
10423
|
method: "typia.assertGuard",
|
|
10157
|
-
path: _path + "[" +
|
|
10424
|
+
path: _path + "[" + _index8 + "]",
|
|
10158
10425
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string)",
|
|
10159
10426
|
value: elem
|
|
10160
|
-
}, _errorFactory)) && ("string" === typeof elem || (Array.isArray(elem) && (_aa0(elem, _path + "[" +
|
|
10427
|
+
}, _errorFactory)) && ("string" === typeof elem || (Array.isArray(elem) && (_aa0(elem, _path + "[" + _index8 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10161
10428
|
method: "typia.assertGuard",
|
|
10162
|
-
path: _path + "[" +
|
|
10429
|
+
path: _path + "[" + _index8 + "]",
|
|
10163
10430
|
expected: "Array<PanelLayout>",
|
|
10164
10431
|
value: elem
|
|
10165
|
-
}, _errorFactory)) || "object" === typeof elem && null !== elem && _au0(elem, _path + "[" +
|
|
10432
|
+
}, _errorFactory)) || "object" === typeof elem && null !== elem && _au0(elem, _path + "[" + _index8 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10166
10433
|
method: "typia.assertGuard",
|
|
10167
|
-
path: _path + "[" +
|
|
10434
|
+
path: _path + "[" + _index8 + "]",
|
|
10168
10435
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string)",
|
|
10169
10436
|
value: elem
|
|
10170
10437
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10171
10438
|
method: "typia.assertGuard",
|
|
10172
|
-
path: _path + "[" +
|
|
10439
|
+
path: _path + "[" + _index8 + "]",
|
|
10173
10440
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string)",
|
|
10174
10441
|
value: elem
|
|
10175
10442
|
}, _errorFactory))); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
@@ -13032,41 +13299,66 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
13032
13299
|
}; })()(input);
|
|
13033
13300
|
}
|
|
13034
13301
|
case ":published": {
|
|
13035
|
-
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, {
|
|
13302
|
+
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, {
|
|
13036
13303
|
method: "typia.assertGuard",
|
|
13037
13304
|
path: _path + ".type",
|
|
13038
13305
|
expected: "string",
|
|
13039
13306
|
value: input.type
|
|
13040
|
-
}, _errorFactory)) && ("string" === typeof input.parent || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13307
|
+
}, _errorFactory)) && (undefined === input.parent || "string" === typeof input.parent || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13041
13308
|
method: "typia.assertGuard",
|
|
13042
13309
|
path: _path + ".parent",
|
|
13043
|
-
expected: "string",
|
|
13310
|
+
expected: "(string | undefined)",
|
|
13044
13311
|
value: input.parent
|
|
13045
|
-
}, _errorFactory)) && ((
|
|
13312
|
+
}, _errorFactory)) && ((null !== input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13046
13313
|
method: "typia.assertGuard",
|
|
13047
13314
|
path: _path + ".asset",
|
|
13048
|
-
expected: "Array<string>",
|
|
13315
|
+
expected: "(Array<string> | string | undefined)",
|
|
13316
|
+
value: input.asset
|
|
13317
|
+
}, _errorFactory)) && (undefined === input.asset || "string" === typeof input.asset || (Array.isArray(input.asset) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13318
|
+
method: "typia.assertGuard",
|
|
13319
|
+
path: _path + ".asset",
|
|
13320
|
+
expected: "(Array<string> | string | undefined)",
|
|
13049
13321
|
value: input.asset
|
|
13050
|
-
}, _errorFactory)) && input.asset.every((elem,
|
|
13322
|
+
}, _errorFactory)) && input.asset.every((elem, _index3) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13051
13323
|
method: "typia.assertGuard",
|
|
13052
|
-
path: _path + ".asset[" +
|
|
13324
|
+
path: _path + ".asset[" + _index3 + "]",
|
|
13053
13325
|
expected: "string",
|
|
13054
13326
|
value: elem
|
|
13055
13327
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13056
13328
|
method: "typia.assertGuard",
|
|
13057
13329
|
path: _path + ".asset",
|
|
13058
|
-
expected: "Array<string>",
|
|
13330
|
+
expected: "(Array<string> | string | undefined)",
|
|
13059
13331
|
value: input.asset
|
|
13332
|
+
}, _errorFactory))) && (undefined === input.assets || (Array.isArray(input.assets) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13333
|
+
method: "typia.assertGuard",
|
|
13334
|
+
path: _path + ".assets",
|
|
13335
|
+
expected: "(Array<string> | undefined)",
|
|
13336
|
+
value: input.assets
|
|
13337
|
+
}, _errorFactory)) && input.assets.every((elem, _index4) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13338
|
+
method: "typia.assertGuard",
|
|
13339
|
+
path: _path + ".assets[" + _index4 + "]",
|
|
13340
|
+
expected: "string",
|
|
13341
|
+
value: elem
|
|
13342
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13343
|
+
method: "typia.assertGuard",
|
|
13344
|
+
path: _path + ".assets",
|
|
13345
|
+
expected: "(Array<string> | undefined)",
|
|
13346
|
+
value: input.assets
|
|
13060
13347
|
}, _errorFactory)) && ("number" === typeof input.time || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13061
13348
|
method: "typia.assertGuard",
|
|
13062
13349
|
path: _path + ".time",
|
|
13063
13350
|
expected: "number",
|
|
13064
13351
|
value: input.time
|
|
13065
|
-
}, _errorFactory)) && ("string" === typeof input.connection || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13352
|
+
}, _errorFactory)) && (undefined === input.connection || "string" === typeof input.connection || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13066
13353
|
method: "typia.assertGuard",
|
|
13067
13354
|
path: _path + ".connection",
|
|
13068
|
-
expected: "string",
|
|
13355
|
+
expected: "(string | undefined)",
|
|
13069
13356
|
value: input.connection
|
|
13357
|
+
}, _errorFactory)) && (undefined === input.gallery || "string" === typeof input.gallery || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13358
|
+
method: "typia.assertGuard",
|
|
13359
|
+
path: _path + ".gallery",
|
|
13360
|
+
expected: "(string | undefined)",
|
|
13361
|
+
value: input.gallery
|
|
13070
13362
|
}, _errorFactory)) && (undefined === input.user || "string" === typeof input.user || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13071
13363
|
method: "typia.assertGuard",
|
|
13072
13364
|
path: _path + ".user",
|
|
@@ -14365,12 +14657,42 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14365
14657
|
}; })()(input);
|
|
14366
14658
|
}
|
|
14367
14659
|
case ":script": {
|
|
14368
|
-
return (() => { const _io0 = input => "string" === typeof input.value; const _ao0 = (input, _path, _exceptionable = true) => "string" === typeof input.value || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14660
|
+
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, {
|
|
14369
14661
|
method: "typia.assertGuard",
|
|
14370
14662
|
path: _path + ".value",
|
|
14371
14663
|
expected: "string",
|
|
14372
14664
|
value: input.value
|
|
14373
|
-
}, _errorFactory)
|
|
14665
|
+
}, _errorFactory)) && (undefined === input.refs || (Array.isArray(input.refs) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14666
|
+
method: "typia.assertGuard",
|
|
14667
|
+
path: _path + ".refs",
|
|
14668
|
+
expected: "(Array<__type> | undefined)",
|
|
14669
|
+
value: input.refs
|
|
14670
|
+
}, _errorFactory)) && input.refs.every((elem, _index2) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14671
|
+
method: "typia.assertGuard",
|
|
14672
|
+
path: _path + ".refs[" + _index2 + "]",
|
|
14673
|
+
expected: "__type",
|
|
14674
|
+
value: elem
|
|
14675
|
+
}, _errorFactory)) && _ao1(elem, _path + ".refs[" + _index2 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14676
|
+
method: "typia.assertGuard",
|
|
14677
|
+
path: _path + ".refs[" + _index2 + "]",
|
|
14678
|
+
expected: "__type",
|
|
14679
|
+
value: elem
|
|
14680
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14681
|
+
method: "typia.assertGuard",
|
|
14682
|
+
path: _path + ".refs",
|
|
14683
|
+
expected: "(Array<__type> | undefined)",
|
|
14684
|
+
value: input.refs
|
|
14685
|
+
}, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => ("string" === typeof input.mixin || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14686
|
+
method: "typia.assertGuard",
|
|
14687
|
+
path: _path + ".mixin",
|
|
14688
|
+
expected: "string",
|
|
14689
|
+
value: input.mixin
|
|
14690
|
+
}, _errorFactory)) && (undefined === input.asset || "string" === typeof input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14691
|
+
method: "typia.assertGuard",
|
|
14692
|
+
path: _path + ".asset",
|
|
14693
|
+
expected: "(string | undefined)",
|
|
14694
|
+
value: input.asset
|
|
14695
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
14374
14696
|
if (false === __is(input)) {
|
|
14375
14697
|
_errorFactory = errorFactory;
|
|
14376
14698
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || __typia_transform__assertGuard._assertGuard(true, {
|
|
@@ -15136,29 +15458,29 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15136
15458
|
}; })()(input);
|
|
15137
15459
|
}
|
|
15138
15460
|
case ":search": {
|
|
15139
|
-
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 => {
|
|
15461
|
+
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 => {
|
|
15140
15462
|
const value = input[key];
|
|
15141
15463
|
if (undefined === value)
|
|
15142
15464
|
return true;
|
|
15143
15465
|
return "asc" === value || "desc" === value;
|
|
15144
|
-
}); const _ao0 = (input, _path, _exceptionable = true) => (undefined === input.type || "conditions_and" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15466
|
+
}); 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, {
|
|
15145
15467
|
method: "typia.assertGuard",
|
|
15146
15468
|
path: _path + ".type",
|
|
15147
|
-
expected: "(\"conditions_and\" | undefined)",
|
|
15469
|
+
expected: "(\"conditions_and\" | \"conditions_or\" | undefined)",
|
|
15148
15470
|
value: input.type
|
|
15149
15471
|
}, _errorFactory)) && (undefined === input.sort || (Array.isArray(input.sort) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15150
15472
|
method: "typia.assertGuard",
|
|
15151
15473
|
path: _path + ".sort",
|
|
15152
15474
|
expected: "(Array<__type> | undefined)",
|
|
15153
15475
|
value: input.sort
|
|
15154
|
-
}, _errorFactory)) && input.sort.every((elem,
|
|
15476
|
+
}, _errorFactory)) && input.sort.every((elem, _index4) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15155
15477
|
method: "typia.assertGuard",
|
|
15156
|
-
path: _path + ".sort[" +
|
|
15478
|
+
path: _path + ".sort[" + _index4 + "]",
|
|
15157
15479
|
expected: "__type",
|
|
15158
15480
|
value: elem
|
|
15159
|
-
}, _errorFactory)) && _ao1(elem, _path + ".sort[" +
|
|
15481
|
+
}, _errorFactory)) && _ao1(elem, _path + ".sort[" + _index4 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15160
15482
|
method: "typia.assertGuard",
|
|
15161
|
-
path: _path + ".sort[" +
|
|
15483
|
+
path: _path + ".sort[" + _index4 + "]",
|
|
15162
15484
|
expected: "__type",
|
|
15163
15485
|
value: elem
|
|
15164
15486
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15181,24 +15503,39 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15181
15503
|
path: _path + ".showHidden",
|
|
15182
15504
|
expected: "(boolean | undefined)",
|
|
15183
15505
|
value: input.showHidden
|
|
15184
|
-
}, _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, {
|
|
15506
|
+
}, _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, {
|
|
15185
15507
|
method: "typia.assertGuard",
|
|
15186
15508
|
path: _path + ".view",
|
|
15187
|
-
expected: "(\"AGENDA_VIEW\" | \"CALENDAR_VIEW\" | \"GRID_VIEW\" | \"LIST_VIEW\" | \"MAP_VIEW\" | \"RESOURCE_VIEW\" | undefined)",
|
|
15509
|
+
expected: "(\"AGENDA_VIEW\" | \"CALENDAR_VIEW\" | \"GRID_VIEW\" | \"LIST_VIEW\" | \"MAP_VIEW\" | \"RESOURCE_VIEW\" | null | undefined)",
|
|
15188
15510
|
value: input.view
|
|
15189
|
-
}, _errorFactory)) && (undefined === input.conditions || Array.isArray(input.conditions) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15511
|
+
}, _errorFactory)) && (undefined === input.conditions || (Array.isArray(input.conditions) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15512
|
+
method: "typia.assertGuard",
|
|
15513
|
+
path: _path + ".conditions",
|
|
15514
|
+
expected: "(Array<SearchCondition> | undefined)",
|
|
15515
|
+
value: input.conditions
|
|
15516
|
+
}, _errorFactory)) && input.conditions.every((elem, _index5) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15517
|
+
method: "typia.assertGuard",
|
|
15518
|
+
path: _path + ".conditions[" + _index5 + "]",
|
|
15519
|
+
expected: "SearchCondition",
|
|
15520
|
+
value: elem
|
|
15521
|
+
}, _errorFactory)) && _ao2(elem, _path + ".conditions[" + _index5 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15522
|
+
method: "typia.assertGuard",
|
|
15523
|
+
path: _path + ".conditions[" + _index5 + "]",
|
|
15524
|
+
expected: "SearchCondition",
|
|
15525
|
+
value: elem
|
|
15526
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15190
15527
|
method: "typia.assertGuard",
|
|
15191
15528
|
path: _path + ".conditions",
|
|
15192
|
-
expected: "(Array<
|
|
15529
|
+
expected: "(Array<SearchCondition> | undefined)",
|
|
15193
15530
|
value: input.conditions
|
|
15194
15531
|
}, _errorFactory)) && (null === input.visibleColumnKeys || undefined === input.visibleColumnKeys || (Array.isArray(input.visibleColumnKeys) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15195
15532
|
method: "typia.assertGuard",
|
|
15196
15533
|
path: _path + ".visibleColumnKeys",
|
|
15197
15534
|
expected: "(Array<string> | null | undefined)",
|
|
15198
15535
|
value: input.visibleColumnKeys
|
|
15199
|
-
}, _errorFactory)) && input.visibleColumnKeys.every((elem,
|
|
15536
|
+
}, _errorFactory)) && input.visibleColumnKeys.every((elem, _index6) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15200
15537
|
method: "typia.assertGuard",
|
|
15201
|
-
path: _path + ".visibleColumnKeys[" +
|
|
15538
|
+
path: _path + ".visibleColumnKeys[" + _index6 + "]",
|
|
15202
15539
|
expected: "string",
|
|
15203
15540
|
value: elem
|
|
15204
15541
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15211,6 +15548,31 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15211
15548
|
path: _path + ".connectionId",
|
|
15212
15549
|
expected: "(null | string | undefined)",
|
|
15213
15550
|
value: input.connectionId
|
|
15551
|
+
}, _errorFactory)) && (undefined === input.calendar || ("object" === typeof input.calendar && null !== input.calendar && false === Array.isArray(input.calendar) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15552
|
+
method: "typia.assertGuard",
|
|
15553
|
+
path: _path + ".calendar",
|
|
15554
|
+
expected: "(__type.o1 | undefined)",
|
|
15555
|
+
value: input.calendar
|
|
15556
|
+
}, _errorFactory)) && _ao3(input.calendar, _path + ".calendar", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15557
|
+
method: "typia.assertGuard",
|
|
15558
|
+
path: _path + ".calendar",
|
|
15559
|
+
expected: "(__type.o1 | undefined)",
|
|
15560
|
+
value: input.calendar
|
|
15561
|
+
}, _errorFactory)) && (undefined === input.refreshInterval || "number" === typeof input.refreshInterval || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15562
|
+
method: "typia.assertGuard",
|
|
15563
|
+
path: _path + ".refreshInterval",
|
|
15564
|
+
expected: "(number | undefined)",
|
|
15565
|
+
value: input.refreshInterval
|
|
15566
|
+
}, _errorFactory)) && (undefined === input.color || "string" === typeof input.color || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15567
|
+
method: "typia.assertGuard",
|
|
15568
|
+
path: _path + ".color",
|
|
15569
|
+
expected: "(string | undefined)",
|
|
15570
|
+
value: input.color
|
|
15571
|
+
}, _errorFactory)) && (undefined === input.icon || "string" === typeof input.icon || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15572
|
+
method: "typia.assertGuard",
|
|
15573
|
+
path: _path + ".icon",
|
|
15574
|
+
expected: "(string | undefined)",
|
|
15575
|
+
value: input.icon
|
|
15214
15576
|
}, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
15215
15577
|
const value = input[key];
|
|
15216
15578
|
if (undefined === value)
|
|
@@ -15221,7 +15583,37 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15221
15583
|
expected: "(\"asc\" | \"desc\")",
|
|
15222
15584
|
value: value
|
|
15223
15585
|
}, _errorFactory);
|
|
15224
|
-
}); const
|
|
15586
|
+
}); const _ao2 = (input, _path, _exceptionable = true) => (undefined === input.field || "string" === typeof input.field || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15587
|
+
method: "typia.assertGuard",
|
|
15588
|
+
path: _path + ".field",
|
|
15589
|
+
expected: "(string | undefined)",
|
|
15590
|
+
value: input.field
|
|
15591
|
+
}, _errorFactory)) && (undefined === input.type || "string" === typeof input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15592
|
+
method: "typia.assertGuard",
|
|
15593
|
+
path: _path + ".type",
|
|
15594
|
+
expected: "(string | undefined)",
|
|
15595
|
+
value: input.type
|
|
15596
|
+
}, _errorFactory)) && (undefined === input.op || "string" === typeof input.op || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15597
|
+
method: "typia.assertGuard",
|
|
15598
|
+
path: _path + ".op",
|
|
15599
|
+
expected: "(string | undefined)",
|
|
15600
|
+
value: input.op
|
|
15601
|
+
}, _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, {
|
|
15602
|
+
method: "typia.assertGuard",
|
|
15603
|
+
path: _path + ".view",
|
|
15604
|
+
expected: "(\"day\" | \"month\" | \"week\" | \"work_week\" | null | undefined)",
|
|
15605
|
+
value: input.view
|
|
15606
|
+
}, _errorFactory)) && (null === input.dateAccessor || undefined === input.dateAccessor || "string" === typeof input.dateAccessor || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15607
|
+
method: "typia.assertGuard",
|
|
15608
|
+
path: _path + ".dateAccessor",
|
|
15609
|
+
expected: "(null | string | undefined)",
|
|
15610
|
+
value: input.dateAccessor
|
|
15611
|
+
}, _errorFactory)) && (undefined === input.agenda || "boolean" === typeof input.agenda || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15612
|
+
method: "typia.assertGuard",
|
|
15613
|
+
path: _path + ".agenda",
|
|
15614
|
+
expected: "(boolean | undefined)",
|
|
15615
|
+
value: input.agenda
|
|
15616
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
15225
15617
|
if (false === __is(input)) {
|
|
15226
15618
|
_errorFactory = errorFactory;
|
|
15227
15619
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
@@ -15239,10 +15631,10 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15239
15631
|
}; })()(input);
|
|
15240
15632
|
}
|
|
15241
15633
|
case ":search?": {
|
|
15242
|
-
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, {
|
|
15634
|
+
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, {
|
|
15243
15635
|
method: "typia.assertGuard",
|
|
15244
15636
|
path: _path + ".hits",
|
|
15245
|
-
expected: "Array<string>",
|
|
15637
|
+
expected: "(Array<string> | undefined)",
|
|
15246
15638
|
value: input.hits
|
|
15247
15639
|
}, _errorFactory)) && input.hits.every((elem, _index2) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15248
15640
|
method: "typia.assertGuard",
|
|
@@ -15252,7 +15644,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15252
15644
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15253
15645
|
method: "typia.assertGuard",
|
|
15254
15646
|
path: _path + ".hits",
|
|
15255
|
-
expected: "Array<string>",
|
|
15647
|
+
expected: "(Array<string> | undefined)",
|
|
15256
15648
|
value: input.hits
|
|
15257
15649
|
}, _errorFactory)) && (undefined === input.total || "number" === typeof input.total || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15258
15650
|
method: "typia.assertGuard",
|
|
@@ -15269,10 +15661,10 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15269
15661
|
path: _path + ".error",
|
|
15270
15662
|
expected: "(string | undefined)",
|
|
15271
15663
|
value: input.error
|
|
15272
|
-
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
15664
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
15273
15665
|
if (false === __is(input)) {
|
|
15274
15666
|
_errorFactory = errorFactory;
|
|
15275
|
-
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || __typia_transform__assertGuard._assertGuard(true, {
|
|
15667
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
15276
15668
|
method: "typia.assertGuard",
|
|
15277
15669
|
path: _path + "",
|
|
15278
15670
|
expected: "SearchRecordProvided",
|
|
@@ -15286,85 +15678,151 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15286
15678
|
}
|
|
15287
15679
|
}; })()(input);
|
|
15288
15680
|
}
|
|
15681
|
+
case ":search.conditions": {
|
|
15682
|
+
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, {
|
|
15683
|
+
method: "typia.assertGuard",
|
|
15684
|
+
path: _path + ".value",
|
|
15685
|
+
expected: "(Array<string> | undefined)",
|
|
15686
|
+
value: input.value
|
|
15687
|
+
}, _errorFactory)) && input.value.every((elem, _index2) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15688
|
+
method: "typia.assertGuard",
|
|
15689
|
+
path: _path + ".value[" + _index2 + "]",
|
|
15690
|
+
expected: "string",
|
|
15691
|
+
value: elem
|
|
15692
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15693
|
+
method: "typia.assertGuard",
|
|
15694
|
+
path: _path + ".value",
|
|
15695
|
+
expected: "(Array<string> | undefined)",
|
|
15696
|
+
value: input.value
|
|
15697
|
+
}, _errorFactory); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
15698
|
+
if (false === __is(input)) {
|
|
15699
|
+
_errorFactory = errorFactory;
|
|
15700
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
15701
|
+
method: "typia.assertGuard",
|
|
15702
|
+
path: _path + "",
|
|
15703
|
+
expected: "SearchDomainConditionsRecord",
|
|
15704
|
+
value: input
|
|
15705
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
15706
|
+
method: "typia.assertGuard",
|
|
15707
|
+
path: _path + "",
|
|
15708
|
+
expected: "SearchDomainConditionsRecord",
|
|
15709
|
+
value: input
|
|
15710
|
+
}, _errorFactory))(input, "$input", true);
|
|
15711
|
+
}
|
|
15712
|
+
}; })()(input);
|
|
15713
|
+
}
|
|
15714
|
+
case ":search.visibleColumnKeys": {
|
|
15715
|
+
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, {
|
|
15716
|
+
method: "typia.assertGuard",
|
|
15717
|
+
path: _path + ".value",
|
|
15718
|
+
expected: "(Array<string> | undefined)",
|
|
15719
|
+
value: input.value
|
|
15720
|
+
}, _errorFactory)) && input.value.every((elem, _index2) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15721
|
+
method: "typia.assertGuard",
|
|
15722
|
+
path: _path + ".value[" + _index2 + "]",
|
|
15723
|
+
expected: "string",
|
|
15724
|
+
value: elem
|
|
15725
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15726
|
+
method: "typia.assertGuard",
|
|
15727
|
+
path: _path + ".value",
|
|
15728
|
+
expected: "(Array<string> | undefined)",
|
|
15729
|
+
value: input.value
|
|
15730
|
+
}, _errorFactory); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
15731
|
+
if (false === __is(input)) {
|
|
15732
|
+
_errorFactory = errorFactory;
|
|
15733
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
15734
|
+
method: "typia.assertGuard",
|
|
15735
|
+
path: _path + "",
|
|
15736
|
+
expected: "SearchDomainVisibleColumnKeysRecord",
|
|
15737
|
+
value: input
|
|
15738
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
15739
|
+
method: "typia.assertGuard",
|
|
15740
|
+
path: _path + "",
|
|
15741
|
+
expected: "SearchDomainVisibleColumnKeysRecord",
|
|
15742
|
+
value: input
|
|
15743
|
+
}, _errorFactory))(input, "$input", true);
|
|
15744
|
+
}
|
|
15745
|
+
}; })()(input);
|
|
15746
|
+
}
|
|
15289
15747
|
case ":settings": {
|
|
15290
|
-
return (() => { const
|
|
15748
|
+
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 => {
|
|
15291
15749
|
if (["settingsPanelStore"].some(prop => key === prop))
|
|
15292
15750
|
return true;
|
|
15293
15751
|
const value = input[key];
|
|
15294
15752
|
if (undefined === value)
|
|
15295
15753
|
return true;
|
|
15296
15754
|
return undefined === value || "object" === typeof value && null !== value && false === Array.isArray(value) && _io5(value);
|
|
15297
|
-
}); 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) &&
|
|
15755
|
+
}); 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 => {
|
|
15298
15756
|
const value = input[key];
|
|
15299
15757
|
if (undefined === value)
|
|
15300
15758
|
return true;
|
|
15301
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15302
|
-
}); const
|
|
15759
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io24(value);
|
|
15760
|
+
}); 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 => {
|
|
15303
15761
|
const value = input[key];
|
|
15304
15762
|
if (undefined === value)
|
|
15305
15763
|
return true;
|
|
15306
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15307
|
-
}); const
|
|
15308
|
-
const value = input[key];
|
|
15309
|
-
if (undefined === value)
|
|
15310
|
-
return true;
|
|
15311
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io31(value);
|
|
15312
|
-
}); const _io31 = input => (undefined === input.title || "string" === typeof input.title) && (undefined === input.sequence || "string" === typeof input.sequence); const _io32 = input => Object.keys(input).every(key => {
|
|
15764
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io27(value);
|
|
15765
|
+
}); 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 => {
|
|
15313
15766
|
const value = input[key];
|
|
15314
15767
|
if (undefined === value)
|
|
15315
15768
|
return true;
|
|
15316
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15317
|
-
}); const _io33 = input => Object.keys(input).every(key => {
|
|
15769
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15770
|
+
}); 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 => {
|
|
15318
15771
|
const value = input[key];
|
|
15319
15772
|
if (undefined === value)
|
|
15320
15773
|
return true;
|
|
15321
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15774
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15322
15775
|
}); const _io34 = input => Object.keys(input).every(key => {
|
|
15323
15776
|
const value = input[key];
|
|
15324
15777
|
if (undefined === value)
|
|
15325
15778
|
return true;
|
|
15326
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15779
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15327
15780
|
}); const _io35 = input => Object.keys(input).every(key => {
|
|
15328
15781
|
const value = input[key];
|
|
15329
15782
|
if (undefined === value)
|
|
15330
15783
|
return true;
|
|
15331
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15784
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15332
15785
|
}); const _io36 = input => Object.keys(input).every(key => {
|
|
15333
15786
|
const value = input[key];
|
|
15334
15787
|
if (undefined === value)
|
|
15335
15788
|
return true;
|
|
15336
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15789
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15337
15790
|
}); const _io37 = input => Object.keys(input).every(key => {
|
|
15338
15791
|
const value = input[key];
|
|
15339
15792
|
if (undefined === value)
|
|
15340
15793
|
return true;
|
|
15341
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15794
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15342
15795
|
}); const _io38 = input => Object.keys(input).every(key => {
|
|
15343
15796
|
const value = input[key];
|
|
15344
15797
|
if (undefined === value)
|
|
15345
15798
|
return true;
|
|
15346
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15799
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15347
15800
|
}); const _io39 = input => Object.keys(input).every(key => {
|
|
15348
15801
|
const value = input[key];
|
|
15349
15802
|
if (undefined === value)
|
|
15350
15803
|
return true;
|
|
15351
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15804
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15352
15805
|
}); const _io40 = input => Object.keys(input).every(key => {
|
|
15353
15806
|
const value = input[key];
|
|
15354
15807
|
if (undefined === value)
|
|
15355
15808
|
return true;
|
|
15356
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15809
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15357
15810
|
}); const _io41 = input => Object.keys(input).every(key => {
|
|
15358
15811
|
const value = input[key];
|
|
15359
15812
|
if (undefined === value)
|
|
15360
15813
|
return true;
|
|
15361
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
15362
|
-
}); 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 => {
|
|
15814
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15815
|
+
}); const _io42 = input => Object.keys(input).every(key => {
|
|
15816
|
+
const value = input[key];
|
|
15817
|
+
if (undefined === value)
|
|
15818
|
+
return true;
|
|
15819
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io32(value);
|
|
15820
|
+
}); 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 => {
|
|
15363
15821
|
const value = input[key];
|
|
15364
15822
|
if (undefined === value)
|
|
15365
15823
|
return true;
|
|
15366
15824
|
return Array.isArray(value) && value.every(elem => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem);
|
|
15367
|
-
}); const _ao0 = (input, _path, _exceptionable = true) => (undefined === input.autoLogoutTime || "number" === typeof input.autoLogoutTime || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15825
|
+
}); 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, {
|
|
15368
15826
|
method: "typia.assertGuard",
|
|
15369
15827
|
path: _path + ".autoLogoutTime",
|
|
15370
15828
|
expected: "(number | undefined)",
|
|
@@ -15434,19 +15892,19 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15434
15892
|
path: _path + ".exclusiveTagGroups",
|
|
15435
15893
|
expected: "(Array<Array<string>> | undefined)",
|
|
15436
15894
|
value: input.exclusiveTagGroups
|
|
15437
|
-
}, _errorFactory)) && input.exclusiveTagGroups.every((elem,
|
|
15895
|
+
}, _errorFactory)) && input.exclusiveTagGroups.every((elem, _index33) => (Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15438
15896
|
method: "typia.assertGuard",
|
|
15439
|
-
path: _path + ".exclusiveTagGroups[" +
|
|
15897
|
+
path: _path + ".exclusiveTagGroups[" + _index33 + "]",
|
|
15440
15898
|
expected: "Array<string>",
|
|
15441
15899
|
value: elem
|
|
15442
|
-
}, _errorFactory)) && elem.every((elem,
|
|
15900
|
+
}, _errorFactory)) && elem.every((elem, _index34) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15443
15901
|
method: "typia.assertGuard",
|
|
15444
|
-
path: _path + ".exclusiveTagGroups[" +
|
|
15902
|
+
path: _path + ".exclusiveTagGroups[" + _index33 + "][" + _index34 + "]",
|
|
15445
15903
|
expected: "string",
|
|
15446
15904
|
value: elem
|
|
15447
15905
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15448
15906
|
method: "typia.assertGuard",
|
|
15449
|
-
path: _path + ".exclusiveTagGroups[" +
|
|
15907
|
+
path: _path + ".exclusiveTagGroups[" + _index33 + "]",
|
|
15450
15908
|
expected: "Array<string>",
|
|
15451
15909
|
value: elem
|
|
15452
15910
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15517,42 +15975,42 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15517
15975
|
}, _errorFactory)) && (undefined === input.script || ("object" === typeof input.script && null !== input.script && false === Array.isArray(input.script) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15518
15976
|
method: "typia.assertGuard",
|
|
15519
15977
|
path: _path + ".script",
|
|
15520
|
-
expected: "(__type.
|
|
15978
|
+
expected: "(__type.o16 | undefined)",
|
|
15521
15979
|
value: input.script
|
|
15522
|
-
}, _errorFactory)) &&
|
|
15980
|
+
}, _errorFactory)) && _ao20(input.script, _path + ".script", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15523
15981
|
method: "typia.assertGuard",
|
|
15524
15982
|
path: _path + ".script",
|
|
15525
|
-
expected: "(__type.
|
|
15983
|
+
expected: "(__type.o16 | undefined)",
|
|
15526
15984
|
value: input.script
|
|
15527
15985
|
}, _errorFactory)) && (undefined === input.events || ("object" === typeof input.events && null !== input.events && false === Array.isArray(input.events) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15528
15986
|
method: "typia.assertGuard",
|
|
15529
15987
|
path: _path + ".events",
|
|
15530
|
-
expected: "(__type.
|
|
15988
|
+
expected: "(__type.o20 | undefined)",
|
|
15531
15989
|
value: input.events
|
|
15532
|
-
}, _errorFactory)) &&
|
|
15990
|
+
}, _errorFactory)) && _ao25(input.events, _path + ".events", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15533
15991
|
method: "typia.assertGuard",
|
|
15534
15992
|
path: _path + ".events",
|
|
15535
|
-
expected: "(__type.
|
|
15993
|
+
expected: "(__type.o20 | undefined)",
|
|
15536
15994
|
value: input.events
|
|
15537
15995
|
}, _errorFactory)) && (undefined === input.rundown || ("object" === typeof input.rundown && null !== input.rundown && false === Array.isArray(input.rundown) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15538
15996
|
method: "typia.assertGuard",
|
|
15539
15997
|
path: _path + ".rundown",
|
|
15540
|
-
expected: "(__type.
|
|
15998
|
+
expected: "(__type.o22 | undefined)",
|
|
15541
15999
|
value: input.rundown
|
|
15542
|
-
}, _errorFactory)) &&
|
|
16000
|
+
}, _errorFactory)) && _ao28(input.rundown, _path + ".rundown", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15543
16001
|
method: "typia.assertGuard",
|
|
15544
16002
|
path: _path + ".rundown",
|
|
15545
|
-
expected: "(__type.
|
|
16003
|
+
expected: "(__type.o22 | undefined)",
|
|
15546
16004
|
value: input.rundown
|
|
15547
16005
|
}, _errorFactory)) && (undefined === input.gallery || ("object" === typeof input.gallery && null !== input.gallery && false === Array.isArray(input.gallery) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15548
16006
|
method: "typia.assertGuard",
|
|
15549
16007
|
path: _path + ".gallery",
|
|
15550
|
-
expected: "(__type.
|
|
16008
|
+
expected: "(__type.o23 | undefined)",
|
|
15551
16009
|
value: input.gallery
|
|
15552
|
-
}, _errorFactory)) &&
|
|
16010
|
+
}, _errorFactory)) && _ao29(input.gallery, _path + ".gallery", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15553
16011
|
method: "typia.assertGuard",
|
|
15554
16012
|
path: _path + ".gallery",
|
|
15555
|
-
expected: "(__type.
|
|
16013
|
+
expected: "(__type.o23 | undefined)",
|
|
15556
16014
|
value: input.gallery
|
|
15557
16015
|
}, _errorFactory)) && (undefined === input.history || "boolean" === typeof input.history || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15558
16016
|
method: "typia.assertGuard",
|
|
@@ -15562,47 +16020,47 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15562
16020
|
}, _errorFactory)) && (undefined === input.keymap || ("object" === typeof input.keymap && null !== input.keymap && false === Array.isArray(input.keymap) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15563
16021
|
method: "typia.assertGuard",
|
|
15564
16022
|
path: _path + ".keymap",
|
|
15565
|
-
expected: "(__type.
|
|
16023
|
+
expected: "(__type.o24 | undefined)",
|
|
15566
16024
|
value: input.keymap
|
|
15567
|
-
}, _errorFactory)) &&
|
|
16025
|
+
}, _errorFactory)) && _ao30(input.keymap, _path + ".keymap", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15568
16026
|
method: "typia.assertGuard",
|
|
15569
16027
|
path: _path + ".keymap",
|
|
15570
|
-
expected: "(__type.
|
|
16028
|
+
expected: "(__type.o24 | undefined)",
|
|
15571
16029
|
value: input.keymap
|
|
15572
16030
|
}, _errorFactory)) && (undefined === input.media || ("object" === typeof input.media && null !== input.media && false === Array.isArray(input.media) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15573
16031
|
method: "typia.assertGuard",
|
|
15574
16032
|
path: _path + ".media",
|
|
15575
|
-
expected: "(__type.
|
|
16033
|
+
expected: "(__type.o36 | undefined)",
|
|
15576
16034
|
value: input.media
|
|
15577
|
-
}, _errorFactory)) &&
|
|
16035
|
+
}, _errorFactory)) && _ao43(input.media, _path + ".media", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15578
16036
|
method: "typia.assertGuard",
|
|
15579
16037
|
path: _path + ".media",
|
|
15580
|
-
expected: "(__type.
|
|
16038
|
+
expected: "(__type.o36 | undefined)",
|
|
15581
16039
|
value: input.media
|
|
15582
16040
|
}, _errorFactory)) && (undefined === input.edit || ("object" === typeof input.edit && null !== input.edit && false === Array.isArray(input.edit) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15583
16041
|
method: "typia.assertGuard",
|
|
15584
16042
|
path: _path + ".edit",
|
|
15585
|
-
expected: "(__type.
|
|
16043
|
+
expected: "(__type.o49 | undefined)",
|
|
15586
16044
|
value: input.edit
|
|
15587
|
-
}, _errorFactory)) &&
|
|
16045
|
+
}, _errorFactory)) && _ao56(input.edit, _path + ".edit", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15588
16046
|
method: "typia.assertGuard",
|
|
15589
16047
|
path: _path + ".edit",
|
|
15590
|
-
expected: "(__type.
|
|
16048
|
+
expected: "(__type.o49 | undefined)",
|
|
15591
16049
|
value: input.edit
|
|
15592
16050
|
}, _errorFactory)) && (undefined === input.commands || (Array.isArray(input.commands) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15593
16051
|
method: "typia.assertGuard",
|
|
15594
16052
|
path: _path + ".commands",
|
|
15595
16053
|
expected: "(Array<__type>.o4 | undefined)",
|
|
15596
16054
|
value: input.commands
|
|
15597
|
-
}, _errorFactory)) && input.commands.every((elem,
|
|
16055
|
+
}, _errorFactory)) && input.commands.every((elem, _index35) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15598
16056
|
method: "typia.assertGuard",
|
|
15599
|
-
path: _path + ".commands[" +
|
|
15600
|
-
expected: "__type.
|
|
16057
|
+
path: _path + ".commands[" + _index35 + "]",
|
|
16058
|
+
expected: "__type.o51",
|
|
15601
16059
|
value: elem
|
|
15602
|
-
}, _errorFactory)) &&
|
|
16060
|
+
}, _errorFactory)) && _ao58(elem, _path + ".commands[" + _index35 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15603
16061
|
method: "typia.assertGuard",
|
|
15604
|
-
path: _path + ".commands[" +
|
|
15605
|
-
expected: "__type.
|
|
16062
|
+
path: _path + ".commands[" + _index35 + "]",
|
|
16063
|
+
expected: "__type.o51",
|
|
15606
16064
|
value: elem
|
|
15607
16065
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15608
16066
|
method: "typia.assertGuard",
|
|
@@ -15614,9 +16072,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15614
16072
|
path: _path + ".predefinedTags",
|
|
15615
16073
|
expected: "(Array<string> | undefined)",
|
|
15616
16074
|
value: input.predefinedTags
|
|
15617
|
-
}, _errorFactory)) && input.predefinedTags.every((elem,
|
|
16075
|
+
}, _errorFactory)) && input.predefinedTags.every((elem, _index36) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15618
16076
|
method: "typia.assertGuard",
|
|
15619
|
-
path: _path + ".predefinedTags[" +
|
|
16077
|
+
path: _path + ".predefinedTags[" + _index36 + "]",
|
|
15620
16078
|
expected: "string",
|
|
15621
16079
|
value: elem
|
|
15622
16080
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15627,37 +16085,37 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15627
16085
|
}, _errorFactory)) && (undefined === input.storyboard || ("object" === typeof input.storyboard && null !== input.storyboard && false === Array.isArray(input.storyboard) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15628
16086
|
method: "typia.assertGuard",
|
|
15629
16087
|
path: _path + ".storyboard",
|
|
15630
|
-
expected: "(__type.
|
|
16088
|
+
expected: "(__type.o52 | undefined)",
|
|
15631
16089
|
value: input.storyboard
|
|
15632
|
-
}, _errorFactory)) &&
|
|
16090
|
+
}, _errorFactory)) && _ao59(input.storyboard, _path + ".storyboard", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15633
16091
|
method: "typia.assertGuard",
|
|
15634
16092
|
path: _path + ".storyboard",
|
|
15635
|
-
expected: "(__type.
|
|
16093
|
+
expected: "(__type.o52 | undefined)",
|
|
15636
16094
|
value: input.storyboard
|
|
15637
16095
|
}, _errorFactory)) && (undefined === input.print || ("object" === typeof input.print && null !== input.print && false === Array.isArray(input.print) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15638
16096
|
method: "typia.assertGuard",
|
|
15639
16097
|
path: _path + ".print",
|
|
15640
|
-
expected: "(__type.
|
|
16098
|
+
expected: "(__type.o61 | undefined)",
|
|
15641
16099
|
value: input.print
|
|
15642
|
-
}, _errorFactory)) &&
|
|
16100
|
+
}, _errorFactory)) && _ao68(input.print, _path + ".print", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15643
16101
|
method: "typia.assertGuard",
|
|
15644
16102
|
path: _path + ".print",
|
|
15645
|
-
expected: "(__type.
|
|
16103
|
+
expected: "(__type.o61 | undefined)",
|
|
15646
16104
|
value: input.print
|
|
15647
16105
|
}, _errorFactory)) && (undefined === input.hiddenPreviews || (Array.isArray(input.hiddenPreviews) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15648
16106
|
method: "typia.assertGuard",
|
|
15649
16107
|
path: _path + ".hiddenPreviews",
|
|
15650
16108
|
expected: "(Array<__type>.o5 | undefined)",
|
|
15651
16109
|
value: input.hiddenPreviews
|
|
15652
|
-
}, _errorFactory)) && input.hiddenPreviews.every((elem,
|
|
16110
|
+
}, _errorFactory)) && input.hiddenPreviews.every((elem, _index37) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15653
16111
|
method: "typia.assertGuard",
|
|
15654
|
-
path: _path + ".hiddenPreviews[" +
|
|
15655
|
-
expected: "__type.
|
|
16112
|
+
path: _path + ".hiddenPreviews[" + _index37 + "]",
|
|
16113
|
+
expected: "__type.o62",
|
|
15656
16114
|
value: elem
|
|
15657
|
-
}, _errorFactory)) &&
|
|
16115
|
+
}, _errorFactory)) && _ao69(elem, _path + ".hiddenPreviews[" + _index37 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15658
16116
|
method: "typia.assertGuard",
|
|
15659
|
-
path: _path + ".hiddenPreviews[" +
|
|
15660
|
-
expected: "__type.
|
|
16117
|
+
path: _path + ".hiddenPreviews[" + _index37 + "]",
|
|
16118
|
+
expected: "__type.o62",
|
|
15661
16119
|
value: elem
|
|
15662
16120
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15663
16121
|
method: "typia.assertGuard",
|
|
@@ -15667,12 +16125,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15667
16125
|
}, _errorFactory)) && (undefined === input.plugins || ("object" === typeof input.plugins && null !== input.plugins && false === Array.isArray(input.plugins) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15668
16126
|
method: "typia.assertGuard",
|
|
15669
16127
|
path: _path + ".plugins",
|
|
15670
|
-
expected: "(__type.
|
|
16128
|
+
expected: "(__type.o63 | undefined)",
|
|
15671
16129
|
value: input.plugins
|
|
15672
|
-
}, _errorFactory)) &&
|
|
16130
|
+
}, _errorFactory)) && _ao70(input.plugins, _path + ".plugins", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15673
16131
|
method: "typia.assertGuard",
|
|
15674
16132
|
path: _path + ".plugins",
|
|
15675
|
-
expected: "(__type.
|
|
16133
|
+
expected: "(__type.o63 | undefined)",
|
|
15676
16134
|
value: input.plugins
|
|
15677
16135
|
}, _errorFactory)) && (undefined === input.crashScreen || "boolean" === typeof input.crashScreen || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15678
16136
|
method: "typia.assertGuard",
|
|
@@ -15687,38 +16145,58 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15687
16145
|
}, _errorFactory)) && (undefined === input.featurePreview || ("object" === typeof input.featurePreview && null !== input.featurePreview && false === Array.isArray(input.featurePreview) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15688
16146
|
method: "typia.assertGuard",
|
|
15689
16147
|
path: _path + ".featurePreview",
|
|
15690
|
-
expected: "(__type.
|
|
16148
|
+
expected: "(__type.o66 | undefined)",
|
|
15691
16149
|
value: input.featurePreview
|
|
15692
|
-
}, _errorFactory)) &&
|
|
16150
|
+
}, _errorFactory)) && _ao73(input.featurePreview, _path + ".featurePreview", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15693
16151
|
method: "typia.assertGuard",
|
|
15694
16152
|
path: _path + ".featurePreview",
|
|
15695
|
-
expected: "(__type.
|
|
16153
|
+
expected: "(__type.o66 | undefined)",
|
|
15696
16154
|
value: input.featurePreview
|
|
15697
16155
|
}, _errorFactory)) && (undefined === input.flags || ("object" === typeof input.flags && null !== input.flags && false === Array.isArray(input.flags) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15698
16156
|
method: "typia.assertGuard",
|
|
15699
16157
|
path: _path + ".flags",
|
|
15700
|
-
expected: "(__type.
|
|
16158
|
+
expected: "(__type.o67 | undefined)",
|
|
15701
16159
|
value: input.flags
|
|
15702
|
-
}, _errorFactory)) &&
|
|
16160
|
+
}, _errorFactory)) && _ao74(input.flags, _path + ".flags", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15703
16161
|
method: "typia.assertGuard",
|
|
15704
16162
|
path: _path + ".flags",
|
|
15705
|
-
expected: "(__type.
|
|
16163
|
+
expected: "(__type.o67 | undefined)",
|
|
15706
16164
|
value: input.flags
|
|
15707
16165
|
}, _errorFactory)) && (undefined === input.notifications || ("object" === typeof input.notifications && null !== input.notifications && false === Array.isArray(input.notifications) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15708
16166
|
method: "typia.assertGuard",
|
|
15709
16167
|
path: _path + ".notifications",
|
|
15710
|
-
expected: "(__type.
|
|
16168
|
+
expected: "(__type.o68 | undefined)",
|
|
15711
16169
|
value: input.notifications
|
|
15712
|
-
}, _errorFactory)) &&
|
|
16170
|
+
}, _errorFactory)) && _ao75(input.notifications, _path + ".notifications", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15713
16171
|
method: "typia.assertGuard",
|
|
15714
16172
|
path: _path + ".notifications",
|
|
15715
|
-
expected: "(__type.
|
|
16173
|
+
expected: "(__type.o68 | undefined)",
|
|
15716
16174
|
value: input.notifications
|
|
15717
16175
|
}, _errorFactory)) && (undefined === input.suppressDeleteAlert || "boolean" === typeof input.suppressDeleteAlert || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15718
16176
|
method: "typia.assertGuard",
|
|
15719
16177
|
path: _path + ".suppressDeleteAlert",
|
|
15720
16178
|
expected: "(boolean | undefined)",
|
|
15721
16179
|
value: input.suppressDeleteAlert
|
|
16180
|
+
}, _errorFactory)) && (undefined === input.clone || ("object" === typeof input.clone && null !== input.clone && false === Array.isArray(input.clone) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16181
|
+
method: "typia.assertGuard",
|
|
16182
|
+
path: _path + ".clone",
|
|
16183
|
+
expected: "(__type.o71 | undefined)",
|
|
16184
|
+
value: input.clone
|
|
16185
|
+
}, _errorFactory)) && _ao78(input.clone, _path + ".clone", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16186
|
+
method: "typia.assertGuard",
|
|
16187
|
+
path: _path + ".clone",
|
|
16188
|
+
expected: "(__type.o71 | undefined)",
|
|
16189
|
+
value: input.clone
|
|
16190
|
+
}, _errorFactory)) && (undefined === input.utilsAssetEditorPanel || ("object" === typeof input.utilsAssetEditorPanel && null !== input.utilsAssetEditorPanel && false === Array.isArray(input.utilsAssetEditorPanel) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16191
|
+
method: "typia.assertGuard",
|
|
16192
|
+
path: _path + ".utilsAssetEditorPanel",
|
|
16193
|
+
expected: "(__type.o73 | undefined)",
|
|
16194
|
+
value: input.utilsAssetEditorPanel
|
|
16195
|
+
}, _errorFactory)) && _ao80(input.utilsAssetEditorPanel, _path + ".utilsAssetEditorPanel", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16196
|
+
method: "typia.assertGuard",
|
|
16197
|
+
path: _path + ".utilsAssetEditorPanel",
|
|
16198
|
+
expected: "(__type.o73 | undefined)",
|
|
16199
|
+
value: input.utilsAssetEditorPanel
|
|
15722
16200
|
}, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => (undefined === input.overrideUserContact || "boolean" === typeof input.overrideUserContact || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15723
16201
|
method: "typia.assertGuard",
|
|
15724
16202
|
path: _path + ".overrideUserContact",
|
|
@@ -15729,7 +16207,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15729
16207
|
path: _path + ".overrideUserLogin",
|
|
15730
16208
|
expected: "(boolean | undefined)",
|
|
15731
16209
|
value: input.overrideUserLogin
|
|
15732
|
-
}, _errorFactory)); const _ao2 = (input, _path, _exceptionable = true) => undefined === input.
|
|
16210
|
+
}, _errorFactory)); const _ao2 = (input, _path, _exceptionable = true) => (undefined === input.editor || "string" === typeof input.editor || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16211
|
+
method: "typia.assertGuard",
|
|
16212
|
+
path: _path + ".editor",
|
|
16213
|
+
expected: "(string | undefined)",
|
|
16214
|
+
value: input.editor
|
|
16215
|
+
}, _errorFactory)) && (undefined === input.tabs || ("object" === typeof input.tabs && null !== input.tabs && false === Array.isArray(input.tabs) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15733
16216
|
method: "typia.assertGuard",
|
|
15734
16217
|
path: _path + ".tabs",
|
|
15735
16218
|
expected: "(ModuleTabs | undefined)",
|
|
@@ -15739,7 +16222,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15739
16222
|
path: _path + ".tabs",
|
|
15740
16223
|
expected: "(ModuleTabs | undefined)",
|
|
15741
16224
|
value: input.tabs
|
|
15742
|
-
}, _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, {
|
|
16225
|
+
}, _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, {
|
|
15743
16226
|
method: "typia.assertGuard",
|
|
15744
16227
|
path: _path + ".settingsPanelStore",
|
|
15745
16228
|
expected: "(SettingsPanelStoreTab | undefined)",
|
|
@@ -15771,17 +16254,27 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15771
16254
|
path: _path + ".activeSectionIndex",
|
|
15772
16255
|
expected: "(number | undefined)",
|
|
15773
16256
|
value: input.activeSectionIndex
|
|
15774
|
-
}, _errorFactory)) && (undefined === input.activeTab || "string" === typeof input.activeTab || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16257
|
+
}, _errorFactory)) && (null === input.activeTab || undefined === input.activeTab || "string" === typeof input.activeTab || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15775
16258
|
method: "typia.assertGuard",
|
|
15776
16259
|
path: _path + ".activeTab",
|
|
15777
|
-
expected: "(string | undefined)",
|
|
16260
|
+
expected: "(null | string | undefined)",
|
|
15778
16261
|
value: input.activeTab
|
|
15779
|
-
}, _errorFactory))
|
|
16262
|
+
}, _errorFactory)) && (undefined === input.priority || "number" === typeof input.priority || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16263
|
+
method: "typia.assertGuard",
|
|
16264
|
+
path: _path + ".priority",
|
|
16265
|
+
expected: "(number | undefined)",
|
|
16266
|
+
value: input.priority
|
|
16267
|
+
}, _errorFactory)); const _ao5 = (input, _path, _exceptionable = true) => (null === input.activeTab || undefined === input.activeTab || "string" === typeof input.activeTab || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15780
16268
|
method: "typia.assertGuard",
|
|
15781
16269
|
path: _path + ".activeTab",
|
|
15782
|
-
expected: "(string | undefined)",
|
|
16270
|
+
expected: "(null | string | undefined)",
|
|
15783
16271
|
value: input.activeTab
|
|
15784
|
-
}, _errorFactory)
|
|
16272
|
+
}, _errorFactory)) && (undefined === input.priority || "number" === typeof input.priority || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16273
|
+
method: "typia.assertGuard",
|
|
16274
|
+
path: _path + ".priority",
|
|
16275
|
+
expected: "(number | undefined)",
|
|
16276
|
+
value: input.priority
|
|
16277
|
+
}, _errorFactory)); const _ao6 = (input, _path, _exceptionable = true) => (undefined === input.defaultGrouping || "" === input.defaultGrouping || "collection" === input.defaultGrouping || "stitch" === input.defaultGrouping || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15785
16278
|
method: "typia.assertGuard",
|
|
15786
16279
|
path: _path + ".defaultGrouping",
|
|
15787
16280
|
expected: "(\"\" | \"collection\" | \"stitch\" | undefined)",
|
|
@@ -15861,9 +16354,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15861
16354
|
path: _path + ".sortOrder",
|
|
15862
16355
|
expected: "(Array<string> | undefined)",
|
|
15863
16356
|
value: input.sortOrder
|
|
15864
|
-
}, _errorFactory)) && input.sortOrder.every((elem,
|
|
16357
|
+
}, _errorFactory)) && input.sortOrder.every((elem, _index38) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15865
16358
|
method: "typia.assertGuard",
|
|
15866
|
-
path: _path + ".sortOrder[" +
|
|
16359
|
+
path: _path + ".sortOrder[" + _index38 + "]",
|
|
15867
16360
|
expected: "string",
|
|
15868
16361
|
value: elem
|
|
15869
16362
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15871,14 +16364,29 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15871
16364
|
path: _path + ".sortOrder",
|
|
15872
16365
|
expected: "(Array<string> | undefined)",
|
|
15873
16366
|
value: input.sortOrder
|
|
15874
|
-
}, _errorFactory); const _ao12 = (input, _path, _exceptionable = true) => undefined === input.
|
|
16367
|
+
}, _errorFactory); const _ao12 = (input, _path, _exceptionable = true) => (undefined === input.include || (Array.isArray(input.include) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16368
|
+
method: "typia.assertGuard",
|
|
16369
|
+
path: _path + ".include",
|
|
16370
|
+
expected: "(Array<string> | undefined)",
|
|
16371
|
+
value: input.include
|
|
16372
|
+
}, _errorFactory)) && input.include.every((elem, _index39) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16373
|
+
method: "typia.assertGuard",
|
|
16374
|
+
path: _path + ".include[" + _index39 + "]",
|
|
16375
|
+
expected: "string",
|
|
16376
|
+
value: elem
|
|
16377
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16378
|
+
method: "typia.assertGuard",
|
|
16379
|
+
path: _path + ".include",
|
|
16380
|
+
expected: "(Array<string> | undefined)",
|
|
16381
|
+
value: input.include
|
|
16382
|
+
}, _errorFactory)) && (undefined === input.exclude || (Array.isArray(input.exclude) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15875
16383
|
method: "typia.assertGuard",
|
|
15876
16384
|
path: _path + ".exclude",
|
|
15877
16385
|
expected: "(Array<string> | undefined)",
|
|
15878
16386
|
value: input.exclude
|
|
15879
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
16387
|
+
}, _errorFactory)) && input.exclude.every((elem, _index40) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15880
16388
|
method: "typia.assertGuard",
|
|
15881
|
-
path: _path + ".exclude[" +
|
|
16389
|
+
path: _path + ".exclude[" + _index40 + "]",
|
|
15882
16390
|
expected: "string",
|
|
15883
16391
|
value: elem
|
|
15884
16392
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15886,14 +16394,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15886
16394
|
path: _path + ".exclude",
|
|
15887
16395
|
expected: "(Array<string> | undefined)",
|
|
15888
16396
|
value: input.exclude
|
|
15889
|
-
}, _errorFactory); const _ao13 = (input, _path, _exceptionable = true) => (undefined === input.include || (Array.isArray(input.include) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16397
|
+
}, _errorFactory)); const _ao13 = (input, _path, _exceptionable = true) => (undefined === input.include || (Array.isArray(input.include) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15890
16398
|
method: "typia.assertGuard",
|
|
15891
16399
|
path: _path + ".include",
|
|
15892
16400
|
expected: "(Array<string> | undefined)",
|
|
15893
16401
|
value: input.include
|
|
15894
|
-
}, _errorFactory)) && input.include.every((elem,
|
|
16402
|
+
}, _errorFactory)) && input.include.every((elem, _index41) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15895
16403
|
method: "typia.assertGuard",
|
|
15896
|
-
path: _path + ".include[" +
|
|
16404
|
+
path: _path + ".include[" + _index41 + "]",
|
|
15897
16405
|
expected: "string",
|
|
15898
16406
|
value: elem
|
|
15899
16407
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15906,9 +16414,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15906
16414
|
path: _path + ".exclude",
|
|
15907
16415
|
expected: "(Array<string> | undefined)",
|
|
15908
16416
|
value: input.exclude
|
|
15909
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
16417
|
+
}, _errorFactory)) && input.exclude.every((elem, _index42) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15910
16418
|
method: "typia.assertGuard",
|
|
15911
|
-
path: _path + ".exclude[" +
|
|
16419
|
+
path: _path + ".exclude[" + _index42 + "]",
|
|
15912
16420
|
expected: "string",
|
|
15913
16421
|
value: elem
|
|
15914
16422
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15921,9 +16429,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15921
16429
|
path: _path + ".include",
|
|
15922
16430
|
expected: "(Array<string> | undefined)",
|
|
15923
16431
|
value: input.include
|
|
15924
|
-
}, _errorFactory)) && input.include.every((elem,
|
|
16432
|
+
}, _errorFactory)) && input.include.every((elem, _index43) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15925
16433
|
method: "typia.assertGuard",
|
|
15926
|
-
path: _path + ".include[" +
|
|
16434
|
+
path: _path + ".include[" + _index43 + "]",
|
|
15927
16435
|
expected: "string",
|
|
15928
16436
|
value: elem
|
|
15929
16437
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15936,9 +16444,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15936
16444
|
path: _path + ".exclude",
|
|
15937
16445
|
expected: "(Array<string> | undefined)",
|
|
15938
16446
|
value: input.exclude
|
|
15939
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
16447
|
+
}, _errorFactory)) && input.exclude.every((elem, _index44) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15940
16448
|
method: "typia.assertGuard",
|
|
15941
|
-
path: _path + ".exclude[" +
|
|
16449
|
+
path: _path + ".exclude[" + _index44 + "]",
|
|
15942
16450
|
expected: "string",
|
|
15943
16451
|
value: elem
|
|
15944
16452
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15951,9 +16459,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15951
16459
|
path: _path + ".include",
|
|
15952
16460
|
expected: "(Array<string> | undefined)",
|
|
15953
16461
|
value: input.include
|
|
15954
|
-
}, _errorFactory)) && input.include.every((elem,
|
|
16462
|
+
}, _errorFactory)) && input.include.every((elem, _index45) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15955
16463
|
method: "typia.assertGuard",
|
|
15956
|
-
path: _path + ".include[" +
|
|
16464
|
+
path: _path + ".include[" + _index45 + "]",
|
|
15957
16465
|
expected: "string",
|
|
15958
16466
|
value: elem
|
|
15959
16467
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15966,9 +16474,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15966
16474
|
path: _path + ".exclude",
|
|
15967
16475
|
expected: "(Array<string> | undefined)",
|
|
15968
16476
|
value: input.exclude
|
|
15969
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
16477
|
+
}, _errorFactory)) && input.exclude.every((elem, _index46) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15970
16478
|
method: "typia.assertGuard",
|
|
15971
|
-
path: _path + ".exclude[" +
|
|
16479
|
+
path: _path + ".exclude[" + _index46 + "]",
|
|
15972
16480
|
expected: "string",
|
|
15973
16481
|
value: elem
|
|
15974
16482
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16031,29 +16539,49 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16031
16539
|
path: _path + ".maxTabs",
|
|
16032
16540
|
expected: "(number | undefined)",
|
|
16033
16541
|
value: input.maxTabs
|
|
16034
|
-
}, _errorFactory))
|
|
16542
|
+
}, _errorFactory)) && (undefined === input.layout || ("object" === typeof input.layout && null !== input.layout && false === Array.isArray(input.layout) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16035
16543
|
method: "typia.assertGuard",
|
|
16036
|
-
path: _path + ".
|
|
16037
|
-
expected: "(__type.
|
|
16038
|
-
value: input.
|
|
16039
|
-
}, _errorFactory)) &&
|
|
16544
|
+
path: _path + ".layout",
|
|
16545
|
+
expected: "(__type.o15 | undefined)",
|
|
16546
|
+
value: input.layout
|
|
16547
|
+
}, _errorFactory)) && _ao19(input.layout, _path + ".layout", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16040
16548
|
method: "typia.assertGuard",
|
|
16041
|
-
path: _path + ".
|
|
16042
|
-
expected: "(__type.
|
|
16043
|
-
value: input.
|
|
16549
|
+
path: _path + ".layout",
|
|
16550
|
+
expected: "(__type.o15 | undefined)",
|
|
16551
|
+
value: input.layout
|
|
16552
|
+
}, _errorFactory)); const _ao19 = (input, _path, _exceptionable = true) => (undefined === input.bookmarks || "number" === typeof input.bookmarks || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16553
|
+
method: "typia.assertGuard",
|
|
16554
|
+
path: _path + ".bookmarks",
|
|
16555
|
+
expected: "(number | undefined)",
|
|
16556
|
+
value: input.bookmarks
|
|
16557
|
+
}, _errorFactory)) && (undefined === input.browser || "number" === typeof input.browser || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16558
|
+
method: "typia.assertGuard",
|
|
16559
|
+
path: _path + ".browser",
|
|
16560
|
+
expected: "(number | undefined)",
|
|
16561
|
+
value: input.browser
|
|
16562
|
+
}, _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, {
|
|
16563
|
+
method: "typia.assertGuard",
|
|
16564
|
+
path: _path + ".createMenu",
|
|
16565
|
+
expected: "(__type.o17 | undefined)",
|
|
16566
|
+
value: input.createMenu
|
|
16567
|
+
}, _errorFactory)) && _ao21(input.createMenu, _path + ".createMenu", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16568
|
+
method: "typia.assertGuard",
|
|
16569
|
+
path: _path + ".createMenu",
|
|
16570
|
+
expected: "(__type.o17 | undefined)",
|
|
16571
|
+
value: input.createMenu
|
|
16044
16572
|
}, _errorFactory)) && (undefined === input.colorTags || (Array.isArray(input.colorTags) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16045
16573
|
method: "typia.assertGuard",
|
|
16046
16574
|
path: _path + ".colorTags",
|
|
16047
16575
|
expected: "(Array<PromotedTag> | undefined)",
|
|
16048
16576
|
value: input.colorTags
|
|
16049
|
-
}, _errorFactory)) && input.colorTags.every((elem,
|
|
16577
|
+
}, _errorFactory)) && input.colorTags.every((elem, _index47) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16050
16578
|
method: "typia.assertGuard",
|
|
16051
|
-
path: _path + ".colorTags[" +
|
|
16579
|
+
path: _path + ".colorTags[" + _index47 + "]",
|
|
16052
16580
|
expected: "PromotedTag",
|
|
16053
16581
|
value: elem
|
|
16054
|
-
}, _errorFactory)) &&
|
|
16582
|
+
}, _errorFactory)) && _ao22(elem, _path + ".colorTags[" + _index47 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16055
16583
|
method: "typia.assertGuard",
|
|
16056
|
-
path: _path + ".colorTags[" +
|
|
16584
|
+
path: _path + ".colorTags[" + _index47 + "]",
|
|
16057
16585
|
expected: "PromotedTag",
|
|
16058
16586
|
value: elem
|
|
16059
16587
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16074,14 +16602,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16074
16602
|
}, _errorFactory)) && (undefined === input.collapsedNodes || ("object" === typeof input.collapsedNodes && null !== input.collapsedNodes && false === Array.isArray(input.collapsedNodes) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16075
16603
|
method: "typia.assertGuard",
|
|
16076
16604
|
path: _path + ".collapsedNodes",
|
|
16077
|
-
expected: "(__type.
|
|
16605
|
+
expected: "(__type.o18 | undefined)",
|
|
16078
16606
|
value: input.collapsedNodes
|
|
16079
|
-
}, _errorFactory)) &&
|
|
16607
|
+
}, _errorFactory)) && _ao23(input.collapsedNodes, _path + ".collapsedNodes", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16080
16608
|
method: "typia.assertGuard",
|
|
16081
16609
|
path: _path + ".collapsedNodes",
|
|
16082
|
-
expected: "(__type.
|
|
16610
|
+
expected: "(__type.o18 | undefined)",
|
|
16083
16611
|
value: input.collapsedNodes
|
|
16084
|
-
}, _errorFactory)); const
|
|
16612
|
+
}, _errorFactory)); const _ao21 = (input, _path, _exceptionable = true) => (undefined === input.sortBy || "index" === input.sortBy || "title" === input.sortBy || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16085
16613
|
method: "typia.assertGuard",
|
|
16086
16614
|
path: _path + ".sortBy",
|
|
16087
16615
|
expected: "(\"index\" | \"title\" | undefined)",
|
|
@@ -16091,7 +16619,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16091
16619
|
path: _path + ".showPreview",
|
|
16092
16620
|
expected: "(boolean | undefined)",
|
|
16093
16621
|
value: input.showPreview
|
|
16094
|
-
}, _errorFactory)); const
|
|
16622
|
+
}, _errorFactory)); const _ao22 = (input, _path, _exceptionable = true) => (null === input.name || "string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16095
16623
|
method: "typia.assertGuard",
|
|
16096
16624
|
path: _path + ".name",
|
|
16097
16625
|
expected: "(null | string)",
|
|
@@ -16111,22 +16639,22 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16111
16639
|
path: _path + ".description",
|
|
16112
16640
|
expected: "(null | string)",
|
|
16113
16641
|
value: input.description
|
|
16114
|
-
}, _errorFactory)); const
|
|
16642
|
+
}, _errorFactory)); const _ao23 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16115
16643
|
const value = input[key];
|
|
16116
16644
|
if (undefined === value)
|
|
16117
16645
|
return true;
|
|
16118
16646
|
return ("object" === typeof value && null !== value && false === Array.isArray(value) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16119
16647
|
method: "typia.assertGuard",
|
|
16120
16648
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16121
|
-
expected: "__type.
|
|
16649
|
+
expected: "__type.o19",
|
|
16122
16650
|
value: value
|
|
16123
|
-
}, _errorFactory)) &&
|
|
16651
|
+
}, _errorFactory)) && _ao24(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16124
16652
|
method: "typia.assertGuard",
|
|
16125
16653
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16126
|
-
expected: "__type.
|
|
16654
|
+
expected: "__type.o19",
|
|
16127
16655
|
value: value
|
|
16128
16656
|
}, _errorFactory);
|
|
16129
|
-
}); const
|
|
16657
|
+
}); const _ao24 = (input, _path, _exceptionable = true) => (undefined === input.preview || "boolean" === typeof input.preview || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16130
16658
|
method: "typia.assertGuard",
|
|
16131
16659
|
path: _path + ".preview",
|
|
16132
16660
|
expected: "(boolean | undefined)",
|
|
@@ -16136,7 +16664,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16136
16664
|
path: _path + ".children",
|
|
16137
16665
|
expected: "(boolean | undefined)",
|
|
16138
16666
|
value: input.children
|
|
16139
|
-
}, _errorFactory)); const
|
|
16667
|
+
}, _errorFactory)); const _ao25 = (input, _path, _exceptionable = true) => (undefined === input.graphicBaseTemplate || "string" === typeof input.graphicBaseTemplate || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16140
16668
|
method: "typia.assertGuard",
|
|
16141
16669
|
path: _path + ".graphicBaseTemplate",
|
|
16142
16670
|
expected: "(string | undefined)",
|
|
@@ -16146,9 +16674,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16146
16674
|
path: _path + ".favorites",
|
|
16147
16675
|
expected: "(Array<string> | undefined)",
|
|
16148
16676
|
value: input.favorites
|
|
16149
|
-
}, _errorFactory)) && input.favorites.every((elem,
|
|
16677
|
+
}, _errorFactory)) && input.favorites.every((elem, _index48) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16150
16678
|
method: "typia.assertGuard",
|
|
16151
|
-
path: _path + ".favorites[" +
|
|
16679
|
+
path: _path + ".favorites[" + _index48 + "]",
|
|
16152
16680
|
expected: "string",
|
|
16153
16681
|
value: elem
|
|
16154
16682
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16161,27 +16689,27 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16161
16689
|
path: _path + ".defaults",
|
|
16162
16690
|
expected: "(Record<string, __type> | undefined)",
|
|
16163
16691
|
value: input.defaults
|
|
16164
|
-
}, _errorFactory)) &&
|
|
16692
|
+
}, _errorFactory)) && _ao26(input.defaults, _path + ".defaults", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16165
16693
|
method: "typia.assertGuard",
|
|
16166
16694
|
path: _path + ".defaults",
|
|
16167
16695
|
expected: "(Record<string, __type> | undefined)",
|
|
16168
16696
|
value: input.defaults
|
|
16169
|
-
}, _errorFactory)); const
|
|
16697
|
+
}, _errorFactory)); const _ao26 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16170
16698
|
const value = input[key];
|
|
16171
16699
|
if (undefined === value)
|
|
16172
16700
|
return true;
|
|
16173
16701
|
return ("object" === typeof value && null !== value && false === Array.isArray(value) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16174
16702
|
method: "typia.assertGuard",
|
|
16175
16703
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16176
|
-
expected: "__type.
|
|
16704
|
+
expected: "__type.o21",
|
|
16177
16705
|
value: value
|
|
16178
|
-
}, _errorFactory)) &&
|
|
16706
|
+
}, _errorFactory)) && _ao27(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16179
16707
|
method: "typia.assertGuard",
|
|
16180
16708
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16181
|
-
expected: "__type.
|
|
16709
|
+
expected: "__type.o21",
|
|
16182
16710
|
value: value
|
|
16183
16711
|
}, _errorFactory);
|
|
16184
|
-
}); const
|
|
16712
|
+
}); const _ao27 = (input, _path, _exceptionable = true) => (undefined === input.event || "string" === typeof input.event || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16185
16713
|
method: "typia.assertGuard",
|
|
16186
16714
|
path: _path + ".event",
|
|
16187
16715
|
expected: "(string | undefined)",
|
|
@@ -16191,12 +16719,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16191
16719
|
path: _path + ".property",
|
|
16192
16720
|
expected: "(string | undefined)",
|
|
16193
16721
|
value: input.property
|
|
16194
|
-
}, _errorFactory)); const
|
|
16722
|
+
}, _errorFactory)); const _ao28 = (input, _path, _exceptionable = true) => undefined === input.eventThumbnails || "boolean" === typeof input.eventThumbnails || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16195
16723
|
method: "typia.assertGuard",
|
|
16196
16724
|
path: _path + ".eventThumbnails",
|
|
16197
16725
|
expected: "(boolean | undefined)",
|
|
16198
16726
|
value: input.eventThumbnails
|
|
16199
|
-
}, _errorFactory); const
|
|
16727
|
+
}, _errorFactory); const _ao29 = (input, _path, _exceptionable = true) => (undefined === input.dimOnBlur || "boolean" === typeof input.dimOnBlur || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16200
16728
|
method: "typia.assertGuard",
|
|
16201
16729
|
path: _path + ".dimOnBlur",
|
|
16202
16730
|
expected: "(boolean | undefined)",
|
|
@@ -16206,117 +16734,122 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16206
16734
|
path: _path + ".float",
|
|
16207
16735
|
expected: "(\"disabled\" | \"gallery\" | \"rundown\" | undefined)",
|
|
16208
16736
|
value: input.float
|
|
16209
|
-
}, _errorFactory))
|
|
16737
|
+
}, _errorFactory)) && (undefined === input.countFloatedDuration || "boolean" === typeof input.countFloatedDuration || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16738
|
+
method: "typia.assertGuard",
|
|
16739
|
+
path: _path + ".countFloatedDuration",
|
|
16740
|
+
expected: "(boolean | undefined)",
|
|
16741
|
+
value: input.countFloatedDuration
|
|
16742
|
+
}, _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, {
|
|
16210
16743
|
method: "typia.assertGuard",
|
|
16211
16744
|
path: _path + ".display",
|
|
16212
|
-
expected: "(__type.
|
|
16745
|
+
expected: "(__type.o25 | undefined)",
|
|
16213
16746
|
value: input.display
|
|
16214
|
-
}, _errorFactory)) &&
|
|
16747
|
+
}, _errorFactory)) && _ao31(input.display, _path + ".display", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16215
16748
|
method: "typia.assertGuard",
|
|
16216
16749
|
path: _path + ".display",
|
|
16217
|
-
expected: "(__type.
|
|
16750
|
+
expected: "(__type.o25 | undefined)",
|
|
16218
16751
|
value: input.display
|
|
16219
16752
|
}, _errorFactory)) && (undefined === input.browser || ("object" === typeof input.browser && null !== input.browser && false === Array.isArray(input.browser) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16220
16753
|
method: "typia.assertGuard",
|
|
16221
16754
|
path: _path + ".browser",
|
|
16222
|
-
expected: "(__type.
|
|
16755
|
+
expected: "(__type.o26 | undefined)",
|
|
16223
16756
|
value: input.browser
|
|
16224
|
-
}, _errorFactory)) &&
|
|
16757
|
+
}, _errorFactory)) && _ao33(input.browser, _path + ".browser", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16225
16758
|
method: "typia.assertGuard",
|
|
16226
16759
|
path: _path + ".browser",
|
|
16227
|
-
expected: "(__type.
|
|
16760
|
+
expected: "(__type.o26 | undefined)",
|
|
16228
16761
|
value: input.browser
|
|
16229
16762
|
}, _errorFactory)) && (undefined === input.gallery || ("object" === typeof input.gallery && null !== input.gallery && false === Array.isArray(input.gallery) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16230
16763
|
method: "typia.assertGuard",
|
|
16231
16764
|
path: _path + ".gallery",
|
|
16232
|
-
expected: "(__type.
|
|
16765
|
+
expected: "(__type.o27 | undefined)",
|
|
16233
16766
|
value: input.gallery
|
|
16234
|
-
}, _errorFactory)) &&
|
|
16767
|
+
}, _errorFactory)) && _ao34(input.gallery, _path + ".gallery", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16235
16768
|
method: "typia.assertGuard",
|
|
16236
16769
|
path: _path + ".gallery",
|
|
16237
|
-
expected: "(__type.
|
|
16770
|
+
expected: "(__type.o27 | undefined)",
|
|
16238
16771
|
value: input.gallery
|
|
16239
16772
|
}, _errorFactory)) && (undefined === input.global || ("object" === typeof input.global && null !== input.global && false === Array.isArray(input.global) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16240
16773
|
method: "typia.assertGuard",
|
|
16241
16774
|
path: _path + ".global",
|
|
16242
|
-
expected: "(__type.
|
|
16775
|
+
expected: "(__type.o28 | undefined)",
|
|
16243
16776
|
value: input.global
|
|
16244
|
-
}, _errorFactory)) &&
|
|
16777
|
+
}, _errorFactory)) && _ao35(input.global, _path + ".global", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16245
16778
|
method: "typia.assertGuard",
|
|
16246
16779
|
path: _path + ".global",
|
|
16247
|
-
expected: "(__type.
|
|
16780
|
+
expected: "(__type.o28 | undefined)",
|
|
16248
16781
|
value: input.global
|
|
16249
16782
|
}, _errorFactory)) && (undefined === input.player || ("object" === typeof input.player && null !== input.player && false === Array.isArray(input.player) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16250
16783
|
method: "typia.assertGuard",
|
|
16251
16784
|
path: _path + ".player",
|
|
16252
|
-
expected: "(__type.
|
|
16785
|
+
expected: "(__type.o29 | undefined)",
|
|
16253
16786
|
value: input.player
|
|
16254
|
-
}, _errorFactory)) &&
|
|
16787
|
+
}, _errorFactory)) && _ao36(input.player, _path + ".player", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16255
16788
|
method: "typia.assertGuard",
|
|
16256
16789
|
path: _path + ".player",
|
|
16257
|
-
expected: "(__type.
|
|
16790
|
+
expected: "(__type.o29 | undefined)",
|
|
16258
16791
|
value: input.player
|
|
16259
16792
|
}, _errorFactory)) && (undefined === input.script || ("object" === typeof input.script && null !== input.script && false === Array.isArray(input.script) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16260
16793
|
method: "typia.assertGuard",
|
|
16261
16794
|
path: _path + ".script",
|
|
16262
|
-
expected: "(__type.
|
|
16795
|
+
expected: "(__type.o30 | undefined)",
|
|
16263
16796
|
value: input.script
|
|
16264
|
-
}, _errorFactory)) &&
|
|
16797
|
+
}, _errorFactory)) && _ao37(input.script, _path + ".script", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16265
16798
|
method: "typia.assertGuard",
|
|
16266
16799
|
path: _path + ".script",
|
|
16267
|
-
expected: "(__type.
|
|
16800
|
+
expected: "(__type.o30 | undefined)",
|
|
16268
16801
|
value: input.script
|
|
16269
16802
|
}, _errorFactory)) && (undefined === input.codeEditor || ("object" === typeof input.codeEditor && null !== input.codeEditor && false === Array.isArray(input.codeEditor) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16270
16803
|
method: "typia.assertGuard",
|
|
16271
16804
|
path: _path + ".codeEditor",
|
|
16272
|
-
expected: "(__type.
|
|
16805
|
+
expected: "(__type.o31 | undefined)",
|
|
16273
16806
|
value: input.codeEditor
|
|
16274
|
-
}, _errorFactory)) &&
|
|
16807
|
+
}, _errorFactory)) && _ao38(input.codeEditor, _path + ".codeEditor", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16275
16808
|
method: "typia.assertGuard",
|
|
16276
16809
|
path: _path + ".codeEditor",
|
|
16277
|
-
expected: "(__type.
|
|
16810
|
+
expected: "(__type.o31 | undefined)",
|
|
16278
16811
|
value: input.codeEditor
|
|
16279
16812
|
}, _errorFactory)) && (undefined === input.bookmarks || ("object" === typeof input.bookmarks && null !== input.bookmarks && false === Array.isArray(input.bookmarks) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16280
16813
|
method: "typia.assertGuard",
|
|
16281
16814
|
path: _path + ".bookmarks",
|
|
16282
|
-
expected: "(__type.
|
|
16815
|
+
expected: "(__type.o32 | undefined)",
|
|
16283
16816
|
value: input.bookmarks
|
|
16284
|
-
}, _errorFactory)) &&
|
|
16817
|
+
}, _errorFactory)) && _ao39(input.bookmarks, _path + ".bookmarks", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16285
16818
|
method: "typia.assertGuard",
|
|
16286
16819
|
path: _path + ".bookmarks",
|
|
16287
|
-
expected: "(__type.
|
|
16820
|
+
expected: "(__type.o32 | undefined)",
|
|
16288
16821
|
value: input.bookmarks
|
|
16289
16822
|
}, _errorFactory)) && (undefined === input.edit || ("object" === typeof input.edit && null !== input.edit && false === Array.isArray(input.edit) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16290
16823
|
method: "typia.assertGuard",
|
|
16291
16824
|
path: _path + ".edit",
|
|
16292
|
-
expected: "(__type.
|
|
16825
|
+
expected: "(__type.o33 | undefined)",
|
|
16293
16826
|
value: input.edit
|
|
16294
|
-
}, _errorFactory)) &&
|
|
16827
|
+
}, _errorFactory)) && _ao40(input.edit, _path + ".edit", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16295
16828
|
method: "typia.assertGuard",
|
|
16296
16829
|
path: _path + ".edit",
|
|
16297
|
-
expected: "(__type.
|
|
16830
|
+
expected: "(__type.o33 | undefined)",
|
|
16298
16831
|
value: input.edit
|
|
16299
16832
|
}, _errorFactory)) && (undefined === input.rundown || ("object" === typeof input.rundown && null !== input.rundown && false === Array.isArray(input.rundown) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16300
16833
|
method: "typia.assertGuard",
|
|
16301
16834
|
path: _path + ".rundown",
|
|
16302
|
-
expected: "(__type.
|
|
16835
|
+
expected: "(__type.o34 | undefined)",
|
|
16303
16836
|
value: input.rundown
|
|
16304
|
-
}, _errorFactory)) &&
|
|
16837
|
+
}, _errorFactory)) && _ao41(input.rundown, _path + ".rundown", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16305
16838
|
method: "typia.assertGuard",
|
|
16306
16839
|
path: _path + ".rundown",
|
|
16307
|
-
expected: "(__type.
|
|
16840
|
+
expected: "(__type.o34 | undefined)",
|
|
16308
16841
|
value: input.rundown
|
|
16309
16842
|
}, _errorFactory)) && (undefined === input.segment || ("object" === typeof input.segment && null !== input.segment && false === Array.isArray(input.segment) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16310
16843
|
method: "typia.assertGuard",
|
|
16311
16844
|
path: _path + ".segment",
|
|
16312
|
-
expected: "(__type.
|
|
16845
|
+
expected: "(__type.o35 | undefined)",
|
|
16313
16846
|
value: input.segment
|
|
16314
|
-
}, _errorFactory)) &&
|
|
16847
|
+
}, _errorFactory)) && _ao42(input.segment, _path + ".segment", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16315
16848
|
method: "typia.assertGuard",
|
|
16316
16849
|
path: _path + ".segment",
|
|
16317
|
-
expected: "(__type.
|
|
16850
|
+
expected: "(__type.o35 | undefined)",
|
|
16318
16851
|
value: input.segment
|
|
16319
|
-
}, _errorFactory)); const
|
|
16852
|
+
}, _errorFactory)); const _ao31 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16320
16853
|
const value = input[key];
|
|
16321
16854
|
if (undefined === value)
|
|
16322
16855
|
return true;
|
|
@@ -16325,13 +16858,13 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16325
16858
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16326
16859
|
expected: "KeymapSetting",
|
|
16327
16860
|
value: value
|
|
16328
|
-
}, _errorFactory)) &&
|
|
16861
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16329
16862
|
method: "typia.assertGuard",
|
|
16330
16863
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16331
16864
|
expected: "KeymapSetting",
|
|
16332
16865
|
value: value
|
|
16333
16866
|
}, _errorFactory);
|
|
16334
|
-
}); const
|
|
16867
|
+
}); const _ao32 = (input, _path, _exceptionable = true) => (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16335
16868
|
method: "typia.assertGuard",
|
|
16336
16869
|
path: _path + ".title",
|
|
16337
16870
|
expected: "(string | undefined)",
|
|
@@ -16341,7 +16874,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16341
16874
|
path: _path + ".sequence",
|
|
16342
16875
|
expected: "(string | undefined)",
|
|
16343
16876
|
value: input.sequence
|
|
16344
|
-
}, _errorFactory)); const
|
|
16877
|
+
}, _errorFactory)); const _ao33 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16345
16878
|
const value = input[key];
|
|
16346
16879
|
if (undefined === value)
|
|
16347
16880
|
return true;
|
|
@@ -16350,13 +16883,13 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16350
16883
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16351
16884
|
expected: "KeymapSetting",
|
|
16352
16885
|
value: value
|
|
16353
|
-
}, _errorFactory)) &&
|
|
16886
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16354
16887
|
method: "typia.assertGuard",
|
|
16355
16888
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16356
16889
|
expected: "KeymapSetting",
|
|
16357
16890
|
value: value
|
|
16358
16891
|
}, _errorFactory);
|
|
16359
|
-
}); const
|
|
16892
|
+
}); const _ao34 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16360
16893
|
const value = input[key];
|
|
16361
16894
|
if (undefined === value)
|
|
16362
16895
|
return true;
|
|
@@ -16365,13 +16898,13 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16365
16898
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16366
16899
|
expected: "KeymapSetting",
|
|
16367
16900
|
value: value
|
|
16368
|
-
}, _errorFactory)) &&
|
|
16901
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16369
16902
|
method: "typia.assertGuard",
|
|
16370
16903
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16371
16904
|
expected: "KeymapSetting",
|
|
16372
16905
|
value: value
|
|
16373
16906
|
}, _errorFactory);
|
|
16374
|
-
}); const
|
|
16907
|
+
}); const _ao35 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16375
16908
|
const value = input[key];
|
|
16376
16909
|
if (undefined === value)
|
|
16377
16910
|
return true;
|
|
@@ -16380,13 +16913,13 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16380
16913
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16381
16914
|
expected: "KeymapSetting",
|
|
16382
16915
|
value: value
|
|
16383
|
-
}, _errorFactory)) &&
|
|
16916
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16384
16917
|
method: "typia.assertGuard",
|
|
16385
16918
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16386
16919
|
expected: "KeymapSetting",
|
|
16387
16920
|
value: value
|
|
16388
16921
|
}, _errorFactory);
|
|
16389
|
-
}); const
|
|
16922
|
+
}); const _ao36 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16390
16923
|
const value = input[key];
|
|
16391
16924
|
if (undefined === value)
|
|
16392
16925
|
return true;
|
|
@@ -16395,13 +16928,13 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16395
16928
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16396
16929
|
expected: "KeymapSetting",
|
|
16397
16930
|
value: value
|
|
16398
|
-
}, _errorFactory)) &&
|
|
16931
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16399
16932
|
method: "typia.assertGuard",
|
|
16400
16933
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16401
16934
|
expected: "KeymapSetting",
|
|
16402
16935
|
value: value
|
|
16403
16936
|
}, _errorFactory);
|
|
16404
|
-
}); const
|
|
16937
|
+
}); const _ao37 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16405
16938
|
const value = input[key];
|
|
16406
16939
|
if (undefined === value)
|
|
16407
16940
|
return true;
|
|
@@ -16410,13 +16943,13 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16410
16943
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16411
16944
|
expected: "KeymapSetting",
|
|
16412
16945
|
value: value
|
|
16413
|
-
}, _errorFactory)) &&
|
|
16946
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16414
16947
|
method: "typia.assertGuard",
|
|
16415
16948
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16416
16949
|
expected: "KeymapSetting",
|
|
16417
16950
|
value: value
|
|
16418
16951
|
}, _errorFactory);
|
|
16419
|
-
}); const
|
|
16952
|
+
}); const _ao38 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16420
16953
|
const value = input[key];
|
|
16421
16954
|
if (undefined === value)
|
|
16422
16955
|
return true;
|
|
@@ -16425,13 +16958,13 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16425
16958
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16426
16959
|
expected: "KeymapSetting",
|
|
16427
16960
|
value: value
|
|
16428
|
-
}, _errorFactory)) &&
|
|
16961
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16429
16962
|
method: "typia.assertGuard",
|
|
16430
16963
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16431
16964
|
expected: "KeymapSetting",
|
|
16432
16965
|
value: value
|
|
16433
16966
|
}, _errorFactory);
|
|
16434
|
-
}); const
|
|
16967
|
+
}); const _ao39 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16435
16968
|
const value = input[key];
|
|
16436
16969
|
if (undefined === value)
|
|
16437
16970
|
return true;
|
|
@@ -16440,13 +16973,13 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16440
16973
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16441
16974
|
expected: "KeymapSetting",
|
|
16442
16975
|
value: value
|
|
16443
|
-
}, _errorFactory)) &&
|
|
16976
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16444
16977
|
method: "typia.assertGuard",
|
|
16445
16978
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16446
16979
|
expected: "KeymapSetting",
|
|
16447
16980
|
value: value
|
|
16448
16981
|
}, _errorFactory);
|
|
16449
|
-
}); const
|
|
16982
|
+
}); const _ao40 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16450
16983
|
const value = input[key];
|
|
16451
16984
|
if (undefined === value)
|
|
16452
16985
|
return true;
|
|
@@ -16455,13 +16988,13 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16455
16988
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16456
16989
|
expected: "KeymapSetting",
|
|
16457
16990
|
value: value
|
|
16458
|
-
}, _errorFactory)) &&
|
|
16991
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16459
16992
|
method: "typia.assertGuard",
|
|
16460
16993
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16461
16994
|
expected: "KeymapSetting",
|
|
16462
16995
|
value: value
|
|
16463
16996
|
}, _errorFactory);
|
|
16464
|
-
}); const
|
|
16997
|
+
}); const _ao41 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16465
16998
|
const value = input[key];
|
|
16466
16999
|
if (undefined === value)
|
|
16467
17000
|
return true;
|
|
@@ -16470,13 +17003,13 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16470
17003
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16471
17004
|
expected: "KeymapSetting",
|
|
16472
17005
|
value: value
|
|
16473
|
-
}, _errorFactory)) &&
|
|
17006
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16474
17007
|
method: "typia.assertGuard",
|
|
16475
17008
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16476
17009
|
expected: "KeymapSetting",
|
|
16477
17010
|
value: value
|
|
16478
17011
|
}, _errorFactory);
|
|
16479
|
-
}); const
|
|
17012
|
+
}); const _ao42 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
16480
17013
|
const value = input[key];
|
|
16481
17014
|
if (undefined === value)
|
|
16482
17015
|
return true;
|
|
@@ -16485,13 +17018,13 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16485
17018
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16486
17019
|
expected: "KeymapSetting",
|
|
16487
17020
|
value: value
|
|
16488
|
-
}, _errorFactory)) &&
|
|
17021
|
+
}, _errorFactory)) && _ao32(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16489
17022
|
method: "typia.assertGuard",
|
|
16490
17023
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
16491
17024
|
expected: "KeymapSetting",
|
|
16492
17025
|
value: value
|
|
16493
17026
|
}, _errorFactory);
|
|
16494
|
-
}); const
|
|
17027
|
+
}); const _ao43 = (input, _path, _exceptionable = true) => (undefined === input.defaultFrameRate || "number" === typeof input.defaultFrameRate || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16495
17028
|
method: "typia.assertGuard",
|
|
16496
17029
|
path: _path + ".defaultFrameRate",
|
|
16497
17030
|
expected: "(number | undefined)",
|
|
@@ -16504,12 +17037,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16504
17037
|
}, _errorFactory)) && (undefined === input.guide || ("object" === typeof input.guide && null !== input.guide && false === Array.isArray(input.guide) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16505
17038
|
method: "typia.assertGuard",
|
|
16506
17039
|
path: _path + ".guide",
|
|
16507
|
-
expected: "(__type.
|
|
17040
|
+
expected: "(__type.o37 | undefined)",
|
|
16508
17041
|
value: input.guide
|
|
16509
|
-
}, _errorFactory)) &&
|
|
17042
|
+
}, _errorFactory)) && _ao44(input.guide, _path + ".guide", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16510
17043
|
method: "typia.assertGuard",
|
|
16511
17044
|
path: _path + ".guide",
|
|
16512
|
-
expected: "(__type.
|
|
17045
|
+
expected: "(__type.o37 | undefined)",
|
|
16513
17046
|
value: input.guide
|
|
16514
17047
|
}, _errorFactory)) && (undefined === input.stepManyFrames || "number" === typeof input.stepManyFrames || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16515
17048
|
method: "typia.assertGuard",
|
|
@@ -16529,12 +17062,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16529
17062
|
}, _errorFactory)) && (undefined === input.tile || ("object" === typeof input.tile && null !== input.tile && false === Array.isArray(input.tile) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16530
17063
|
method: "typia.assertGuard",
|
|
16531
17064
|
path: _path + ".tile",
|
|
16532
|
-
expected: "(__type.
|
|
17065
|
+
expected: "(__type.o38 | undefined)",
|
|
16533
17066
|
value: input.tile
|
|
16534
|
-
}, _errorFactory)) &&
|
|
17067
|
+
}, _errorFactory)) && _ao45(input.tile, _path + ".tile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16535
17068
|
method: "typia.assertGuard",
|
|
16536
17069
|
path: _path + ".tile",
|
|
16537
|
-
expected: "(__type.
|
|
17070
|
+
expected: "(__type.o38 | undefined)",
|
|
16538
17071
|
value: input.tile
|
|
16539
17072
|
}, _errorFactory)) && (undefined === input.timecodeReference || "string" === typeof input.timecodeReference || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16540
17073
|
method: "typia.assertGuard",
|
|
@@ -16566,9 +17099,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16566
17099
|
path: _path + ".playbackRates",
|
|
16567
17100
|
expected: "(Array<number> | undefined)",
|
|
16568
17101
|
value: input.playbackRates
|
|
16569
|
-
}, _errorFactory)) && input.playbackRates.every((elem,
|
|
17102
|
+
}, _errorFactory)) && input.playbackRates.every((elem, _index49) => "number" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16570
17103
|
method: "typia.assertGuard",
|
|
16571
|
-
path: _path + ".playbackRates[" +
|
|
17104
|
+
path: _path + ".playbackRates[" + _index49 + "]",
|
|
16572
17105
|
expected: "number",
|
|
16573
17106
|
value: elem
|
|
16574
17107
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16579,12 +17112,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16579
17112
|
}, _errorFactory)) && (undefined === input.subtitles || ("object" === typeof input.subtitles && null !== input.subtitles && false === Array.isArray(input.subtitles) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16580
17113
|
method: "typia.assertGuard",
|
|
16581
17114
|
path: _path + ".subtitles",
|
|
16582
|
-
expected: "(__type.
|
|
17115
|
+
expected: "(__type.o39 | undefined)",
|
|
16583
17116
|
value: input.subtitles
|
|
16584
|
-
}, _errorFactory)) &&
|
|
17117
|
+
}, _errorFactory)) && _ao46(input.subtitles, _path + ".subtitles", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16585
17118
|
method: "typia.assertGuard",
|
|
16586
17119
|
path: _path + ".subtitles",
|
|
16587
|
-
expected: "(__type.
|
|
17120
|
+
expected: "(__type.o39 | undefined)",
|
|
16588
17121
|
value: input.subtitles
|
|
16589
17122
|
}, _errorFactory)) && (undefined === input.subtitleTemplateId || "string" === typeof input.subtitleTemplateId || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16590
17123
|
method: "typia.assertGuard",
|
|
@@ -16601,15 +17134,15 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16601
17134
|
path: _path + ".guides",
|
|
16602
17135
|
expected: "(Array<__type>.o2 | undefined)",
|
|
16603
17136
|
value: input.guides
|
|
16604
|
-
}, _errorFactory)) && input.guides.every((elem,
|
|
17137
|
+
}, _errorFactory)) && input.guides.every((elem, _index50) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16605
17138
|
method: "typia.assertGuard",
|
|
16606
|
-
path: _path + ".guides[" +
|
|
16607
|
-
expected: "__type.
|
|
17139
|
+
path: _path + ".guides[" + _index50 + "]",
|
|
17140
|
+
expected: "__type.o42",
|
|
16608
17141
|
value: elem
|
|
16609
|
-
}, _errorFactory)) &&
|
|
17142
|
+
}, _errorFactory)) && _ao49(elem, _path + ".guides[" + _index50 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16610
17143
|
method: "typia.assertGuard",
|
|
16611
|
-
path: _path + ".guides[" +
|
|
16612
|
-
expected: "__type.
|
|
17144
|
+
path: _path + ".guides[" + _index50 + "]",
|
|
17145
|
+
expected: "__type.o42",
|
|
16613
17146
|
value: elem
|
|
16614
17147
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16615
17148
|
method: "typia.assertGuard",
|
|
@@ -16624,39 +17157,39 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16624
17157
|
}, _errorFactory)) && (undefined === input.editMode || ("object" === typeof input.editMode && null !== input.editMode && false === Array.isArray(input.editMode) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16625
17158
|
method: "typia.assertGuard",
|
|
16626
17159
|
path: _path + ".editMode",
|
|
16627
|
-
expected: "(__type.
|
|
17160
|
+
expected: "(__type.o43 | undefined)",
|
|
16628
17161
|
value: input.editMode
|
|
16629
|
-
}, _errorFactory)) &&
|
|
17162
|
+
}, _errorFactory)) && _ao50(input.editMode, _path + ".editMode", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16630
17163
|
method: "typia.assertGuard",
|
|
16631
17164
|
path: _path + ".editMode",
|
|
16632
|
-
expected: "(__type.
|
|
17165
|
+
expected: "(__type.o43 | undefined)",
|
|
16633
17166
|
value: input.editMode
|
|
16634
17167
|
}, _errorFactory)) && (undefined === input.transcribe || ("object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16635
17168
|
method: "typia.assertGuard",
|
|
16636
17169
|
path: _path + ".transcribe",
|
|
16637
|
-
expected: "(__type.
|
|
17170
|
+
expected: "(__type.o44 | undefined)",
|
|
16638
17171
|
value: input.transcribe
|
|
16639
|
-
}, _errorFactory)) &&
|
|
17172
|
+
}, _errorFactory)) && _ao51(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16640
17173
|
method: "typia.assertGuard",
|
|
16641
17174
|
path: _path + ".transcribe",
|
|
16642
|
-
expected: "(__type.
|
|
17175
|
+
expected: "(__type.o44 | undefined)",
|
|
16643
17176
|
value: input.transcribe
|
|
16644
17177
|
}, _errorFactory)) && ((null !== input.openCommand || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16645
17178
|
method: "typia.assertGuard",
|
|
16646
17179
|
path: _path + ".openCommand",
|
|
16647
|
-
expected: "(__type.
|
|
17180
|
+
expected: "(__type.o48 | string | undefined)",
|
|
16648
17181
|
value: input.openCommand
|
|
16649
17182
|
}, _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, {
|
|
16650
17183
|
method: "typia.assertGuard",
|
|
16651
17184
|
path: _path + ".openCommand",
|
|
16652
|
-
expected: "(__type.
|
|
17185
|
+
expected: "(__type.o48 | string | undefined)",
|
|
16653
17186
|
value: input.openCommand
|
|
16654
|
-
}, _errorFactory)) &&
|
|
17187
|
+
}, _errorFactory)) && _ao55(input.openCommand, _path + ".openCommand", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16655
17188
|
method: "typia.assertGuard",
|
|
16656
17189
|
path: _path + ".openCommand",
|
|
16657
|
-
expected: "(__type.
|
|
17190
|
+
expected: "(__type.o48 | string | undefined)",
|
|
16658
17191
|
value: input.openCommand
|
|
16659
|
-
}, _errorFactory))); const
|
|
17192
|
+
}, _errorFactory))); const _ao44 = (input, _path, _exceptionable = true) => (undefined === input.mask || "boolean" === typeof input.mask || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16660
17193
|
method: "typia.assertGuard",
|
|
16661
17194
|
path: _path + ".mask",
|
|
16662
17195
|
expected: "(boolean | undefined)",
|
|
@@ -16671,7 +17204,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16671
17204
|
path: _path + ".titleSafe",
|
|
16672
17205
|
expected: "(boolean | undefined)",
|
|
16673
17206
|
value: input.titleSafe
|
|
16674
|
-
}, _errorFactory)); const
|
|
17207
|
+
}, _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, {
|
|
16675
17208
|
method: "typia.assertGuard",
|
|
16676
17209
|
path: _path + ".preview",
|
|
16677
17210
|
expected: "(\"disabled\" | \"play\" | \"seek\" | \"seekplay\" | boolean | undefined)",
|
|
@@ -16681,7 +17214,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16681
17214
|
path: _path + ".showRenderProgress",
|
|
16682
17215
|
expected: "(boolean | undefined)",
|
|
16683
17216
|
value: input.showRenderProgress
|
|
16684
|
-
}, _errorFactory)); const
|
|
17217
|
+
}, _errorFactory)); const _ao46 = (input, _path, _exceptionable = true) => (undefined === input.spacing || "number" === typeof input.spacing || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16685
17218
|
method: "typia.assertGuard",
|
|
16686
17219
|
path: _path + ".spacing",
|
|
16687
17220
|
expected: "(number | undefined)",
|
|
@@ -16696,15 +17229,15 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16696
17229
|
path: _path + ".suggestions",
|
|
16697
17230
|
expected: "(Array<__type> | undefined)",
|
|
16698
17231
|
value: input.suggestions
|
|
16699
|
-
}, _errorFactory)) && input.suggestions.every((elem,
|
|
17232
|
+
}, _errorFactory)) && input.suggestions.every((elem, _index51) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16700
17233
|
method: "typia.assertGuard",
|
|
16701
|
-
path: _path + ".suggestions[" +
|
|
16702
|
-
expected: "__type.
|
|
17234
|
+
path: _path + ".suggestions[" + _index51 + "]",
|
|
17235
|
+
expected: "__type.o40",
|
|
16703
17236
|
value: elem
|
|
16704
|
-
}, _errorFactory)) &&
|
|
17237
|
+
}, _errorFactory)) && _ao47(elem, _path + ".suggestions[" + _index51 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16705
17238
|
method: "typia.assertGuard",
|
|
16706
|
-
path: _path + ".suggestions[" +
|
|
16707
|
-
expected: "__type.
|
|
17239
|
+
path: _path + ".suggestions[" + _index51 + "]",
|
|
17240
|
+
expected: "__type.o40",
|
|
16708
17241
|
value: elem
|
|
16709
17242
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16710
17243
|
method: "typia.assertGuard",
|
|
@@ -16716,15 +17249,15 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16716
17249
|
path: _path + ".colors",
|
|
16717
17250
|
expected: "(Array<__type>.o1 | undefined)",
|
|
16718
17251
|
value: input.colors
|
|
16719
|
-
}, _errorFactory)) && input.colors.every((elem,
|
|
17252
|
+
}, _errorFactory)) && input.colors.every((elem, _index52) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16720
17253
|
method: "typia.assertGuard",
|
|
16721
|
-
path: _path + ".colors[" +
|
|
16722
|
-
expected: "__type.
|
|
17254
|
+
path: _path + ".colors[" + _index52 + "]",
|
|
17255
|
+
expected: "__type.o41",
|
|
16723
17256
|
value: elem
|
|
16724
|
-
}, _errorFactory)) &&
|
|
17257
|
+
}, _errorFactory)) && _ao48(elem, _path + ".colors[" + _index52 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16725
17258
|
method: "typia.assertGuard",
|
|
16726
|
-
path: _path + ".colors[" +
|
|
16727
|
-
expected: "__type.
|
|
17259
|
+
path: _path + ".colors[" + _index52 + "]",
|
|
17260
|
+
expected: "__type.o41",
|
|
16728
17261
|
value: elem
|
|
16729
17262
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16730
17263
|
method: "typia.assertGuard",
|
|
@@ -16736,9 +17269,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16736
17269
|
path: _path + ".overridableProperties",
|
|
16737
17270
|
expected: "(Array<keyof SubtitleStyle | null> | undefined)",
|
|
16738
17271
|
value: input.overridableProperties
|
|
16739
|
-
}, _errorFactory)) && input.overridableProperties.every((elem,
|
|
17272
|
+
}, _errorFactory)) && input.overridableProperties.every((elem, _index53) => null === elem || true === _av54.has(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16740
17273
|
method: "typia.assertGuard",
|
|
16741
|
-
path: _path + ".overridableProperties[" +
|
|
17274
|
+
path: _path + ".overridableProperties[" + _index53 + "]",
|
|
16742
17275
|
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)",
|
|
16743
17276
|
value: elem
|
|
16744
17277
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16746,7 +17279,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16746
17279
|
path: _path + ".overridableProperties",
|
|
16747
17280
|
expected: "(Array<keyof SubtitleStyle | null> | undefined)",
|
|
16748
17281
|
value: input.overridableProperties
|
|
16749
|
-
}, _errorFactory)); const
|
|
17282
|
+
}, _errorFactory)); const _ao47 = (input, _path, _exceptionable = true) => (null === input.ifAspectRatio || undefined === input.ifAspectRatio || "string" === typeof input.ifAspectRatio || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16750
17283
|
method: "typia.assertGuard",
|
|
16751
17284
|
path: _path + ".ifAspectRatio",
|
|
16752
17285
|
expected: "(null | string | undefined)",
|
|
@@ -16766,7 +17299,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16766
17299
|
path: _path + ".thenMaxCharactersPerLine",
|
|
16767
17300
|
expected: "(null | number | undefined)",
|
|
16768
17301
|
value: input.thenMaxCharactersPerLine
|
|
16769
|
-
}, _errorFactory)); const
|
|
17302
|
+
}, _errorFactory)); const _ao48 = (input, _path, _exceptionable = true) => (null === input.label || undefined === input.label || "string" === typeof input.label || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16770
17303
|
method: "typia.assertGuard",
|
|
16771
17304
|
path: _path + ".label",
|
|
16772
17305
|
expected: "(null | string | undefined)",
|
|
@@ -16776,7 +17309,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16776
17309
|
path: _path + ".color",
|
|
16777
17310
|
expected: "(null | string | undefined)",
|
|
16778
17311
|
value: input.color
|
|
16779
|
-
}, _errorFactory)); const
|
|
17312
|
+
}, _errorFactory)); const _ao49 = (input, _path, _exceptionable = true) => (undefined === input.label || "string" === typeof input.label || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16780
17313
|
method: "typia.assertGuard",
|
|
16781
17314
|
path: _path + ".label",
|
|
16782
17315
|
expected: "(string | undefined)",
|
|
@@ -16786,7 +17319,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16786
17319
|
path: _path + ".aspectRatio",
|
|
16787
17320
|
expected: "(string | undefined)",
|
|
16788
17321
|
value: input.aspectRatio
|
|
16789
|
-
}, _errorFactory)); const
|
|
17322
|
+
}, _errorFactory)); const _ao50 = (input, _path, _exceptionable = true) => (undefined === input.enabled || "boolean" === typeof input.enabled || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16790
17323
|
method: "typia.assertGuard",
|
|
16791
17324
|
path: _path + ".enabled",
|
|
16792
17325
|
expected: "(boolean | undefined)",
|
|
@@ -16801,17 +17334,17 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16801
17334
|
path: _path + ".defaultExitOption",
|
|
16802
17335
|
expected: "(\"leave\" | \"none\" | \"update\" | undefined)",
|
|
16803
17336
|
value: input.defaultExitOption
|
|
16804
|
-
}, _errorFactory)); const
|
|
17337
|
+
}, _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, {
|
|
16805
17338
|
method: "typia.assertGuard",
|
|
16806
17339
|
path: _path + ".subtitleDisclaimer",
|
|
16807
|
-
expected: "(__type.
|
|
17340
|
+
expected: "(__type.o45 | undefined)",
|
|
16808
17341
|
value: input.subtitleDisclaimer
|
|
16809
|
-
}, _errorFactory)) &&
|
|
17342
|
+
}, _errorFactory)) && _ao52(input.subtitleDisclaimer, _path + ".subtitleDisclaimer", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16810
17343
|
method: "typia.assertGuard",
|
|
16811
17344
|
path: _path + ".subtitleDisclaimer",
|
|
16812
|
-
expected: "(__type.
|
|
17345
|
+
expected: "(__type.o45 | undefined)",
|
|
16813
17346
|
value: input.subtitleDisclaimer
|
|
16814
|
-
}, _errorFactory); const
|
|
17347
|
+
}, _errorFactory); const _ao52 = (input, _path, _exceptionable = true) => (undefined === input.isUserConfigurable || "boolean" === typeof input.isUserConfigurable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16815
17348
|
method: "typia.assertGuard",
|
|
16816
17349
|
path: _path + ".isUserConfigurable",
|
|
16817
17350
|
expected: "(boolean | undefined)",
|
|
@@ -16819,14 +17352,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16819
17352
|
}, _errorFactory)) && (undefined === input.defaultValue || ("object" === typeof input.defaultValue && null !== input.defaultValue && false === Array.isArray(input.defaultValue) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16820
17353
|
method: "typia.assertGuard",
|
|
16821
17354
|
path: _path + ".defaultValue",
|
|
16822
|
-
expected: "(__type.
|
|
17355
|
+
expected: "(__type.o46 | undefined)",
|
|
16823
17356
|
value: input.defaultValue
|
|
16824
|
-
}, _errorFactory)) &&
|
|
17357
|
+
}, _errorFactory)) && _ao53(input.defaultValue, _path + ".defaultValue", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16825
17358
|
method: "typia.assertGuard",
|
|
16826
17359
|
path: _path + ".defaultValue",
|
|
16827
|
-
expected: "(__type.
|
|
17360
|
+
expected: "(__type.o46 | undefined)",
|
|
16828
17361
|
value: input.defaultValue
|
|
16829
|
-
}, _errorFactory)); const
|
|
17362
|
+
}, _errorFactory)); const _ao53 = (input, _path, _exceptionable = true) => (undefined === input.enabled || false === input.enabled || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16830
17363
|
method: "typia.assertGuard",
|
|
16831
17364
|
path: _path + ".enabled",
|
|
16832
17365
|
expected: "(false | undefined)",
|
|
@@ -16836,15 +17369,15 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16836
17369
|
path: _path + ".text",
|
|
16837
17370
|
expected: "(Array<__type>.o3 | undefined)",
|
|
16838
17371
|
value: input.text
|
|
16839
|
-
}, _errorFactory)) && input.text.every((elem,
|
|
17372
|
+
}, _errorFactory)) && input.text.every((elem, _index55) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16840
17373
|
method: "typia.assertGuard",
|
|
16841
|
-
path: _path + ".text[" +
|
|
16842
|
-
expected: "__type.
|
|
17374
|
+
path: _path + ".text[" + _index55 + "]",
|
|
17375
|
+
expected: "__type.o47",
|
|
16843
17376
|
value: elem
|
|
16844
|
-
}, _errorFactory)) &&
|
|
17377
|
+
}, _errorFactory)) && _ao54(elem, _path + ".text[" + _index55 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16845
17378
|
method: "typia.assertGuard",
|
|
16846
|
-
path: _path + ".text[" +
|
|
16847
|
-
expected: "__type.
|
|
17379
|
+
path: _path + ".text[" + _index55 + "]",
|
|
17380
|
+
expected: "__type.o47",
|
|
16848
17381
|
value: elem
|
|
16849
17382
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16850
17383
|
method: "typia.assertGuard",
|
|
@@ -16861,7 +17394,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16861
17394
|
path: _path + ".duration",
|
|
16862
17395
|
expected: "(number | undefined)",
|
|
16863
17396
|
value: input.duration
|
|
16864
|
-
}, _errorFactory)); const
|
|
17397
|
+
}, _errorFactory)); const _ao54 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16865
17398
|
method: "typia.assertGuard",
|
|
16866
17399
|
path: _path + ".language",
|
|
16867
17400
|
expected: "(string | undefined)",
|
|
@@ -16871,7 +17404,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16871
17404
|
path: _path + ".value",
|
|
16872
17405
|
expected: "(string | undefined)",
|
|
16873
17406
|
value: input.value
|
|
16874
|
-
}, _errorFactory)); const
|
|
17407
|
+
}, _errorFactory)); const _ao55 = (input, _path, _exceptionable = true) => (undefined === input.url || "string" === typeof input.url || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16875
17408
|
method: "typia.assertGuard",
|
|
16876
17409
|
path: _path + ".url",
|
|
16877
17410
|
expected: "(string | undefined)",
|
|
@@ -16891,9 +17424,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16891
17424
|
path: _path + ".args",
|
|
16892
17425
|
expected: "(Array<string> | undefined)",
|
|
16893
17426
|
value: input.args
|
|
16894
|
-
}, _errorFactory)) && input.args.every((elem,
|
|
17427
|
+
}, _errorFactory)) && input.args.every((elem, _index56) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16895
17428
|
method: "typia.assertGuard",
|
|
16896
|
-
path: _path + ".args[" +
|
|
17429
|
+
path: _path + ".args[" + _index56 + "]",
|
|
16897
17430
|
expected: "string",
|
|
16898
17431
|
value: elem
|
|
16899
17432
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16901,7 +17434,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16901
17434
|
path: _path + ".args",
|
|
16902
17435
|
expected: "(Array<string> | undefined)",
|
|
16903
17436
|
value: input.args
|
|
16904
|
-
}, _errorFactory)); const
|
|
17437
|
+
}, _errorFactory)); const _ao56 = (input, _path, _exceptionable = true) => (undefined === input.thumbnailView || "none" === input.thumbnailView || "filmStrip" === input.thumbnailView || "thumbnail" === input.thumbnailView || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16905
17438
|
method: "typia.assertGuard",
|
|
16906
17439
|
path: _path + ".thumbnailView",
|
|
16907
17440
|
expected: "(\"filmStrip\" | \"none\" | \"thumbnail\" | undefined)",
|
|
@@ -16909,14 +17442,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16909
17442
|
}, _errorFactory)) && (undefined === input.voiceOver || ("object" === typeof input.voiceOver && null !== input.voiceOver && false === Array.isArray(input.voiceOver) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16910
17443
|
method: "typia.assertGuard",
|
|
16911
17444
|
path: _path + ".voiceOver",
|
|
16912
|
-
expected: "(__type.
|
|
17445
|
+
expected: "(__type.o50 | undefined)",
|
|
16913
17446
|
value: input.voiceOver
|
|
16914
|
-
}, _errorFactory)) &&
|
|
17447
|
+
}, _errorFactory)) && _ao57(input.voiceOver, _path + ".voiceOver", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16915
17448
|
method: "typia.assertGuard",
|
|
16916
17449
|
path: _path + ".voiceOver",
|
|
16917
|
-
expected: "(__type.
|
|
17450
|
+
expected: "(__type.o50 | undefined)",
|
|
16918
17451
|
value: input.voiceOver
|
|
16919
|
-
}, _errorFactory)); const
|
|
17452
|
+
}, _errorFactory)); const _ao57 = (input, _path, _exceptionable = true) => (undefined === input.inputDevice || "string" === typeof input.inputDevice || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16920
17453
|
method: "typia.assertGuard",
|
|
16921
17454
|
path: _path + ".inputDevice",
|
|
16922
17455
|
expected: "(string | undefined)",
|
|
@@ -16941,7 +17474,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16941
17474
|
path: _path + ".preRollDuration",
|
|
16942
17475
|
expected: "(number | undefined)",
|
|
16943
17476
|
value: input.preRollDuration
|
|
16944
|
-
}, _errorFactory)); const
|
|
17477
|
+
}, _errorFactory)); const _ao58 = (input, _path, _exceptionable = true) => (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16945
17478
|
method: "typia.assertGuard",
|
|
16946
17479
|
path: _path + ".title",
|
|
16947
17480
|
expected: "(string | undefined)",
|
|
@@ -16956,9 +17489,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16956
17489
|
path: _path + ".args",
|
|
16957
17490
|
expected: "(Array<string> | undefined)",
|
|
16958
17491
|
value: input.args
|
|
16959
|
-
}, _errorFactory)) && input.args.every((elem,
|
|
17492
|
+
}, _errorFactory)) && input.args.every((elem, _index57) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16960
17493
|
method: "typia.assertGuard",
|
|
16961
|
-
path: _path + ".args[" +
|
|
17494
|
+
path: _path + ".args[" + _index57 + "]",
|
|
16962
17495
|
expected: "string",
|
|
16963
17496
|
value: elem
|
|
16964
17497
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16966,82 +17499,82 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16966
17499
|
path: _path + ".args",
|
|
16967
17500
|
expected: "(Array<string> | undefined)",
|
|
16968
17501
|
value: input.args
|
|
16969
|
-
}, _errorFactory)); const
|
|
17502
|
+
}, _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, {
|
|
16970
17503
|
method: "typia.assertGuard",
|
|
16971
17504
|
path: _path + ".folded",
|
|
16972
|
-
expected: "(__type.
|
|
17505
|
+
expected: "(__type.o53 | undefined)",
|
|
16973
17506
|
value: input.folded
|
|
16974
|
-
}, _errorFactory)) &&
|
|
17507
|
+
}, _errorFactory)) && _ao60(input.folded, _path + ".folded", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16975
17508
|
method: "typia.assertGuard",
|
|
16976
17509
|
path: _path + ".folded",
|
|
16977
|
-
expected: "(__type.
|
|
17510
|
+
expected: "(__type.o53 | undefined)",
|
|
16978
17511
|
value: input.folded
|
|
16979
17512
|
}, _errorFactory)) && (undefined === input.assets || ("object" === typeof input.assets && null !== input.assets && false === Array.isArray(input.assets) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16980
17513
|
method: "typia.assertGuard",
|
|
16981
17514
|
path: _path + ".assets",
|
|
16982
|
-
expected: "(__type.
|
|
17515
|
+
expected: "(__type.o54 | undefined)",
|
|
16983
17516
|
value: input.assets
|
|
16984
|
-
}, _errorFactory)) &&
|
|
17517
|
+
}, _errorFactory)) && _ao61(input.assets, _path + ".assets", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16985
17518
|
method: "typia.assertGuard",
|
|
16986
17519
|
path: _path + ".assets",
|
|
16987
|
-
expected: "(__type.
|
|
17520
|
+
expected: "(__type.o54 | undefined)",
|
|
16988
17521
|
value: input.assets
|
|
16989
17522
|
}, _errorFactory)) && (undefined === input.pipeline || ("object" === typeof input.pipeline && null !== input.pipeline && false === Array.isArray(input.pipeline) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16990
17523
|
method: "typia.assertGuard",
|
|
16991
17524
|
path: _path + ".pipeline",
|
|
16992
|
-
expected: "(__type.
|
|
17525
|
+
expected: "(__type.o58 | undefined)",
|
|
16993
17526
|
value: input.pipeline
|
|
16994
|
-
}, _errorFactory)) &&
|
|
17527
|
+
}, _errorFactory)) && _ao65(input.pipeline, _path + ".pipeline", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16995
17528
|
method: "typia.assertGuard",
|
|
16996
17529
|
path: _path + ".pipeline",
|
|
16997
|
-
expected: "(__type.
|
|
17530
|
+
expected: "(__type.o58 | undefined)",
|
|
16998
17531
|
value: input.pipeline
|
|
16999
17532
|
}, _errorFactory)) && (undefined === input.item || ("object" === typeof input.item && null !== input.item && false === Array.isArray(input.item) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17000
17533
|
method: "typia.assertGuard",
|
|
17001
17534
|
path: _path + ".item",
|
|
17002
|
-
expected: "(__type.
|
|
17535
|
+
expected: "(__type.o60 | undefined)",
|
|
17003
17536
|
value: input.item
|
|
17004
|
-
}, _errorFactory)) &&
|
|
17537
|
+
}, _errorFactory)) && _ao67(input.item, _path + ".item", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17005
17538
|
method: "typia.assertGuard",
|
|
17006
17539
|
path: _path + ".item",
|
|
17007
|
-
expected: "(__type.
|
|
17540
|
+
expected: "(__type.o60 | undefined)",
|
|
17008
17541
|
value: input.item
|
|
17009
|
-
}, _errorFactory)); const
|
|
17542
|
+
}, _errorFactory)); const _ao60 = (input, _path, _exceptionable = true) => undefined === input.auto || "boolean" === typeof input.auto || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17010
17543
|
method: "typia.assertGuard",
|
|
17011
17544
|
path: _path + ".auto",
|
|
17012
17545
|
expected: "(boolean | undefined)",
|
|
17013
17546
|
value: input.auto
|
|
17014
|
-
}, _errorFactory); const
|
|
17547
|
+
}, _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, {
|
|
17015
17548
|
method: "typia.assertGuard",
|
|
17016
17549
|
path: _path + ".story",
|
|
17017
|
-
expected: "(__type.
|
|
17550
|
+
expected: "(__type.o55 | undefined)",
|
|
17018
17551
|
value: input.story
|
|
17019
|
-
}, _errorFactory)) &&
|
|
17552
|
+
}, _errorFactory)) && _ao62(input.story, _path + ".story", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17020
17553
|
method: "typia.assertGuard",
|
|
17021
17554
|
path: _path + ".story",
|
|
17022
|
-
expected: "(__type.
|
|
17555
|
+
expected: "(__type.o55 | undefined)",
|
|
17023
17556
|
value: input.story
|
|
17024
17557
|
}, _errorFactory)) && (undefined === input.note || ("object" === typeof input.note && null !== input.note && false === Array.isArray(input.note) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17025
17558
|
method: "typia.assertGuard",
|
|
17026
17559
|
path: _path + ".note",
|
|
17027
|
-
expected: "(__type.
|
|
17560
|
+
expected: "(__type.o57 | undefined)",
|
|
17028
17561
|
value: input.note
|
|
17029
|
-
}, _errorFactory)) &&
|
|
17562
|
+
}, _errorFactory)) && _ao64(input.note, _path + ".note", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17030
17563
|
method: "typia.assertGuard",
|
|
17031
17564
|
path: _path + ".note",
|
|
17032
|
-
expected: "(__type.
|
|
17565
|
+
expected: "(__type.o57 | undefined)",
|
|
17033
17566
|
value: input.note
|
|
17034
|
-
}, _errorFactory)); const
|
|
17567
|
+
}, _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, {
|
|
17035
17568
|
method: "typia.assertGuard",
|
|
17036
17569
|
path: _path + ".excerpt",
|
|
17037
|
-
expected: "(__type.
|
|
17570
|
+
expected: "(__type.o56 | undefined)",
|
|
17038
17571
|
value: input.excerpt
|
|
17039
|
-
}, _errorFactory)) &&
|
|
17572
|
+
}, _errorFactory)) && _ao63(input.excerpt, _path + ".excerpt", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17040
17573
|
method: "typia.assertGuard",
|
|
17041
17574
|
path: _path + ".excerpt",
|
|
17042
|
-
expected: "(__type.
|
|
17575
|
+
expected: "(__type.o56 | undefined)",
|
|
17043
17576
|
value: input.excerpt
|
|
17044
|
-
}, _errorFactory); const
|
|
17577
|
+
}, _errorFactory); const _ao63 = (input, _path, _exceptionable = true) => (undefined === input.maxLines || "number" === typeof input.maxLines || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17045
17578
|
method: "typia.assertGuard",
|
|
17046
17579
|
path: _path + ".maxLines",
|
|
17047
17580
|
expected: "(number | undefined)",
|
|
@@ -17056,44 +17589,49 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17056
17589
|
path: _path + ".comments",
|
|
17057
17590
|
expected: "(boolean | undefined)",
|
|
17058
17591
|
value: input.comments
|
|
17059
|
-
}, _errorFactory)); const
|
|
17592
|
+
}, _errorFactory)); const _ao64 = (input, _path, _exceptionable = true) => undefined === input.maxHeight || "number" === typeof input.maxHeight || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17060
17593
|
method: "typia.assertGuard",
|
|
17061
17594
|
path: _path + ".maxHeight",
|
|
17062
17595
|
expected: "(number | undefined)",
|
|
17063
17596
|
value: input.maxHeight
|
|
17064
|
-
}, _errorFactory); const
|
|
17597
|
+
}, _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, {
|
|
17065
17598
|
method: "typia.assertGuard",
|
|
17066
17599
|
path: _path + ".search",
|
|
17067
|
-
expected: "(__type.
|
|
17600
|
+
expected: "(__type.o59 | undefined)",
|
|
17068
17601
|
value: input.search
|
|
17069
|
-
}, _errorFactory)) &&
|
|
17602
|
+
}, _errorFactory)) && _ao66(input.search, _path + ".search", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17070
17603
|
method: "typia.assertGuard",
|
|
17071
17604
|
path: _path + ".search",
|
|
17072
|
-
expected: "(__type.
|
|
17605
|
+
expected: "(__type.o59 | undefined)",
|
|
17073
17606
|
value: input.search
|
|
17074
|
-
}, _errorFactory)) && (undefined === input.sortMode || true ===
|
|
17607
|
+
}, _errorFactory)) && (undefined === input.sortMode || true === _av58.has(input.sortMode) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17075
17608
|
method: "typia.assertGuard",
|
|
17076
17609
|
path: _path + ".sortMode",
|
|
17077
17610
|
expected: "(\"az\" | \"default\" | \"earliestdeadline\" | \"latestdeadline\" | \"leastrecent\" | \"manual\" | \"mostrecent\" | \"newest\" | \"oldest\" | \"za\" | undefined)",
|
|
17078
17611
|
value: input.sortMode
|
|
17079
|
-
}, _errorFactory)); const
|
|
17612
|
+
}, _errorFactory)); const _ao66 = (input, _path, _exceptionable = true) => undefined === input.maxItemsDisplayed || "number" === typeof input.maxItemsDisplayed || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17080
17613
|
method: "typia.assertGuard",
|
|
17081
17614
|
path: _path + ".maxItemsDisplayed",
|
|
17082
17615
|
expected: "(number | undefined)",
|
|
17083
17616
|
value: input.maxItemsDisplayed
|
|
17084
|
-
}, _errorFactory); const
|
|
17617
|
+
}, _errorFactory); const _ao67 = (input, _path, _exceptionable = true) => (undefined === input.maxHeight || "number" === typeof input.maxHeight || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17085
17618
|
method: "typia.assertGuard",
|
|
17086
17619
|
path: _path + ".maxHeight",
|
|
17087
17620
|
expected: "(number | undefined)",
|
|
17088
17621
|
value: input.maxHeight
|
|
17089
|
-
}, _errorFactory)
|
|
17622
|
+
}, _errorFactory)) && (undefined === input.titleLines || "number" === typeof input.titleLines || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17623
|
+
method: "typia.assertGuard",
|
|
17624
|
+
path: _path + ".titleLines",
|
|
17625
|
+
expected: "(number | undefined)",
|
|
17626
|
+
value: input.titleLines
|
|
17627
|
+
}, _errorFactory)); const _ao68 = (input, _path, _exceptionable = true) => undefined === input.fontFamilies || (Array.isArray(input.fontFamilies) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17090
17628
|
method: "typia.assertGuard",
|
|
17091
17629
|
path: _path + ".fontFamilies",
|
|
17092
17630
|
expected: "(Array<string> | undefined)",
|
|
17093
17631
|
value: input.fontFamilies
|
|
17094
|
-
}, _errorFactory)) && input.fontFamilies.every((elem,
|
|
17632
|
+
}, _errorFactory)) && input.fontFamilies.every((elem, _index59) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17095
17633
|
method: "typia.assertGuard",
|
|
17096
|
-
path: _path + ".fontFamilies[" +
|
|
17634
|
+
path: _path + ".fontFamilies[" + _index59 + "]",
|
|
17097
17635
|
expected: "string",
|
|
17098
17636
|
value: elem
|
|
17099
17637
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17101,7 +17639,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17101
17639
|
path: _path + ".fontFamilies",
|
|
17102
17640
|
expected: "(Array<string> | undefined)",
|
|
17103
17641
|
value: input.fontFamilies
|
|
17104
|
-
}, _errorFactory); const
|
|
17642
|
+
}, _errorFactory); const _ao69 = (input, _path, _exceptionable = true) => (undefined === input.id || "string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17105
17643
|
method: "typia.assertGuard",
|
|
17106
17644
|
path: _path + ".id",
|
|
17107
17645
|
expected: "(string | undefined)",
|
|
@@ -17111,37 +17649,37 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17111
17649
|
path: _path + ".folded",
|
|
17112
17650
|
expected: "(boolean | undefined)",
|
|
17113
17651
|
value: input.folded
|
|
17114
|
-
}, _errorFactory)); const
|
|
17652
|
+
}, _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, {
|
|
17115
17653
|
method: "typia.assertGuard",
|
|
17116
17654
|
path: _path + ".adobe",
|
|
17117
|
-
expected: "(__type.
|
|
17655
|
+
expected: "(__type.o64 | undefined)",
|
|
17118
17656
|
value: input.adobe
|
|
17119
|
-
}, _errorFactory)) &&
|
|
17657
|
+
}, _errorFactory)) && _ao71(input.adobe, _path + ".adobe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17120
17658
|
method: "typia.assertGuard",
|
|
17121
17659
|
path: _path + ".adobe",
|
|
17122
|
-
expected: "(__type.
|
|
17660
|
+
expected: "(__type.o64 | undefined)",
|
|
17123
17661
|
value: input.adobe
|
|
17124
17662
|
}, _errorFactory)) && (undefined === input.rive || ("object" === typeof input.rive && null !== input.rive && false === Array.isArray(input.rive) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17125
17663
|
method: "typia.assertGuard",
|
|
17126
17664
|
path: _path + ".rive",
|
|
17127
|
-
expected: "(__type.
|
|
17665
|
+
expected: "(__type.o65 | undefined)",
|
|
17128
17666
|
value: input.rive
|
|
17129
|
-
}, _errorFactory)) &&
|
|
17667
|
+
}, _errorFactory)) && _ao72(input.rive, _path + ".rive", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17130
17668
|
method: "typia.assertGuard",
|
|
17131
17669
|
path: _path + ".rive",
|
|
17132
|
-
expected: "(__type.
|
|
17670
|
+
expected: "(__type.o65 | undefined)",
|
|
17133
17671
|
value: input.rive
|
|
17134
|
-
}, _errorFactory)); const
|
|
17672
|
+
}, _errorFactory)); const _ao71 = (input, _path, _exceptionable = true) => undefined === input.useProxies || "boolean" === typeof input.useProxies || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17135
17673
|
method: "typia.assertGuard",
|
|
17136
17674
|
path: _path + ".useProxies",
|
|
17137
17675
|
expected: "(boolean | undefined)",
|
|
17138
17676
|
value: input.useProxies
|
|
17139
|
-
}, _errorFactory); const
|
|
17677
|
+
}, _errorFactory); const _ao72 = (input, _path, _exceptionable = true) => undefined === input.template || "string" === typeof input.template || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17140
17678
|
method: "typia.assertGuard",
|
|
17141
17679
|
path: _path + ".template",
|
|
17142
17680
|
expected: "(string | undefined)",
|
|
17143
17681
|
value: input.template
|
|
17144
|
-
}, _errorFactory); const
|
|
17682
|
+
}, _errorFactory); const _ao73 = (input, _path, _exceptionable = true) => (undefined === input.collections || "boolean" === typeof input.collections || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17145
17683
|
method: "typia.assertGuard",
|
|
17146
17684
|
path: _path + ".collections",
|
|
17147
17685
|
expected: "(boolean | undefined)",
|
|
@@ -17156,11 +17694,21 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17156
17694
|
path: _path + ".ameRemoteRendering",
|
|
17157
17695
|
expected: "(boolean | undefined)",
|
|
17158
17696
|
value: input.ameRemoteRendering
|
|
17159
|
-
}, _errorFactory)); const
|
|
17697
|
+
}, _errorFactory)); const _ao74 = (input, _path, _exceptionable = true) => (undefined === input.utils || "boolean" === typeof input.utils || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17160
17698
|
method: "typia.assertGuard",
|
|
17161
17699
|
path: _path + ".utils",
|
|
17162
17700
|
expected: "(boolean | undefined)",
|
|
17163
17701
|
value: input.utils
|
|
17702
|
+
}, _errorFactory)) && (undefined === input.utilsAssetEditor || "boolean" === typeof input.utilsAssetEditor || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17703
|
+
method: "typia.assertGuard",
|
|
17704
|
+
path: _path + ".utilsAssetEditor",
|
|
17705
|
+
expected: "(boolean | undefined)",
|
|
17706
|
+
value: input.utilsAssetEditor
|
|
17707
|
+
}, _errorFactory)) && (undefined === input.utilsAssetPanel || "boolean" === typeof input.utilsAssetPanel || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17708
|
+
method: "typia.assertGuard",
|
|
17709
|
+
path: _path + ".utilsAssetPanel",
|
|
17710
|
+
expected: "(boolean | undefined)",
|
|
17711
|
+
value: input.utilsAssetPanel
|
|
17164
17712
|
}, _errorFactory)) && (undefined === input.history || "boolean" === typeof input.history || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17165
17713
|
method: "typia.assertGuard",
|
|
17166
17714
|
path: _path + ".history",
|
|
@@ -17241,24 +17789,24 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17241
17789
|
path: _path + ".systemHealth",
|
|
17242
17790
|
expected: "(boolean | undefined)",
|
|
17243
17791
|
value: input.systemHealth
|
|
17244
|
-
}, _errorFactory)); const
|
|
17792
|
+
}, _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, {
|
|
17245
17793
|
method: "typia.assertGuard",
|
|
17246
17794
|
path: _path + ".events",
|
|
17247
|
-
expected: "(__type.
|
|
17795
|
+
expected: "(__type.o69 | undefined)",
|
|
17248
17796
|
value: input.events
|
|
17249
|
-
}, _errorFactory)) &&
|
|
17797
|
+
}, _errorFactory)) && _ao76(input.events, _path + ".events", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17250
17798
|
method: "typia.assertGuard",
|
|
17251
17799
|
path: _path + ".events",
|
|
17252
|
-
expected: "(__type.
|
|
17800
|
+
expected: "(__type.o69 | undefined)",
|
|
17253
17801
|
value: input.events
|
|
17254
|
-
}, _errorFactory); const
|
|
17802
|
+
}, _errorFactory); const _ao76 = (input, _path, _exceptionable = true) => (undefined === input.comment || (Array.isArray(input.comment) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17255
17803
|
method: "typia.assertGuard",
|
|
17256
17804
|
path: _path + ".comment",
|
|
17257
17805
|
expected: "(Array<NotificationReason> | undefined)",
|
|
17258
17806
|
value: input.comment
|
|
17259
|
-
}, _errorFactory)) && input.comment.every((elem,
|
|
17807
|
+
}, _errorFactory)) && input.comment.every((elem, _index60) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17260
17808
|
method: "typia.assertGuard",
|
|
17261
|
-
path: _path + ".comment[" +
|
|
17809
|
+
path: _path + ".comment[" + _index60 + "]",
|
|
17262
17810
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
17263
17811
|
value: elem
|
|
17264
17812
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17271,9 +17819,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17271
17819
|
path: _path + ".assigned",
|
|
17272
17820
|
expected: "(Array<NotificationReason> | undefined)",
|
|
17273
17821
|
value: input.assigned
|
|
17274
|
-
}, _errorFactory)) && input.assigned.every((elem,
|
|
17822
|
+
}, _errorFactory)) && input.assigned.every((elem, _index61) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17275
17823
|
method: "typia.assertGuard",
|
|
17276
|
-
path: _path + ".assigned[" +
|
|
17824
|
+
path: _path + ".assigned[" + _index61 + "]",
|
|
17277
17825
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
17278
17826
|
value: elem
|
|
17279
17827
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17286,9 +17834,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17286
17834
|
path: _path + ".unassigned",
|
|
17287
17835
|
expected: "(Array<NotificationReason> | undefined)",
|
|
17288
17836
|
value: input.unassigned
|
|
17289
|
-
}, _errorFactory)) && input.unassigned.every((elem,
|
|
17837
|
+
}, _errorFactory)) && input.unassigned.every((elem, _index62) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17290
17838
|
method: "typia.assertGuard",
|
|
17291
|
-
path: _path + ".unassigned[" +
|
|
17839
|
+
path: _path + ".unassigned[" + _index62 + "]",
|
|
17292
17840
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
17293
17841
|
value: elem
|
|
17294
17842
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17299,14 +17847,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17299
17847
|
}, _errorFactory)) && (undefined === input.publishSucceeded || ("object" === typeof input.publishSucceeded && null !== input.publishSucceeded && false === Array.isArray(input.publishSucceeded) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17300
17848
|
method: "typia.assertGuard",
|
|
17301
17849
|
path: _path + ".publishSucceeded",
|
|
17302
|
-
expected: "(__type.
|
|
17850
|
+
expected: "(__type.o70 | undefined)",
|
|
17303
17851
|
value: input.publishSucceeded
|
|
17304
|
-
}, _errorFactory)) &&
|
|
17852
|
+
}, _errorFactory)) && _ao77(input.publishSucceeded, _path + ".publishSucceeded", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17305
17853
|
method: "typia.assertGuard",
|
|
17306
17854
|
path: _path + ".publishSucceeded",
|
|
17307
|
-
expected: "(__type.
|
|
17855
|
+
expected: "(__type.o70 | undefined)",
|
|
17308
17856
|
value: input.publishSucceeded
|
|
17309
|
-
}, _errorFactory)); const
|
|
17857
|
+
}, _errorFactory)); const _ao77 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
17310
17858
|
const value = input[key];
|
|
17311
17859
|
if (undefined === value)
|
|
17312
17860
|
return true;
|
|
@@ -17315,9 +17863,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17315
17863
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
17316
17864
|
expected: "Array<NotificationReason>",
|
|
17317
17865
|
value: value
|
|
17318
|
-
}, _errorFactory)) && value.every((elem,
|
|
17866
|
+
}, _errorFactory)) && value.every((elem, _index63) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17319
17867
|
method: "typia.assertGuard",
|
|
17320
|
-
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key) + "[" +
|
|
17868
|
+
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key) + "[" + _index63 + "]",
|
|
17321
17869
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
17322
17870
|
value: elem
|
|
17323
17871
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17326,7 +17874,67 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17326
17874
|
expected: "Array<NotificationReason>",
|
|
17327
17875
|
value: value
|
|
17328
17876
|
}, _errorFactory);
|
|
17329
|
-
}); const
|
|
17877
|
+
}); 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, {
|
|
17878
|
+
method: "typia.assertGuard",
|
|
17879
|
+
path: _path + ".duplicate",
|
|
17880
|
+
expected: "(__type.o72 | undefined)",
|
|
17881
|
+
value: input.duplicate
|
|
17882
|
+
}, _errorFactory)) && _ao79(input.duplicate, _path + ".duplicate", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17883
|
+
method: "typia.assertGuard",
|
|
17884
|
+
path: _path + ".duplicate",
|
|
17885
|
+
expected: "(__type.o72 | undefined)",
|
|
17886
|
+
value: input.duplicate
|
|
17887
|
+
}, _errorFactory); const _ao79 = (input, _path, _exceptionable = true) => (undefined === input.titlePrefix || "string" === typeof input.titlePrefix || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17888
|
+
method: "typia.assertGuard",
|
|
17889
|
+
path: _path + ".titlePrefix",
|
|
17890
|
+
expected: "(string | undefined)",
|
|
17891
|
+
value: input.titlePrefix
|
|
17892
|
+
}, _errorFactory)) && (undefined === input.titleSuffix || "string" === typeof input.titleSuffix || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17893
|
+
method: "typia.assertGuard",
|
|
17894
|
+
path: _path + ".titleSuffix",
|
|
17895
|
+
expected: "(string | undefined)",
|
|
17896
|
+
value: input.titleSuffix
|
|
17897
|
+
}, _errorFactory)); const _ao80 = (input, _path, _exceptionable = true) => (undefined === input.stateFilter || (Array.isArray(input.stateFilter) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17898
|
+
method: "typia.assertGuard",
|
|
17899
|
+
path: _path + ".stateFilter",
|
|
17900
|
+
expected: "(Array<number> | undefined)",
|
|
17901
|
+
value: input.stateFilter
|
|
17902
|
+
}, _errorFactory)) && input.stateFilter.every((elem, _index64) => "number" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17903
|
+
method: "typia.assertGuard",
|
|
17904
|
+
path: _path + ".stateFilter[" + _index64 + "]",
|
|
17905
|
+
expected: "number",
|
|
17906
|
+
value: elem
|
|
17907
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17908
|
+
method: "typia.assertGuard",
|
|
17909
|
+
path: _path + ".stateFilter",
|
|
17910
|
+
expected: "(Array<number> | undefined)",
|
|
17911
|
+
value: input.stateFilter
|
|
17912
|
+
}, _errorFactory)) && (undefined === input.textFilter || "string" === typeof input.textFilter || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17913
|
+
method: "typia.assertGuard",
|
|
17914
|
+
path: _path + ".textFilter",
|
|
17915
|
+
expected: "(string | undefined)",
|
|
17916
|
+
value: input.textFilter
|
|
17917
|
+
}, _errorFactory)) && (undefined === input.showEmpty || "boolean" === typeof input.showEmpty || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17918
|
+
method: "typia.assertGuard",
|
|
17919
|
+
path: _path + ".showEmpty",
|
|
17920
|
+
expected: "(boolean | undefined)",
|
|
17921
|
+
value: input.showEmpty
|
|
17922
|
+
}, _errorFactory)) && (undefined === input.selectedRecord || "string" === typeof input.selectedRecord || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17923
|
+
method: "typia.assertGuard",
|
|
17924
|
+
path: _path + ".selectedRecord",
|
|
17925
|
+
expected: "(string | undefined)",
|
|
17926
|
+
value: input.selectedRecord
|
|
17927
|
+
}, _errorFactory)) && (undefined === input.subscribeSearchHits || "boolean" === typeof input.subscribeSearchHits || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17928
|
+
method: "typia.assertGuard",
|
|
17929
|
+
path: _path + ".subscribeSearchHits",
|
|
17930
|
+
expected: "(boolean | undefined)",
|
|
17931
|
+
value: input.subscribeSearchHits
|
|
17932
|
+
}, _errorFactory)) && (undefined === input.parseRegex || "boolean" === typeof input.parseRegex || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17933
|
+
method: "typia.assertGuard",
|
|
17934
|
+
path: _path + ".parseRegex",
|
|
17935
|
+
expected: "(boolean | undefined)",
|
|
17936
|
+
value: input.parseRegex
|
|
17937
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
17330
17938
|
if (false === __is(input)) {
|
|
17331
17939
|
_errorFactory = errorFactory;
|
|
17332
17940
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
@@ -17343,6 +17951,209 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17343
17951
|
}
|
|
17344
17952
|
}; })()(input);
|
|
17345
17953
|
}
|
|
17954
|
+
case ":shotbox": {
|
|
17955
|
+
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 => (() => {
|
|
17956
|
+
if ("stream" === input.type)
|
|
17957
|
+
return _io4(input);
|
|
17958
|
+
else
|
|
17959
|
+
return _io2(input);
|
|
17960
|
+
})(); const _ao0 = (input, _path, _exceptionable = true) => undefined === input.pages || (Array.isArray(input.pages) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17961
|
+
method: "typia.assertGuard",
|
|
17962
|
+
path: _path + ".pages",
|
|
17963
|
+
expected: "(Array<ShotboxPage> | undefined)",
|
|
17964
|
+
value: input.pages
|
|
17965
|
+
}, _errorFactory)) && input.pages.every((elem, _index6) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17966
|
+
method: "typia.assertGuard",
|
|
17967
|
+
path: _path + ".pages[" + _index6 + "]",
|
|
17968
|
+
expected: "ShotboxPage",
|
|
17969
|
+
value: elem
|
|
17970
|
+
}, _errorFactory)) && _ao1(elem, _path + ".pages[" + _index6 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17971
|
+
method: "typia.assertGuard",
|
|
17972
|
+
path: _path + ".pages[" + _index6 + "]",
|
|
17973
|
+
expected: "ShotboxPage",
|
|
17974
|
+
value: elem
|
|
17975
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17976
|
+
method: "typia.assertGuard",
|
|
17977
|
+
path: _path + ".pages",
|
|
17978
|
+
expected: "(Array<ShotboxPage> | undefined)",
|
|
17979
|
+
value: input.pages
|
|
17980
|
+
}, _errorFactory); const _ao1 = (input, _path, _exceptionable = true) => (undefined === input.stickyTopRow || "boolean" === typeof input.stickyTopRow || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17981
|
+
method: "typia.assertGuard",
|
|
17982
|
+
path: _path + ".stickyTopRow",
|
|
17983
|
+
expected: "(boolean | undefined)",
|
|
17984
|
+
value: input.stickyTopRow
|
|
17985
|
+
}, _errorFactory)) && (undefined === input.inferGroups || "boolean" === typeof input.inferGroups || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17986
|
+
method: "typia.assertGuard",
|
|
17987
|
+
path: _path + ".inferGroups",
|
|
17988
|
+
expected: "(boolean | undefined)",
|
|
17989
|
+
value: input.inferGroups
|
|
17990
|
+
}, _errorFactory)) && (undefined === input.layout || (Array.isArray(input.layout) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17991
|
+
method: "typia.assertGuard",
|
|
17992
|
+
path: _path + ".layout",
|
|
17993
|
+
expected: "(Array<ShotboxGroup | ShotboxGroup[]> | undefined)",
|
|
17994
|
+
value: input.layout
|
|
17995
|
+
}, _errorFactory)) && input.layout.every((elem, _index7) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17996
|
+
method: "typia.assertGuard",
|
|
17997
|
+
path: _path + ".layout[" + _index7 + "]",
|
|
17998
|
+
expected: "(Array<ShotboxGroup> | ShotboxEventGroup | ShotboxStreamGroup)",
|
|
17999
|
+
value: elem
|
|
18000
|
+
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18001
|
+
method: "typia.assertGuard",
|
|
18002
|
+
path: _path + ".layout[" + _index7 + "]",
|
|
18003
|
+
expected: "(Array<ShotboxGroup> | ShotboxEventGroup | ShotboxStreamGroup)",
|
|
18004
|
+
value: elem
|
|
18005
|
+
}, _errorFactory)) && (Array.isArray(elem) && elem.every((elem, _index8) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18006
|
+
method: "typia.assertGuard",
|
|
18007
|
+
path: _path + ".layout[" + _index7 + "][" + _index8 + "]",
|
|
18008
|
+
expected: "(ShotboxEventGroup | ShotboxStreamGroup)",
|
|
18009
|
+
value: elem
|
|
18010
|
+
}, _errorFactory)) && _au0(elem, _path + ".layout[" + _index7 + "][" + _index8 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18011
|
+
method: "typia.assertGuard",
|
|
18012
|
+
path: _path + ".layout[" + _index7 + "][" + _index8 + "]",
|
|
18013
|
+
expected: "(ShotboxEventGroup | ShotboxStreamGroup)",
|
|
18014
|
+
value: elem
|
|
18015
|
+
}, _errorFactory)) || "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _au0(elem, _path + ".layout[" + _index7 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18016
|
+
method: "typia.assertGuard",
|
|
18017
|
+
path: _path + ".layout[" + _index7 + "]",
|
|
18018
|
+
expected: "(Array<ShotboxGroup> | ShotboxEventGroup | ShotboxStreamGroup)",
|
|
18019
|
+
value: elem
|
|
18020
|
+
}, _errorFactory) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18021
|
+
method: "typia.assertGuard",
|
|
18022
|
+
path: _path + ".layout[" + _index7 + "]",
|
|
18023
|
+
expected: "(Array<ShotboxGroup> | ShotboxEventGroup | ShotboxStreamGroup)",
|
|
18024
|
+
value: elem
|
|
18025
|
+
}, _errorFactory))) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18026
|
+
method: "typia.assertGuard",
|
|
18027
|
+
path: _path + ".layout",
|
|
18028
|
+
expected: "(Array<ShotboxGroup | ShotboxGroup[]> | undefined)",
|
|
18029
|
+
value: input.layout
|
|
18030
|
+
}, _errorFactory)); const _ao2 = (input, _path, _exceptionable = true) => (undefined === input.id || "string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18031
|
+
method: "typia.assertGuard",
|
|
18032
|
+
path: _path + ".id",
|
|
18033
|
+
expected: "(string | undefined)",
|
|
18034
|
+
value: input.id
|
|
18035
|
+
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18036
|
+
method: "typia.assertGuard",
|
|
18037
|
+
path: _path + ".title",
|
|
18038
|
+
expected: "(string | undefined)",
|
|
18039
|
+
value: input.title
|
|
18040
|
+
}, _errorFactory)) && (undefined === input.sticky || "boolean" === typeof input.sticky || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18041
|
+
method: "typia.assertGuard",
|
|
18042
|
+
path: _path + ".sticky",
|
|
18043
|
+
expected: "(boolean | undefined)",
|
|
18044
|
+
value: input.sticky
|
|
18045
|
+
}, _errorFactory)) && (undefined === input.type || "trigger" === input.type || "toggle" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18046
|
+
method: "typia.assertGuard",
|
|
18047
|
+
path: _path + ".type",
|
|
18048
|
+
expected: "(\"toggle\" | \"trigger\" | undefined)",
|
|
18049
|
+
value: input.type
|
|
18050
|
+
}, _errorFactory)) && (undefined === input.width || "string" === typeof input.width || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18051
|
+
method: "typia.assertGuard",
|
|
18052
|
+
path: _path + ".width",
|
|
18053
|
+
expected: "(string | undefined)",
|
|
18054
|
+
value: input.width
|
|
18055
|
+
}, _errorFactory)) && (undefined === input.include || (Array.isArray(input.include) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18056
|
+
method: "typia.assertGuard",
|
|
18057
|
+
path: _path + ".include",
|
|
18058
|
+
expected: "(Array<string> | undefined)",
|
|
18059
|
+
value: input.include
|
|
18060
|
+
}, _errorFactory)) && input.include.every((elem, _index9) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18061
|
+
method: "typia.assertGuard",
|
|
18062
|
+
path: _path + ".include[" + _index9 + "]",
|
|
18063
|
+
expected: "string",
|
|
18064
|
+
value: elem
|
|
18065
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18066
|
+
method: "typia.assertGuard",
|
|
18067
|
+
path: _path + ".include",
|
|
18068
|
+
expected: "(Array<string> | undefined)",
|
|
18069
|
+
value: input.include
|
|
18070
|
+
}, _errorFactory)) && (undefined === input.exclude || (Array.isArray(input.exclude) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18071
|
+
method: "typia.assertGuard",
|
|
18072
|
+
path: _path + ".exclude",
|
|
18073
|
+
expected: "(Array<string> | undefined)",
|
|
18074
|
+
value: input.exclude
|
|
18075
|
+
}, _errorFactory)) && input.exclude.every((elem, _index10) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18076
|
+
method: "typia.assertGuard",
|
|
18077
|
+
path: _path + ".exclude[" + _index10 + "]",
|
|
18078
|
+
expected: "string",
|
|
18079
|
+
value: elem
|
|
18080
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18081
|
+
method: "typia.assertGuard",
|
|
18082
|
+
path: _path + ".exclude",
|
|
18083
|
+
expected: "(Array<string> | undefined)",
|
|
18084
|
+
value: input.exclude
|
|
18085
|
+
}, _errorFactory)) && (undefined === input.states || ("object" === typeof input.states && null !== input.states || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18086
|
+
method: "typia.assertGuard",
|
|
18087
|
+
path: _path + ".states",
|
|
18088
|
+
expected: "(__type | undefined)",
|
|
18089
|
+
value: input.states
|
|
18090
|
+
}, _errorFactory)) && _ao3(input.states, _path + ".states", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18091
|
+
method: "typia.assertGuard",
|
|
18092
|
+
path: _path + ".states",
|
|
18093
|
+
expected: "(__type | undefined)",
|
|
18094
|
+
value: input.states
|
|
18095
|
+
}, _errorFactory)) && (undefined === input.flow || "column" === input.flow || "row" === input.flow || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18096
|
+
method: "typia.assertGuard",
|
|
18097
|
+
path: _path + ".flow",
|
|
18098
|
+
expected: "(\"column\" | \"row\" | undefined)",
|
|
18099
|
+
value: input.flow
|
|
18100
|
+
}, _errorFactory)) && (undefined === input.minRows || "number" === typeof input.minRows || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18101
|
+
method: "typia.assertGuard",
|
|
18102
|
+
path: _path + ".minRows",
|
|
18103
|
+
expected: "(number | undefined)",
|
|
18104
|
+
value: input.minRows
|
|
18105
|
+
}, _errorFactory)) && (undefined === input.maxRows || "number" === typeof input.maxRows || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18106
|
+
method: "typia.assertGuard",
|
|
18107
|
+
path: _path + ".maxRows",
|
|
18108
|
+
expected: "(number | undefined)",
|
|
18109
|
+
value: input.maxRows
|
|
18110
|
+
}, _errorFactory)); const _ao3 = (input, _path, _exceptionable = true) => "boolean" === typeof input.completed || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18111
|
+
method: "typia.assertGuard",
|
|
18112
|
+
path: _path + ".completed",
|
|
18113
|
+
expected: "boolean",
|
|
18114
|
+
value: input.completed
|
|
18115
|
+
}, _errorFactory); const _ao4 = (input, _path, _exceptionable = true) => ("stream" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18116
|
+
method: "typia.assertGuard",
|
|
18117
|
+
path: _path + ".type",
|
|
18118
|
+
expected: "\"stream\"",
|
|
18119
|
+
value: input.type
|
|
18120
|
+
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18121
|
+
method: "typia.assertGuard",
|
|
18122
|
+
path: _path + ".title",
|
|
18123
|
+
expected: "(string | undefined)",
|
|
18124
|
+
value: input.title
|
|
18125
|
+
}, _errorFactory)) && (undefined === input.width || "string" === typeof input.width || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18126
|
+
method: "typia.assertGuard",
|
|
18127
|
+
path: _path + ".width",
|
|
18128
|
+
expected: "(string | undefined)",
|
|
18129
|
+
value: input.width
|
|
18130
|
+
}, _errorFactory)) && (undefined === input.source || "string" === typeof input.source || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18131
|
+
method: "typia.assertGuard",
|
|
18132
|
+
path: _path + ".source",
|
|
18133
|
+
expected: "(string | undefined)",
|
|
18134
|
+
value: input.source
|
|
18135
|
+
}, _errorFactory)); const _au0 = (input, _path, _exceptionable = true) => (() => {
|
|
18136
|
+
if ("stream" === input.type)
|
|
18137
|
+
return _ao4(input, _path, true && _exceptionable);
|
|
18138
|
+
else
|
|
18139
|
+
return _ao2(input, _path, true && _exceptionable);
|
|
18140
|
+
})(); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
18141
|
+
if (false === __is(input)) {
|
|
18142
|
+
_errorFactory = errorFactory;
|
|
18143
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
18144
|
+
method: "typia.assertGuard",
|
|
18145
|
+
path: _path + "",
|
|
18146
|
+
expected: "ShotboxDomainRecord",
|
|
18147
|
+
value: input
|
|
18148
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
18149
|
+
method: "typia.assertGuard",
|
|
18150
|
+
path: _path + "",
|
|
18151
|
+
expected: "ShotboxDomainRecord",
|
|
18152
|
+
value: input
|
|
18153
|
+
}, _errorFactory))(input, "$input", true);
|
|
18154
|
+
}
|
|
18155
|
+
}; })()(input);
|
|
18156
|
+
}
|
|
17346
18157
|
case ":storyboard": {
|
|
17347
18158
|
return (() => { const _io0 = input => Object.keys(input).every(key => {
|
|
17348
18159
|
const value = input[key];
|