@nxtedition/types 23.0.57 → 23.0.58
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 +11 -0
- package/dist/nxtpression.d.ts +177 -10
- 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/search.d.ts +24 -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 +871 -180
- package/dist/records/validate/assert.js +878 -180
- package/dist/records/validate/is.js +37 -11
- package/dist/records/validate/schemas.js +615 -64
- package/dist/records/validate/stringify.js +71 -40
- package/dist/records/validate/utils.js +1 -1
- package/dist/records/validate/validate-equals.js +1291 -278
- package/dist/records/validate/validate.js +833 -169
- 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)",
|
|
13049
13316
|
value: input.asset
|
|
13050
|
-
}, _errorFactory)) && input.asset
|
|
13317
|
+
}, _errorFactory)) && (undefined === input.asset || "string" === typeof input.asset || (Array.isArray(input.asset) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13051
13318
|
method: "typia.assertGuard",
|
|
13052
|
-
path: _path + ".asset
|
|
13319
|
+
path: _path + ".asset",
|
|
13320
|
+
expected: "(Array<string> | string | undefined)",
|
|
13321
|
+
value: input.asset
|
|
13322
|
+
}, _errorFactory)) && input.asset.every((elem, _index3) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13323
|
+
method: "typia.assertGuard",
|
|
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",
|
|
@@ -15136,29 +15428,29 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15136
15428
|
}; })()(input);
|
|
15137
15429
|
}
|
|
15138
15430
|
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 => {
|
|
15431
|
+
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); const _io1 = input => Object.keys(input).every(key => {
|
|
15140
15432
|
const value = input[key];
|
|
15141
15433
|
if (undefined === value)
|
|
15142
15434
|
return true;
|
|
15143
15435
|
return "asc" === value || "desc" === value;
|
|
15144
|
-
}); const _ao0 = (input, _path, _exceptionable = true) => (undefined === input.type || "conditions_and" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15436
|
+
}); 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
15437
|
method: "typia.assertGuard",
|
|
15146
15438
|
path: _path + ".type",
|
|
15147
|
-
expected: "(\"conditions_and\" | undefined)",
|
|
15439
|
+
expected: "(\"conditions_and\" | \"conditions_or\" | undefined)",
|
|
15148
15440
|
value: input.type
|
|
15149
15441
|
}, _errorFactory)) && (undefined === input.sort || (Array.isArray(input.sort) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15150
15442
|
method: "typia.assertGuard",
|
|
15151
15443
|
path: _path + ".sort",
|
|
15152
15444
|
expected: "(Array<__type> | undefined)",
|
|
15153
15445
|
value: input.sort
|
|
15154
|
-
}, _errorFactory)) && input.sort.every((elem,
|
|
15446
|
+
}, _errorFactory)) && input.sort.every((elem, _index4) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15155
15447
|
method: "typia.assertGuard",
|
|
15156
|
-
path: _path + ".sort[" +
|
|
15448
|
+
path: _path + ".sort[" + _index4 + "]",
|
|
15157
15449
|
expected: "__type",
|
|
15158
15450
|
value: elem
|
|
15159
|
-
}, _errorFactory)) && _ao1(elem, _path + ".sort[" +
|
|
15451
|
+
}, _errorFactory)) && _ao1(elem, _path + ".sort[" + _index4 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15160
15452
|
method: "typia.assertGuard",
|
|
15161
|
-
path: _path + ".sort[" +
|
|
15453
|
+
path: _path + ".sort[" + _index4 + "]",
|
|
15162
15454
|
expected: "__type",
|
|
15163
15455
|
value: elem
|
|
15164
15456
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15181,24 +15473,39 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15181
15473
|
path: _path + ".showHidden",
|
|
15182
15474
|
expected: "(boolean | undefined)",
|
|
15183
15475
|
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, {
|
|
15476
|
+
}, _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
15477
|
method: "typia.assertGuard",
|
|
15186
15478
|
path: _path + ".view",
|
|
15187
|
-
expected: "(\"AGENDA_VIEW\" | \"CALENDAR_VIEW\" | \"GRID_VIEW\" | \"LIST_VIEW\" | \"MAP_VIEW\" | \"RESOURCE_VIEW\" | undefined)",
|
|
15479
|
+
expected: "(\"AGENDA_VIEW\" | \"CALENDAR_VIEW\" | \"GRID_VIEW\" | \"LIST_VIEW\" | \"MAP_VIEW\" | \"RESOURCE_VIEW\" | null | undefined)",
|
|
15188
15480
|
value: input.view
|
|
15189
|
-
}, _errorFactory)) && (undefined === input.conditions || Array.isArray(input.conditions) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15481
|
+
}, _errorFactory)) && (undefined === input.conditions || (Array.isArray(input.conditions) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15482
|
+
method: "typia.assertGuard",
|
|
15483
|
+
path: _path + ".conditions",
|
|
15484
|
+
expected: "(Array<SearchCondition> | undefined)",
|
|
15485
|
+
value: input.conditions
|
|
15486
|
+
}, _errorFactory)) && input.conditions.every((elem, _index5) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15487
|
+
method: "typia.assertGuard",
|
|
15488
|
+
path: _path + ".conditions[" + _index5 + "]",
|
|
15489
|
+
expected: "SearchCondition",
|
|
15490
|
+
value: elem
|
|
15491
|
+
}, _errorFactory)) && _ao2(elem, _path + ".conditions[" + _index5 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15492
|
+
method: "typia.assertGuard",
|
|
15493
|
+
path: _path + ".conditions[" + _index5 + "]",
|
|
15494
|
+
expected: "SearchCondition",
|
|
15495
|
+
value: elem
|
|
15496
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15190
15497
|
method: "typia.assertGuard",
|
|
15191
15498
|
path: _path + ".conditions",
|
|
15192
|
-
expected: "(Array<
|
|
15499
|
+
expected: "(Array<SearchCondition> | undefined)",
|
|
15193
15500
|
value: input.conditions
|
|
15194
15501
|
}, _errorFactory)) && (null === input.visibleColumnKeys || undefined === input.visibleColumnKeys || (Array.isArray(input.visibleColumnKeys) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15195
15502
|
method: "typia.assertGuard",
|
|
15196
15503
|
path: _path + ".visibleColumnKeys",
|
|
15197
15504
|
expected: "(Array<string> | null | undefined)",
|
|
15198
15505
|
value: input.visibleColumnKeys
|
|
15199
|
-
}, _errorFactory)) && input.visibleColumnKeys.every((elem,
|
|
15506
|
+
}, _errorFactory)) && input.visibleColumnKeys.every((elem, _index6) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15200
15507
|
method: "typia.assertGuard",
|
|
15201
|
-
path: _path + ".visibleColumnKeys[" +
|
|
15508
|
+
path: _path + ".visibleColumnKeys[" + _index6 + "]",
|
|
15202
15509
|
expected: "string",
|
|
15203
15510
|
value: elem
|
|
15204
15511
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15211,6 +15518,26 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15211
15518
|
path: _path + ".connectionId",
|
|
15212
15519
|
expected: "(null | string | undefined)",
|
|
15213
15520
|
value: input.connectionId
|
|
15521
|
+
}, _errorFactory)) && (undefined === input.calendar || ("object" === typeof input.calendar && null !== input.calendar && false === Array.isArray(input.calendar) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15522
|
+
method: "typia.assertGuard",
|
|
15523
|
+
path: _path + ".calendar",
|
|
15524
|
+
expected: "(__type.o1 | undefined)",
|
|
15525
|
+
value: input.calendar
|
|
15526
|
+
}, _errorFactory)) && _ao3(input.calendar, _path + ".calendar", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15527
|
+
method: "typia.assertGuard",
|
|
15528
|
+
path: _path + ".calendar",
|
|
15529
|
+
expected: "(__type.o1 | undefined)",
|
|
15530
|
+
value: input.calendar
|
|
15531
|
+
}, _errorFactory)) && (undefined === input.refreshInterval || "number" === typeof input.refreshInterval || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15532
|
+
method: "typia.assertGuard",
|
|
15533
|
+
path: _path + ".refreshInterval",
|
|
15534
|
+
expected: "(number | undefined)",
|
|
15535
|
+
value: input.refreshInterval
|
|
15536
|
+
}, _errorFactory)) && (undefined === input.color || "string" === typeof input.color || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15537
|
+
method: "typia.assertGuard",
|
|
15538
|
+
path: _path + ".color",
|
|
15539
|
+
expected: "(string | undefined)",
|
|
15540
|
+
value: input.color
|
|
15214
15541
|
}, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
15215
15542
|
const value = input[key];
|
|
15216
15543
|
if (undefined === value)
|
|
@@ -15221,7 +15548,37 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15221
15548
|
expected: "(\"asc\" | \"desc\")",
|
|
15222
15549
|
value: value
|
|
15223
15550
|
}, _errorFactory);
|
|
15224
|
-
}); const
|
|
15551
|
+
}); const _ao2 = (input, _path, _exceptionable = true) => (undefined === input.field || "string" === typeof input.field || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15552
|
+
method: "typia.assertGuard",
|
|
15553
|
+
path: _path + ".field",
|
|
15554
|
+
expected: "(string | undefined)",
|
|
15555
|
+
value: input.field
|
|
15556
|
+
}, _errorFactory)) && (undefined === input.type || "string" === typeof input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15557
|
+
method: "typia.assertGuard",
|
|
15558
|
+
path: _path + ".type",
|
|
15559
|
+
expected: "(string | undefined)",
|
|
15560
|
+
value: input.type
|
|
15561
|
+
}, _errorFactory)) && (undefined === input.op || "string" === typeof input.op || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15562
|
+
method: "typia.assertGuard",
|
|
15563
|
+
path: _path + ".op",
|
|
15564
|
+
expected: "(string | undefined)",
|
|
15565
|
+
value: input.op
|
|
15566
|
+
}, _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, {
|
|
15567
|
+
method: "typia.assertGuard",
|
|
15568
|
+
path: _path + ".view",
|
|
15569
|
+
expected: "(\"day\" | \"month\" | \"week\" | \"work_week\" | null | undefined)",
|
|
15570
|
+
value: input.view
|
|
15571
|
+
}, _errorFactory)) && (null === input.dateAccessor || undefined === input.dateAccessor || "string" === typeof input.dateAccessor || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15572
|
+
method: "typia.assertGuard",
|
|
15573
|
+
path: _path + ".dateAccessor",
|
|
15574
|
+
expected: "(null | string | undefined)",
|
|
15575
|
+
value: input.dateAccessor
|
|
15576
|
+
}, _errorFactory)) && (undefined === input.agenda || "boolean" === typeof input.agenda || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15577
|
+
method: "typia.assertGuard",
|
|
15578
|
+
path: _path + ".agenda",
|
|
15579
|
+
expected: "(boolean | undefined)",
|
|
15580
|
+
value: input.agenda
|
|
15581
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
15225
15582
|
if (false === __is(input)) {
|
|
15226
15583
|
_errorFactory = errorFactory;
|
|
15227
15584
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
@@ -15239,10 +15596,10 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15239
15596
|
}; })()(input);
|
|
15240
15597
|
}
|
|
15241
15598
|
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, {
|
|
15599
|
+
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
15600
|
method: "typia.assertGuard",
|
|
15244
15601
|
path: _path + ".hits",
|
|
15245
|
-
expected: "Array<string>",
|
|
15602
|
+
expected: "(Array<string> | undefined)",
|
|
15246
15603
|
value: input.hits
|
|
15247
15604
|
}, _errorFactory)) && input.hits.every((elem, _index2) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15248
15605
|
method: "typia.assertGuard",
|
|
@@ -15252,7 +15609,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15252
15609
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15253
15610
|
method: "typia.assertGuard",
|
|
15254
15611
|
path: _path + ".hits",
|
|
15255
|
-
expected: "Array<string>",
|
|
15612
|
+
expected: "(Array<string> | undefined)",
|
|
15256
15613
|
value: input.hits
|
|
15257
15614
|
}, _errorFactory)) && (undefined === input.total || "number" === typeof input.total || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15258
15615
|
method: "typia.assertGuard",
|
|
@@ -15269,10 +15626,10 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15269
15626
|
path: _path + ".error",
|
|
15270
15627
|
expected: "(string | undefined)",
|
|
15271
15628
|
value: input.error
|
|
15272
|
-
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
15629
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
15273
15630
|
if (false === __is(input)) {
|
|
15274
15631
|
_errorFactory = errorFactory;
|
|
15275
|
-
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || __typia_transform__assertGuard._assertGuard(true, {
|
|
15632
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
15276
15633
|
method: "typia.assertGuard",
|
|
15277
15634
|
path: _path + "",
|
|
15278
15635
|
expected: "SearchRecordProvided",
|
|
@@ -15286,8 +15643,74 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15286
15643
|
}
|
|
15287
15644
|
}; })()(input);
|
|
15288
15645
|
}
|
|
15646
|
+
case ":search.conditions": {
|
|
15647
|
+
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, {
|
|
15648
|
+
method: "typia.assertGuard",
|
|
15649
|
+
path: _path + ".value",
|
|
15650
|
+
expected: "(Array<string> | undefined)",
|
|
15651
|
+
value: input.value
|
|
15652
|
+
}, _errorFactory)) && input.value.every((elem, _index2) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15653
|
+
method: "typia.assertGuard",
|
|
15654
|
+
path: _path + ".value[" + _index2 + "]",
|
|
15655
|
+
expected: "string",
|
|
15656
|
+
value: elem
|
|
15657
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15658
|
+
method: "typia.assertGuard",
|
|
15659
|
+
path: _path + ".value",
|
|
15660
|
+
expected: "(Array<string> | undefined)",
|
|
15661
|
+
value: input.value
|
|
15662
|
+
}, _errorFactory); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
15663
|
+
if (false === __is(input)) {
|
|
15664
|
+
_errorFactory = errorFactory;
|
|
15665
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
15666
|
+
method: "typia.assertGuard",
|
|
15667
|
+
path: _path + "",
|
|
15668
|
+
expected: "SearchDomainConditionsRecord",
|
|
15669
|
+
value: input
|
|
15670
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
15671
|
+
method: "typia.assertGuard",
|
|
15672
|
+
path: _path + "",
|
|
15673
|
+
expected: "SearchDomainConditionsRecord",
|
|
15674
|
+
value: input
|
|
15675
|
+
}, _errorFactory))(input, "$input", true);
|
|
15676
|
+
}
|
|
15677
|
+
}; })()(input);
|
|
15678
|
+
}
|
|
15679
|
+
case ":search.visibleColumnKeys": {
|
|
15680
|
+
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, {
|
|
15681
|
+
method: "typia.assertGuard",
|
|
15682
|
+
path: _path + ".value",
|
|
15683
|
+
expected: "(Array<string> | undefined)",
|
|
15684
|
+
value: input.value
|
|
15685
|
+
}, _errorFactory)) && input.value.every((elem, _index2) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15686
|
+
method: "typia.assertGuard",
|
|
15687
|
+
path: _path + ".value[" + _index2 + "]",
|
|
15688
|
+
expected: "string",
|
|
15689
|
+
value: elem
|
|
15690
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15691
|
+
method: "typia.assertGuard",
|
|
15692
|
+
path: _path + ".value",
|
|
15693
|
+
expected: "(Array<string> | undefined)",
|
|
15694
|
+
value: input.value
|
|
15695
|
+
}, _errorFactory); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
15696
|
+
if (false === __is(input)) {
|
|
15697
|
+
_errorFactory = errorFactory;
|
|
15698
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
15699
|
+
method: "typia.assertGuard",
|
|
15700
|
+
path: _path + "",
|
|
15701
|
+
expected: "SearchDomainVisibleColumnKeysRecord",
|
|
15702
|
+
value: input
|
|
15703
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
15704
|
+
method: "typia.assertGuard",
|
|
15705
|
+
path: _path + "",
|
|
15706
|
+
expected: "SearchDomainVisibleColumnKeysRecord",
|
|
15707
|
+
value: input
|
|
15708
|
+
}, _errorFactory))(input, "$input", true);
|
|
15709
|
+
}
|
|
15710
|
+
}; })()(input);
|
|
15711
|
+
}
|
|
15289
15712
|
case ":settings": {
|
|
15290
|
-
return (() => { const _iv21 = 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 _iv25 = new Set(["default", "manual", "az", "za", "newest", "oldest", "mostrecent", "leastrecent", "earliestdeadline", "latestdeadline"]); const
|
|
15713
|
+
return (() => { const _iv21 = 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 _iv25 = new Set(["default", "manual", "az", "za", "newest", "oldest", "mostrecent", "leastrecent", "earliestdeadline", "latestdeadline"]); const _av52 = 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 _av56 = 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) && _io19(input.script)) && (undefined === input.events || "object" === typeof input.events && null !== input.events && false === Array.isArray(input.events) && _io24(input.events)) && (undefined === input.rundown || "object" === typeof input.rundown && null !== input.rundown && false === Array.isArray(input.rundown) && _io27(input.rundown)) && (undefined === input.gallery || "object" === typeof input.gallery && null !== input.gallery && false === Array.isArray(input.gallery) && _io28(input.gallery)) && (undefined === input.history || "boolean" === typeof input.history) && (undefined === input.keymap || "object" === typeof input.keymap && null !== input.keymap && false === Array.isArray(input.keymap) && _io29(input.keymap)) && (undefined === input.media || "object" === typeof input.media && null !== input.media && false === Array.isArray(input.media) && _io42(input.media)) && (undefined === input.edit || "object" === typeof input.edit && null !== input.edit && false === Array.isArray(input.edit) && _io55(input.edit)) && (undefined === input.commands || Array.isArray(input.commands) && input.commands.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io57(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) && _io58(input.storyboard)) && (undefined === input.print || "object" === typeof input.print && null !== input.print && false === Array.isArray(input.print) && _io67(input.print)) && (undefined === input.hiddenPreviews || Array.isArray(input.hiddenPreviews) && input.hiddenPreviews.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io68(elem))) && (undefined === input.plugins || "object" === typeof input.plugins && null !== input.plugins && false === Array.isArray(input.plugins) && _io69(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) && _io72(input.featurePreview)) && (undefined === input.flags || "object" === typeof input.flags && null !== input.flags && false === Array.isArray(input.flags) && _io73(input.flags)) && (undefined === input.notifications || "object" === typeof input.notifications && null !== input.notifications && false === Array.isArray(input.notifications) && _io74(input.notifications)) && (undefined === input.suppressDeleteAlert || "boolean" === typeof input.suppressDeleteAlert) && (undefined === input.utilsAssetEditorPanel || "object" === typeof input.utilsAssetEditorPanel && null !== input.utilsAssetEditorPanel && false === Array.isArray(input.utilsAssetEditorPanel) && _io77(input.utilsAssetEditorPanel)); const _io1 = input => (undefined === input.overrideUserContact || "boolean" === typeof input.overrideUserContact) && (undefined === input.overrideUserLogin || "boolean" === typeof input.overrideUserLogin); const _io2 = input => 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
15714
|
if (["settingsPanelStore"].some(prop => key === prop))
|
|
15292
15715
|
return true;
|
|
15293
15716
|
const value = input[key];
|
|
@@ -15359,12 +15782,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15359
15782
|
if (undefined === value)
|
|
15360
15783
|
return true;
|
|
15361
15784
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io31(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 => {
|
|
15785
|
+
}); 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) && (undefined === input.titleLines || "number" === typeof input.titleLines); 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.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 _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 => {
|
|
15363
15786
|
const value = input[key];
|
|
15364
15787
|
if (undefined === value)
|
|
15365
15788
|
return true;
|
|
15366
15789
|
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, {
|
|
15790
|
+
}); const _io77 = 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
15791
|
method: "typia.assertGuard",
|
|
15369
15792
|
path: _path + ".autoLogoutTime",
|
|
15370
15793
|
expected: "(number | undefined)",
|
|
@@ -15434,19 +15857,19 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15434
15857
|
path: _path + ".exclusiveTagGroups",
|
|
15435
15858
|
expected: "(Array<Array<string>> | undefined)",
|
|
15436
15859
|
value: input.exclusiveTagGroups
|
|
15437
|
-
}, _errorFactory)) && input.exclusiveTagGroups.every((elem,
|
|
15860
|
+
}, _errorFactory)) && input.exclusiveTagGroups.every((elem, _index32) => (Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15438
15861
|
method: "typia.assertGuard",
|
|
15439
|
-
path: _path + ".exclusiveTagGroups[" +
|
|
15862
|
+
path: _path + ".exclusiveTagGroups[" + _index32 + "]",
|
|
15440
15863
|
expected: "Array<string>",
|
|
15441
15864
|
value: elem
|
|
15442
|
-
}, _errorFactory)) && elem.every((elem,
|
|
15865
|
+
}, _errorFactory)) && elem.every((elem, _index33) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15443
15866
|
method: "typia.assertGuard",
|
|
15444
|
-
path: _path + ".exclusiveTagGroups[" +
|
|
15867
|
+
path: _path + ".exclusiveTagGroups[" + _index32 + "][" + _index33 + "]",
|
|
15445
15868
|
expected: "string",
|
|
15446
15869
|
value: elem
|
|
15447
15870
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15448
15871
|
method: "typia.assertGuard",
|
|
15449
|
-
path: _path + ".exclusiveTagGroups[" +
|
|
15872
|
+
path: _path + ".exclusiveTagGroups[" + _index32 + "]",
|
|
15450
15873
|
expected: "Array<string>",
|
|
15451
15874
|
value: elem
|
|
15452
15875
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15594,14 +16017,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15594
16017
|
path: _path + ".commands",
|
|
15595
16018
|
expected: "(Array<__type>.o4 | undefined)",
|
|
15596
16019
|
value: input.commands
|
|
15597
|
-
}, _errorFactory)) && input.commands.every((elem,
|
|
16020
|
+
}, _errorFactory)) && input.commands.every((elem, _index34) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15598
16021
|
method: "typia.assertGuard",
|
|
15599
|
-
path: _path + ".commands[" +
|
|
16022
|
+
path: _path + ".commands[" + _index34 + "]",
|
|
15600
16023
|
expected: "__type.o50",
|
|
15601
16024
|
value: elem
|
|
15602
|
-
}, _errorFactory)) && _ao57(elem, _path + ".commands[" +
|
|
16025
|
+
}, _errorFactory)) && _ao57(elem, _path + ".commands[" + _index34 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15603
16026
|
method: "typia.assertGuard",
|
|
15604
|
-
path: _path + ".commands[" +
|
|
16027
|
+
path: _path + ".commands[" + _index34 + "]",
|
|
15605
16028
|
expected: "__type.o50",
|
|
15606
16029
|
value: elem
|
|
15607
16030
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15614,9 +16037,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15614
16037
|
path: _path + ".predefinedTags",
|
|
15615
16038
|
expected: "(Array<string> | undefined)",
|
|
15616
16039
|
value: input.predefinedTags
|
|
15617
|
-
}, _errorFactory)) && input.predefinedTags.every((elem,
|
|
16040
|
+
}, _errorFactory)) && input.predefinedTags.every((elem, _index35) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15618
16041
|
method: "typia.assertGuard",
|
|
15619
|
-
path: _path + ".predefinedTags[" +
|
|
16042
|
+
path: _path + ".predefinedTags[" + _index35 + "]",
|
|
15620
16043
|
expected: "string",
|
|
15621
16044
|
value: elem
|
|
15622
16045
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15649,14 +16072,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15649
16072
|
path: _path + ".hiddenPreviews",
|
|
15650
16073
|
expected: "(Array<__type>.o5 | undefined)",
|
|
15651
16074
|
value: input.hiddenPreviews
|
|
15652
|
-
}, _errorFactory)) && input.hiddenPreviews.every((elem,
|
|
16075
|
+
}, _errorFactory)) && input.hiddenPreviews.every((elem, _index36) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15653
16076
|
method: "typia.assertGuard",
|
|
15654
|
-
path: _path + ".hiddenPreviews[" +
|
|
16077
|
+
path: _path + ".hiddenPreviews[" + _index36 + "]",
|
|
15655
16078
|
expected: "__type.o61",
|
|
15656
16079
|
value: elem
|
|
15657
|
-
}, _errorFactory)) && _ao68(elem, _path + ".hiddenPreviews[" +
|
|
16080
|
+
}, _errorFactory)) && _ao68(elem, _path + ".hiddenPreviews[" + _index36 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15658
16081
|
method: "typia.assertGuard",
|
|
15659
|
-
path: _path + ".hiddenPreviews[" +
|
|
16082
|
+
path: _path + ".hiddenPreviews[" + _index36 + "]",
|
|
15660
16083
|
expected: "__type.o61",
|
|
15661
16084
|
value: elem
|
|
15662
16085
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15719,6 +16142,16 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15719
16142
|
path: _path + ".suppressDeleteAlert",
|
|
15720
16143
|
expected: "(boolean | undefined)",
|
|
15721
16144
|
value: input.suppressDeleteAlert
|
|
16145
|
+
}, _errorFactory)) && (undefined === input.utilsAssetEditorPanel || ("object" === typeof input.utilsAssetEditorPanel && null !== input.utilsAssetEditorPanel && false === Array.isArray(input.utilsAssetEditorPanel) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16146
|
+
method: "typia.assertGuard",
|
|
16147
|
+
path: _path + ".utilsAssetEditorPanel",
|
|
16148
|
+
expected: "(__type.o70 | undefined)",
|
|
16149
|
+
value: input.utilsAssetEditorPanel
|
|
16150
|
+
}, _errorFactory)) && _ao77(input.utilsAssetEditorPanel, _path + ".utilsAssetEditorPanel", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16151
|
+
method: "typia.assertGuard",
|
|
16152
|
+
path: _path + ".utilsAssetEditorPanel",
|
|
16153
|
+
expected: "(__type.o70 | undefined)",
|
|
16154
|
+
value: input.utilsAssetEditorPanel
|
|
15722
16155
|
}, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => (undefined === input.overrideUserContact || "boolean" === typeof input.overrideUserContact || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15723
16156
|
method: "typia.assertGuard",
|
|
15724
16157
|
path: _path + ".overrideUserContact",
|
|
@@ -15861,9 +16294,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15861
16294
|
path: _path + ".sortOrder",
|
|
15862
16295
|
expected: "(Array<string> | undefined)",
|
|
15863
16296
|
value: input.sortOrder
|
|
15864
|
-
}, _errorFactory)) && input.sortOrder.every((elem,
|
|
16297
|
+
}, _errorFactory)) && input.sortOrder.every((elem, _index37) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15865
16298
|
method: "typia.assertGuard",
|
|
15866
|
-
path: _path + ".sortOrder[" +
|
|
16299
|
+
path: _path + ".sortOrder[" + _index37 + "]",
|
|
15867
16300
|
expected: "string",
|
|
15868
16301
|
value: elem
|
|
15869
16302
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15876,9 +16309,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15876
16309
|
path: _path + ".exclude",
|
|
15877
16310
|
expected: "(Array<string> | undefined)",
|
|
15878
16311
|
value: input.exclude
|
|
15879
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
16312
|
+
}, _errorFactory)) && input.exclude.every((elem, _index38) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15880
16313
|
method: "typia.assertGuard",
|
|
15881
|
-
path: _path + ".exclude[" +
|
|
16314
|
+
path: _path + ".exclude[" + _index38 + "]",
|
|
15882
16315
|
expected: "string",
|
|
15883
16316
|
value: elem
|
|
15884
16317
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15891,9 +16324,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15891
16324
|
path: _path + ".include",
|
|
15892
16325
|
expected: "(Array<string> | undefined)",
|
|
15893
16326
|
value: input.include
|
|
15894
|
-
}, _errorFactory)) && input.include.every((elem,
|
|
16327
|
+
}, _errorFactory)) && input.include.every((elem, _index39) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15895
16328
|
method: "typia.assertGuard",
|
|
15896
|
-
path: _path + ".include[" +
|
|
16329
|
+
path: _path + ".include[" + _index39 + "]",
|
|
15897
16330
|
expected: "string",
|
|
15898
16331
|
value: elem
|
|
15899
16332
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15906,9 +16339,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15906
16339
|
path: _path + ".exclude",
|
|
15907
16340
|
expected: "(Array<string> | undefined)",
|
|
15908
16341
|
value: input.exclude
|
|
15909
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
16342
|
+
}, _errorFactory)) && input.exclude.every((elem, _index40) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15910
16343
|
method: "typia.assertGuard",
|
|
15911
|
-
path: _path + ".exclude[" +
|
|
16344
|
+
path: _path + ".exclude[" + _index40 + "]",
|
|
15912
16345
|
expected: "string",
|
|
15913
16346
|
value: elem
|
|
15914
16347
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15921,9 +16354,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15921
16354
|
path: _path + ".include",
|
|
15922
16355
|
expected: "(Array<string> | undefined)",
|
|
15923
16356
|
value: input.include
|
|
15924
|
-
}, _errorFactory)) && input.include.every((elem,
|
|
16357
|
+
}, _errorFactory)) && input.include.every((elem, _index41) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15925
16358
|
method: "typia.assertGuard",
|
|
15926
|
-
path: _path + ".include[" +
|
|
16359
|
+
path: _path + ".include[" + _index41 + "]",
|
|
15927
16360
|
expected: "string",
|
|
15928
16361
|
value: elem
|
|
15929
16362
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15936,9 +16369,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15936
16369
|
path: _path + ".exclude",
|
|
15937
16370
|
expected: "(Array<string> | undefined)",
|
|
15938
16371
|
value: input.exclude
|
|
15939
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
16372
|
+
}, _errorFactory)) && input.exclude.every((elem, _index42) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15940
16373
|
method: "typia.assertGuard",
|
|
15941
|
-
path: _path + ".exclude[" +
|
|
16374
|
+
path: _path + ".exclude[" + _index42 + "]",
|
|
15942
16375
|
expected: "string",
|
|
15943
16376
|
value: elem
|
|
15944
16377
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15951,9 +16384,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15951
16384
|
path: _path + ".include",
|
|
15952
16385
|
expected: "(Array<string> | undefined)",
|
|
15953
16386
|
value: input.include
|
|
15954
|
-
}, _errorFactory)) && input.include.every((elem,
|
|
16387
|
+
}, _errorFactory)) && input.include.every((elem, _index43) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15955
16388
|
method: "typia.assertGuard",
|
|
15956
|
-
path: _path + ".include[" +
|
|
16389
|
+
path: _path + ".include[" + _index43 + "]",
|
|
15957
16390
|
expected: "string",
|
|
15958
16391
|
value: elem
|
|
15959
16392
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15966,9 +16399,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15966
16399
|
path: _path + ".exclude",
|
|
15967
16400
|
expected: "(Array<string> | undefined)",
|
|
15968
16401
|
value: input.exclude
|
|
15969
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
16402
|
+
}, _errorFactory)) && input.exclude.every((elem, _index44) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15970
16403
|
method: "typia.assertGuard",
|
|
15971
|
-
path: _path + ".exclude[" +
|
|
16404
|
+
path: _path + ".exclude[" + _index44 + "]",
|
|
15972
16405
|
expected: "string",
|
|
15973
16406
|
value: elem
|
|
15974
16407
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16046,14 +16479,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16046
16479
|
path: _path + ".colorTags",
|
|
16047
16480
|
expected: "(Array<PromotedTag> | undefined)",
|
|
16048
16481
|
value: input.colorTags
|
|
16049
|
-
}, _errorFactory)) && input.colorTags.every((elem,
|
|
16482
|
+
}, _errorFactory)) && input.colorTags.every((elem, _index45) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16050
16483
|
method: "typia.assertGuard",
|
|
16051
|
-
path: _path + ".colorTags[" +
|
|
16484
|
+
path: _path + ".colorTags[" + _index45 + "]",
|
|
16052
16485
|
expected: "PromotedTag",
|
|
16053
16486
|
value: elem
|
|
16054
|
-
}, _errorFactory)) && _ao21(elem, _path + ".colorTags[" +
|
|
16487
|
+
}, _errorFactory)) && _ao21(elem, _path + ".colorTags[" + _index45 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16055
16488
|
method: "typia.assertGuard",
|
|
16056
|
-
path: _path + ".colorTags[" +
|
|
16489
|
+
path: _path + ".colorTags[" + _index45 + "]",
|
|
16057
16490
|
expected: "PromotedTag",
|
|
16058
16491
|
value: elem
|
|
16059
16492
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16146,9 +16579,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16146
16579
|
path: _path + ".favorites",
|
|
16147
16580
|
expected: "(Array<string> | undefined)",
|
|
16148
16581
|
value: input.favorites
|
|
16149
|
-
}, _errorFactory)) && input.favorites.every((elem,
|
|
16582
|
+
}, _errorFactory)) && input.favorites.every((elem, _index46) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16150
16583
|
method: "typia.assertGuard",
|
|
16151
|
-
path: _path + ".favorites[" +
|
|
16584
|
+
path: _path + ".favorites[" + _index46 + "]",
|
|
16152
16585
|
expected: "string",
|
|
16153
16586
|
value: elem
|
|
16154
16587
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16566,9 +16999,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16566
16999
|
path: _path + ".playbackRates",
|
|
16567
17000
|
expected: "(Array<number> | undefined)",
|
|
16568
17001
|
value: input.playbackRates
|
|
16569
|
-
}, _errorFactory)) && input.playbackRates.every((elem,
|
|
17002
|
+
}, _errorFactory)) && input.playbackRates.every((elem, _index47) => "number" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16570
17003
|
method: "typia.assertGuard",
|
|
16571
|
-
path: _path + ".playbackRates[" +
|
|
17004
|
+
path: _path + ".playbackRates[" + _index47 + "]",
|
|
16572
17005
|
expected: "number",
|
|
16573
17006
|
value: elem
|
|
16574
17007
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16601,14 +17034,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16601
17034
|
path: _path + ".guides",
|
|
16602
17035
|
expected: "(Array<__type>.o2 | undefined)",
|
|
16603
17036
|
value: input.guides
|
|
16604
|
-
}, _errorFactory)) && input.guides.every((elem,
|
|
17037
|
+
}, _errorFactory)) && input.guides.every((elem, _index48) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16605
17038
|
method: "typia.assertGuard",
|
|
16606
|
-
path: _path + ".guides[" +
|
|
17039
|
+
path: _path + ".guides[" + _index48 + "]",
|
|
16607
17040
|
expected: "__type.o41",
|
|
16608
17041
|
value: elem
|
|
16609
|
-
}, _errorFactory)) && _ao48(elem, _path + ".guides[" +
|
|
17042
|
+
}, _errorFactory)) && _ao48(elem, _path + ".guides[" + _index48 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16610
17043
|
method: "typia.assertGuard",
|
|
16611
|
-
path: _path + ".guides[" +
|
|
17044
|
+
path: _path + ".guides[" + _index48 + "]",
|
|
16612
17045
|
expected: "__type.o41",
|
|
16613
17046
|
value: elem
|
|
16614
17047
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16696,14 +17129,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16696
17129
|
path: _path + ".suggestions",
|
|
16697
17130
|
expected: "(Array<__type> | undefined)",
|
|
16698
17131
|
value: input.suggestions
|
|
16699
|
-
}, _errorFactory)) && input.suggestions.every((elem,
|
|
17132
|
+
}, _errorFactory)) && input.suggestions.every((elem, _index49) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16700
17133
|
method: "typia.assertGuard",
|
|
16701
|
-
path: _path + ".suggestions[" +
|
|
17134
|
+
path: _path + ".suggestions[" + _index49 + "]",
|
|
16702
17135
|
expected: "__type.o39",
|
|
16703
17136
|
value: elem
|
|
16704
|
-
}, _errorFactory)) && _ao46(elem, _path + ".suggestions[" +
|
|
17137
|
+
}, _errorFactory)) && _ao46(elem, _path + ".suggestions[" + _index49 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16705
17138
|
method: "typia.assertGuard",
|
|
16706
|
-
path: _path + ".suggestions[" +
|
|
17139
|
+
path: _path + ".suggestions[" + _index49 + "]",
|
|
16707
17140
|
expected: "__type.o39",
|
|
16708
17141
|
value: elem
|
|
16709
17142
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16716,14 +17149,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16716
17149
|
path: _path + ".colors",
|
|
16717
17150
|
expected: "(Array<__type>.o1 | undefined)",
|
|
16718
17151
|
value: input.colors
|
|
16719
|
-
}, _errorFactory)) && input.colors.every((elem,
|
|
17152
|
+
}, _errorFactory)) && input.colors.every((elem, _index50) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16720
17153
|
method: "typia.assertGuard",
|
|
16721
|
-
path: _path + ".colors[" +
|
|
17154
|
+
path: _path + ".colors[" + _index50 + "]",
|
|
16722
17155
|
expected: "__type.o40",
|
|
16723
17156
|
value: elem
|
|
16724
|
-
}, _errorFactory)) && _ao47(elem, _path + ".colors[" +
|
|
17157
|
+
}, _errorFactory)) && _ao47(elem, _path + ".colors[" + _index50 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16725
17158
|
method: "typia.assertGuard",
|
|
16726
|
-
path: _path + ".colors[" +
|
|
17159
|
+
path: _path + ".colors[" + _index50 + "]",
|
|
16727
17160
|
expected: "__type.o40",
|
|
16728
17161
|
value: elem
|
|
16729
17162
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16736,9 +17169,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16736
17169
|
path: _path + ".overridableProperties",
|
|
16737
17170
|
expected: "(Array<keyof SubtitleStyle | null> | undefined)",
|
|
16738
17171
|
value: input.overridableProperties
|
|
16739
|
-
}, _errorFactory)) && input.overridableProperties.every((elem,
|
|
17172
|
+
}, _errorFactory)) && input.overridableProperties.every((elem, _index51) => null === elem || true === _av52.has(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16740
17173
|
method: "typia.assertGuard",
|
|
16741
|
-
path: _path + ".overridableProperties[" +
|
|
17174
|
+
path: _path + ".overridableProperties[" + _index51 + "]",
|
|
16742
17175
|
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
17176
|
value: elem
|
|
16744
17177
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16836,14 +17269,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16836
17269
|
path: _path + ".text",
|
|
16837
17270
|
expected: "(Array<__type>.o3 | undefined)",
|
|
16838
17271
|
value: input.text
|
|
16839
|
-
}, _errorFactory)) && input.text.every((elem,
|
|
17272
|
+
}, _errorFactory)) && input.text.every((elem, _index53) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16840
17273
|
method: "typia.assertGuard",
|
|
16841
|
-
path: _path + ".text[" +
|
|
17274
|
+
path: _path + ".text[" + _index53 + "]",
|
|
16842
17275
|
expected: "__type.o46",
|
|
16843
17276
|
value: elem
|
|
16844
|
-
}, _errorFactory)) && _ao53(elem, _path + ".text[" +
|
|
17277
|
+
}, _errorFactory)) && _ao53(elem, _path + ".text[" + _index53 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16845
17278
|
method: "typia.assertGuard",
|
|
16846
|
-
path: _path + ".text[" +
|
|
17279
|
+
path: _path + ".text[" + _index53 + "]",
|
|
16847
17280
|
expected: "__type.o46",
|
|
16848
17281
|
value: elem
|
|
16849
17282
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16891,9 +17324,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16891
17324
|
path: _path + ".args",
|
|
16892
17325
|
expected: "(Array<string> | undefined)",
|
|
16893
17326
|
value: input.args
|
|
16894
|
-
}, _errorFactory)) && input.args.every((elem,
|
|
17327
|
+
}, _errorFactory)) && input.args.every((elem, _index54) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16895
17328
|
method: "typia.assertGuard",
|
|
16896
|
-
path: _path + ".args[" +
|
|
17329
|
+
path: _path + ".args[" + _index54 + "]",
|
|
16897
17330
|
expected: "string",
|
|
16898
17331
|
value: elem
|
|
16899
17332
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16956,9 +17389,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16956
17389
|
path: _path + ".args",
|
|
16957
17390
|
expected: "(Array<string> | undefined)",
|
|
16958
17391
|
value: input.args
|
|
16959
|
-
}, _errorFactory)) && input.args.every((elem,
|
|
17392
|
+
}, _errorFactory)) && input.args.every((elem, _index55) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16960
17393
|
method: "typia.assertGuard",
|
|
16961
|
-
path: _path + ".args[" +
|
|
17394
|
+
path: _path + ".args[" + _index55 + "]",
|
|
16962
17395
|
expected: "string",
|
|
16963
17396
|
value: elem
|
|
16964
17397
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17071,7 +17504,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17071
17504
|
path: _path + ".search",
|
|
17072
17505
|
expected: "(__type.o58 | undefined)",
|
|
17073
17506
|
value: input.search
|
|
17074
|
-
}, _errorFactory)) && (undefined === input.sortMode || true ===
|
|
17507
|
+
}, _errorFactory)) && (undefined === input.sortMode || true === _av56.has(input.sortMode) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17075
17508
|
method: "typia.assertGuard",
|
|
17076
17509
|
path: _path + ".sortMode",
|
|
17077
17510
|
expected: "(\"az\" | \"default\" | \"earliestdeadline\" | \"latestdeadline\" | \"leastrecent\" | \"manual\" | \"mostrecent\" | \"newest\" | \"oldest\" | \"za\" | undefined)",
|
|
@@ -17081,19 +17514,24 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17081
17514
|
path: _path + ".maxItemsDisplayed",
|
|
17082
17515
|
expected: "(number | undefined)",
|
|
17083
17516
|
value: input.maxItemsDisplayed
|
|
17084
|
-
}, _errorFactory); const _ao66 = (input, _path, _exceptionable = true) => undefined === input.maxHeight || "number" === typeof input.maxHeight || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17517
|
+
}, _errorFactory); const _ao66 = (input, _path, _exceptionable = true) => (undefined === input.maxHeight || "number" === typeof input.maxHeight || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17085
17518
|
method: "typia.assertGuard",
|
|
17086
17519
|
path: _path + ".maxHeight",
|
|
17087
17520
|
expected: "(number | undefined)",
|
|
17088
17521
|
value: input.maxHeight
|
|
17089
|
-
}, _errorFactory)
|
|
17522
|
+
}, _errorFactory)) && (undefined === input.titleLines || "number" === typeof input.titleLines || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17523
|
+
method: "typia.assertGuard",
|
|
17524
|
+
path: _path + ".titleLines",
|
|
17525
|
+
expected: "(number | undefined)",
|
|
17526
|
+
value: input.titleLines
|
|
17527
|
+
}, _errorFactory)); const _ao67 = (input, _path, _exceptionable = true) => undefined === input.fontFamilies || (Array.isArray(input.fontFamilies) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17090
17528
|
method: "typia.assertGuard",
|
|
17091
17529
|
path: _path + ".fontFamilies",
|
|
17092
17530
|
expected: "(Array<string> | undefined)",
|
|
17093
17531
|
value: input.fontFamilies
|
|
17094
|
-
}, _errorFactory)) && input.fontFamilies.every((elem,
|
|
17532
|
+
}, _errorFactory)) && input.fontFamilies.every((elem, _index57) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17095
17533
|
method: "typia.assertGuard",
|
|
17096
|
-
path: _path + ".fontFamilies[" +
|
|
17534
|
+
path: _path + ".fontFamilies[" + _index57 + "]",
|
|
17097
17535
|
expected: "string",
|
|
17098
17536
|
value: elem
|
|
17099
17537
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17161,6 +17599,16 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17161
17599
|
path: _path + ".utils",
|
|
17162
17600
|
expected: "(boolean | undefined)",
|
|
17163
17601
|
value: input.utils
|
|
17602
|
+
}, _errorFactory)) && (undefined === input.utilsAssetEditor || "boolean" === typeof input.utilsAssetEditor || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17603
|
+
method: "typia.assertGuard",
|
|
17604
|
+
path: _path + ".utilsAssetEditor",
|
|
17605
|
+
expected: "(boolean | undefined)",
|
|
17606
|
+
value: input.utilsAssetEditor
|
|
17607
|
+
}, _errorFactory)) && (undefined === input.utilsAssetPanel || "boolean" === typeof input.utilsAssetPanel || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17608
|
+
method: "typia.assertGuard",
|
|
17609
|
+
path: _path + ".utilsAssetPanel",
|
|
17610
|
+
expected: "(boolean | undefined)",
|
|
17611
|
+
value: input.utilsAssetPanel
|
|
17164
17612
|
}, _errorFactory)) && (undefined === input.history || "boolean" === typeof input.history || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17165
17613
|
method: "typia.assertGuard",
|
|
17166
17614
|
path: _path + ".history",
|
|
@@ -17256,9 +17704,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17256
17704
|
path: _path + ".comment",
|
|
17257
17705
|
expected: "(Array<NotificationReason> | undefined)",
|
|
17258
17706
|
value: input.comment
|
|
17259
|
-
}, _errorFactory)) && input.comment.every((elem,
|
|
17707
|
+
}, _errorFactory)) && input.comment.every((elem, _index58) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17260
17708
|
method: "typia.assertGuard",
|
|
17261
|
-
path: _path + ".comment[" +
|
|
17709
|
+
path: _path + ".comment[" + _index58 + "]",
|
|
17262
17710
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
17263
17711
|
value: elem
|
|
17264
17712
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17271,9 +17719,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17271
17719
|
path: _path + ".assigned",
|
|
17272
17720
|
expected: "(Array<NotificationReason> | undefined)",
|
|
17273
17721
|
value: input.assigned
|
|
17274
|
-
}, _errorFactory)) && input.assigned.every((elem,
|
|
17722
|
+
}, _errorFactory)) && input.assigned.every((elem, _index59) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17275
17723
|
method: "typia.assertGuard",
|
|
17276
|
-
path: _path + ".assigned[" +
|
|
17724
|
+
path: _path + ".assigned[" + _index59 + "]",
|
|
17277
17725
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
17278
17726
|
value: elem
|
|
17279
17727
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17286,9 +17734,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17286
17734
|
path: _path + ".unassigned",
|
|
17287
17735
|
expected: "(Array<NotificationReason> | undefined)",
|
|
17288
17736
|
value: input.unassigned
|
|
17289
|
-
}, _errorFactory)) && input.unassigned.every((elem,
|
|
17737
|
+
}, _errorFactory)) && input.unassigned.every((elem, _index60) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17290
17738
|
method: "typia.assertGuard",
|
|
17291
|
-
path: _path + ".unassigned[" +
|
|
17739
|
+
path: _path + ".unassigned[" + _index60 + "]",
|
|
17292
17740
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
17293
17741
|
value: elem
|
|
17294
17742
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17315,9 +17763,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17315
17763
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
17316
17764
|
expected: "Array<NotificationReason>",
|
|
17317
17765
|
value: value
|
|
17318
|
-
}, _errorFactory)) && value.every((elem,
|
|
17766
|
+
}, _errorFactory)) && value.every((elem, _index61) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17319
17767
|
method: "typia.assertGuard",
|
|
17320
|
-
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key) + "[" +
|
|
17768
|
+
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key) + "[" + _index61 + "]",
|
|
17321
17769
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
17322
17770
|
value: elem
|
|
17323
17771
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17326,7 +17774,47 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17326
17774
|
expected: "Array<NotificationReason>",
|
|
17327
17775
|
value: value
|
|
17328
17776
|
}, _errorFactory);
|
|
17329
|
-
}); const
|
|
17777
|
+
}); const _ao77 = (input, _path, _exceptionable = true) => (undefined === input.stateFilter || (Array.isArray(input.stateFilter) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17778
|
+
method: "typia.assertGuard",
|
|
17779
|
+
path: _path + ".stateFilter",
|
|
17780
|
+
expected: "(Array<number> | undefined)",
|
|
17781
|
+
value: input.stateFilter
|
|
17782
|
+
}, _errorFactory)) && input.stateFilter.every((elem, _index62) => "number" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17783
|
+
method: "typia.assertGuard",
|
|
17784
|
+
path: _path + ".stateFilter[" + _index62 + "]",
|
|
17785
|
+
expected: "number",
|
|
17786
|
+
value: elem
|
|
17787
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17788
|
+
method: "typia.assertGuard",
|
|
17789
|
+
path: _path + ".stateFilter",
|
|
17790
|
+
expected: "(Array<number> | undefined)",
|
|
17791
|
+
value: input.stateFilter
|
|
17792
|
+
}, _errorFactory)) && (undefined === input.textFilter || "string" === typeof input.textFilter || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17793
|
+
method: "typia.assertGuard",
|
|
17794
|
+
path: _path + ".textFilter",
|
|
17795
|
+
expected: "(string | undefined)",
|
|
17796
|
+
value: input.textFilter
|
|
17797
|
+
}, _errorFactory)) && (undefined === input.showEmpty || "boolean" === typeof input.showEmpty || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17798
|
+
method: "typia.assertGuard",
|
|
17799
|
+
path: _path + ".showEmpty",
|
|
17800
|
+
expected: "(boolean | undefined)",
|
|
17801
|
+
value: input.showEmpty
|
|
17802
|
+
}, _errorFactory)) && (undefined === input.selectedRecord || "string" === typeof input.selectedRecord || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17803
|
+
method: "typia.assertGuard",
|
|
17804
|
+
path: _path + ".selectedRecord",
|
|
17805
|
+
expected: "(string | undefined)",
|
|
17806
|
+
value: input.selectedRecord
|
|
17807
|
+
}, _errorFactory)) && (undefined === input.subscribeSearchHits || "boolean" === typeof input.subscribeSearchHits || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17808
|
+
method: "typia.assertGuard",
|
|
17809
|
+
path: _path + ".subscribeSearchHits",
|
|
17810
|
+
expected: "(boolean | undefined)",
|
|
17811
|
+
value: input.subscribeSearchHits
|
|
17812
|
+
}, _errorFactory)) && (undefined === input.parseRegex || "boolean" === typeof input.parseRegex || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17813
|
+
method: "typia.assertGuard",
|
|
17814
|
+
path: _path + ".parseRegex",
|
|
17815
|
+
expected: "(boolean | undefined)",
|
|
17816
|
+
value: input.parseRegex
|
|
17817
|
+
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
17330
17818
|
if (false === __is(input)) {
|
|
17331
17819
|
_errorFactory = errorFactory;
|
|
17332
17820
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
@@ -17343,6 +17831,209 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17343
17831
|
}
|
|
17344
17832
|
}; })()(input);
|
|
17345
17833
|
}
|
|
17834
|
+
case ":shotbox": {
|
|
17835
|
+
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 => (() => {
|
|
17836
|
+
if ("stream" === input.type)
|
|
17837
|
+
return _io4(input);
|
|
17838
|
+
else
|
|
17839
|
+
return _io2(input);
|
|
17840
|
+
})(); const _ao0 = (input, _path, _exceptionable = true) => undefined === input.pages || (Array.isArray(input.pages) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17841
|
+
method: "typia.assertGuard",
|
|
17842
|
+
path: _path + ".pages",
|
|
17843
|
+
expected: "(Array<ShotboxPage> | undefined)",
|
|
17844
|
+
value: input.pages
|
|
17845
|
+
}, _errorFactory)) && input.pages.every((elem, _index6) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17846
|
+
method: "typia.assertGuard",
|
|
17847
|
+
path: _path + ".pages[" + _index6 + "]",
|
|
17848
|
+
expected: "ShotboxPage",
|
|
17849
|
+
value: elem
|
|
17850
|
+
}, _errorFactory)) && _ao1(elem, _path + ".pages[" + _index6 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17851
|
+
method: "typia.assertGuard",
|
|
17852
|
+
path: _path + ".pages[" + _index6 + "]",
|
|
17853
|
+
expected: "ShotboxPage",
|
|
17854
|
+
value: elem
|
|
17855
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17856
|
+
method: "typia.assertGuard",
|
|
17857
|
+
path: _path + ".pages",
|
|
17858
|
+
expected: "(Array<ShotboxPage> | undefined)",
|
|
17859
|
+
value: input.pages
|
|
17860
|
+
}, _errorFactory); const _ao1 = (input, _path, _exceptionable = true) => (undefined === input.stickyTopRow || "boolean" === typeof input.stickyTopRow || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17861
|
+
method: "typia.assertGuard",
|
|
17862
|
+
path: _path + ".stickyTopRow",
|
|
17863
|
+
expected: "(boolean | undefined)",
|
|
17864
|
+
value: input.stickyTopRow
|
|
17865
|
+
}, _errorFactory)) && (undefined === input.inferGroups || "boolean" === typeof input.inferGroups || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17866
|
+
method: "typia.assertGuard",
|
|
17867
|
+
path: _path + ".inferGroups",
|
|
17868
|
+
expected: "(boolean | undefined)",
|
|
17869
|
+
value: input.inferGroups
|
|
17870
|
+
}, _errorFactory)) && (undefined === input.layout || (Array.isArray(input.layout) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17871
|
+
method: "typia.assertGuard",
|
|
17872
|
+
path: _path + ".layout",
|
|
17873
|
+
expected: "(Array<ShotboxGroup | ShotboxGroup[]> | undefined)",
|
|
17874
|
+
value: input.layout
|
|
17875
|
+
}, _errorFactory)) && input.layout.every((elem, _index7) => (null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17876
|
+
method: "typia.assertGuard",
|
|
17877
|
+
path: _path + ".layout[" + _index7 + "]",
|
|
17878
|
+
expected: "(Array<ShotboxGroup> | ShotboxEventGroup | ShotboxStreamGroup)",
|
|
17879
|
+
value: elem
|
|
17880
|
+
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17881
|
+
method: "typia.assertGuard",
|
|
17882
|
+
path: _path + ".layout[" + _index7 + "]",
|
|
17883
|
+
expected: "(Array<ShotboxGroup> | ShotboxEventGroup | ShotboxStreamGroup)",
|
|
17884
|
+
value: elem
|
|
17885
|
+
}, _errorFactory)) && (Array.isArray(elem) && elem.every((elem, _index8) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17886
|
+
method: "typia.assertGuard",
|
|
17887
|
+
path: _path + ".layout[" + _index7 + "][" + _index8 + "]",
|
|
17888
|
+
expected: "(ShotboxEventGroup | ShotboxStreamGroup)",
|
|
17889
|
+
value: elem
|
|
17890
|
+
}, _errorFactory)) && _au0(elem, _path + ".layout[" + _index7 + "][" + _index8 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17891
|
+
method: "typia.assertGuard",
|
|
17892
|
+
path: _path + ".layout[" + _index7 + "][" + _index8 + "]",
|
|
17893
|
+
expected: "(ShotboxEventGroup | ShotboxStreamGroup)",
|
|
17894
|
+
value: elem
|
|
17895
|
+
}, _errorFactory)) || "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _au0(elem, _path + ".layout[" + _index7 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17896
|
+
method: "typia.assertGuard",
|
|
17897
|
+
path: _path + ".layout[" + _index7 + "]",
|
|
17898
|
+
expected: "(Array<ShotboxGroup> | ShotboxEventGroup | ShotboxStreamGroup)",
|
|
17899
|
+
value: elem
|
|
17900
|
+
}, _errorFactory) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17901
|
+
method: "typia.assertGuard",
|
|
17902
|
+
path: _path + ".layout[" + _index7 + "]",
|
|
17903
|
+
expected: "(Array<ShotboxGroup> | ShotboxEventGroup | ShotboxStreamGroup)",
|
|
17904
|
+
value: elem
|
|
17905
|
+
}, _errorFactory))) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17906
|
+
method: "typia.assertGuard",
|
|
17907
|
+
path: _path + ".layout",
|
|
17908
|
+
expected: "(Array<ShotboxGroup | ShotboxGroup[]> | undefined)",
|
|
17909
|
+
value: input.layout
|
|
17910
|
+
}, _errorFactory)); const _ao2 = (input, _path, _exceptionable = true) => (undefined === input.id || "string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17911
|
+
method: "typia.assertGuard",
|
|
17912
|
+
path: _path + ".id",
|
|
17913
|
+
expected: "(string | undefined)",
|
|
17914
|
+
value: input.id
|
|
17915
|
+
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17916
|
+
method: "typia.assertGuard",
|
|
17917
|
+
path: _path + ".title",
|
|
17918
|
+
expected: "(string | undefined)",
|
|
17919
|
+
value: input.title
|
|
17920
|
+
}, _errorFactory)) && (undefined === input.sticky || "boolean" === typeof input.sticky || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17921
|
+
method: "typia.assertGuard",
|
|
17922
|
+
path: _path + ".sticky",
|
|
17923
|
+
expected: "(boolean | undefined)",
|
|
17924
|
+
value: input.sticky
|
|
17925
|
+
}, _errorFactory)) && (undefined === input.type || "trigger" === input.type || "toggle" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17926
|
+
method: "typia.assertGuard",
|
|
17927
|
+
path: _path + ".type",
|
|
17928
|
+
expected: "(\"toggle\" | \"trigger\" | undefined)",
|
|
17929
|
+
value: input.type
|
|
17930
|
+
}, _errorFactory)) && (undefined === input.width || "string" === typeof input.width || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17931
|
+
method: "typia.assertGuard",
|
|
17932
|
+
path: _path + ".width",
|
|
17933
|
+
expected: "(string | undefined)",
|
|
17934
|
+
value: input.width
|
|
17935
|
+
}, _errorFactory)) && (undefined === input.include || (Array.isArray(input.include) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17936
|
+
method: "typia.assertGuard",
|
|
17937
|
+
path: _path + ".include",
|
|
17938
|
+
expected: "(Array<string> | undefined)",
|
|
17939
|
+
value: input.include
|
|
17940
|
+
}, _errorFactory)) && input.include.every((elem, _index9) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17941
|
+
method: "typia.assertGuard",
|
|
17942
|
+
path: _path + ".include[" + _index9 + "]",
|
|
17943
|
+
expected: "string",
|
|
17944
|
+
value: elem
|
|
17945
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17946
|
+
method: "typia.assertGuard",
|
|
17947
|
+
path: _path + ".include",
|
|
17948
|
+
expected: "(Array<string> | undefined)",
|
|
17949
|
+
value: input.include
|
|
17950
|
+
}, _errorFactory)) && (undefined === input.exclude || (Array.isArray(input.exclude) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17951
|
+
method: "typia.assertGuard",
|
|
17952
|
+
path: _path + ".exclude",
|
|
17953
|
+
expected: "(Array<string> | undefined)",
|
|
17954
|
+
value: input.exclude
|
|
17955
|
+
}, _errorFactory)) && input.exclude.every((elem, _index10) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17956
|
+
method: "typia.assertGuard",
|
|
17957
|
+
path: _path + ".exclude[" + _index10 + "]",
|
|
17958
|
+
expected: "string",
|
|
17959
|
+
value: elem
|
|
17960
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17961
|
+
method: "typia.assertGuard",
|
|
17962
|
+
path: _path + ".exclude",
|
|
17963
|
+
expected: "(Array<string> | undefined)",
|
|
17964
|
+
value: input.exclude
|
|
17965
|
+
}, _errorFactory)) && (undefined === input.states || ("object" === typeof input.states && null !== input.states || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17966
|
+
method: "typia.assertGuard",
|
|
17967
|
+
path: _path + ".states",
|
|
17968
|
+
expected: "(__type | undefined)",
|
|
17969
|
+
value: input.states
|
|
17970
|
+
}, _errorFactory)) && _ao3(input.states, _path + ".states", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17971
|
+
method: "typia.assertGuard",
|
|
17972
|
+
path: _path + ".states",
|
|
17973
|
+
expected: "(__type | undefined)",
|
|
17974
|
+
value: input.states
|
|
17975
|
+
}, _errorFactory)) && (undefined === input.flow || "column" === input.flow || "row" === input.flow || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17976
|
+
method: "typia.assertGuard",
|
|
17977
|
+
path: _path + ".flow",
|
|
17978
|
+
expected: "(\"column\" | \"row\" | undefined)",
|
|
17979
|
+
value: input.flow
|
|
17980
|
+
}, _errorFactory)) && (undefined === input.minRows || "number" === typeof input.minRows || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17981
|
+
method: "typia.assertGuard",
|
|
17982
|
+
path: _path + ".minRows",
|
|
17983
|
+
expected: "(number | undefined)",
|
|
17984
|
+
value: input.minRows
|
|
17985
|
+
}, _errorFactory)) && (undefined === input.maxRows || "number" === typeof input.maxRows || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17986
|
+
method: "typia.assertGuard",
|
|
17987
|
+
path: _path + ".maxRows",
|
|
17988
|
+
expected: "(number | undefined)",
|
|
17989
|
+
value: input.maxRows
|
|
17990
|
+
}, _errorFactory)); const _ao3 = (input, _path, _exceptionable = true) => "boolean" === typeof input.completed || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17991
|
+
method: "typia.assertGuard",
|
|
17992
|
+
path: _path + ".completed",
|
|
17993
|
+
expected: "boolean",
|
|
17994
|
+
value: input.completed
|
|
17995
|
+
}, _errorFactory); const _ao4 = (input, _path, _exceptionable = true) => ("stream" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17996
|
+
method: "typia.assertGuard",
|
|
17997
|
+
path: _path + ".type",
|
|
17998
|
+
expected: "\"stream\"",
|
|
17999
|
+
value: input.type
|
|
18000
|
+
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18001
|
+
method: "typia.assertGuard",
|
|
18002
|
+
path: _path + ".title",
|
|
18003
|
+
expected: "(string | undefined)",
|
|
18004
|
+
value: input.title
|
|
18005
|
+
}, _errorFactory)) && (undefined === input.width || "string" === typeof input.width || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18006
|
+
method: "typia.assertGuard",
|
|
18007
|
+
path: _path + ".width",
|
|
18008
|
+
expected: "(string | undefined)",
|
|
18009
|
+
value: input.width
|
|
18010
|
+
}, _errorFactory)) && (undefined === input.source || "string" === typeof input.source || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18011
|
+
method: "typia.assertGuard",
|
|
18012
|
+
path: _path + ".source",
|
|
18013
|
+
expected: "(string | undefined)",
|
|
18014
|
+
value: input.source
|
|
18015
|
+
}, _errorFactory)); const _au0 = (input, _path, _exceptionable = true) => (() => {
|
|
18016
|
+
if ("stream" === input.type)
|
|
18017
|
+
return _ao4(input, _path, true && _exceptionable);
|
|
18018
|
+
else
|
|
18019
|
+
return _ao2(input, _path, true && _exceptionable);
|
|
18020
|
+
})(); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
18021
|
+
if (false === __is(input)) {
|
|
18022
|
+
_errorFactory = errorFactory;
|
|
18023
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
18024
|
+
method: "typia.assertGuard",
|
|
18025
|
+
path: _path + "",
|
|
18026
|
+
expected: "ShotboxDomainRecord",
|
|
18027
|
+
value: input
|
|
18028
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
18029
|
+
method: "typia.assertGuard",
|
|
18030
|
+
path: _path + "",
|
|
18031
|
+
expected: "ShotboxDomainRecord",
|
|
18032
|
+
value: input
|
|
18033
|
+
}, _errorFactory))(input, "$input", true);
|
|
18034
|
+
}
|
|
18035
|
+
}; })()(input);
|
|
18036
|
+
}
|
|
17346
18037
|
case ":storyboard": {
|
|
17347
18038
|
return (() => { const _io0 = input => Object.keys(input).every(key => {
|
|
17348
18039
|
const value = input[key];
|