@nxtedition/types 23.0.55 → 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 +191 -18
- package/dist/records/domains/asset.d.ts +4 -0
- 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/publish/empty.d.ts +3 -3
- package/dist/records/domains/publish/facebook.d.ts +1 -1
- package/dist/records/domains/publish/file-legacy.d.ts +1 -1
- package/dist/records/domains/publish/file.d.ts +1 -1
- package/dist/records/domains/publish/index.d.ts +6 -2
- package/dist/records/domains/publish/youtube.d.ts +1 -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 +1077 -325
- package/dist/records/validate/assert.js +1080 -320
- package/dist/records/validate/is.js +57 -31
- package/dist/records/validate/schemas.js +709 -111
- package/dist/records/validate/stringify.js +102 -71
- package/dist/records/validate/utils.js +1 -1
- package/dist/records/validate/validate-equals.js +1563 -459
- package/dist/records/validate/validate.js +1018 -292
- package/dist/rpc.d.ts +4 -1
- package/package.json +1 -1
|
@@ -2155,6 +2155,39 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
2155
2155
|
}
|
|
2156
2156
|
}; })()(input);
|
|
2157
2157
|
}
|
|
2158
|
+
case ":asset.rawTypes?": {
|
|
2159
|
+
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, {
|
|
2160
|
+
method: "typia.assertGuard",
|
|
2161
|
+
path: _path + ".value",
|
|
2162
|
+
expected: "(Array<string> | undefined)",
|
|
2163
|
+
value: input.value
|
|
2164
|
+
}, _errorFactory)) && input.value.every((elem, _index2) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2165
|
+
method: "typia.assertGuard",
|
|
2166
|
+
path: _path + ".value[" + _index2 + "]",
|
|
2167
|
+
expected: "string",
|
|
2168
|
+
value: elem
|
|
2169
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2170
|
+
method: "typia.assertGuard",
|
|
2171
|
+
path: _path + ".value",
|
|
2172
|
+
expected: "(Array<string> | undefined)",
|
|
2173
|
+
value: input.value
|
|
2174
|
+
}, _errorFactory); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
2175
|
+
if (false === __is(input)) {
|
|
2176
|
+
_errorFactory = errorFactory;
|
|
2177
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
2178
|
+
method: "typia.assertGuard",
|
|
2179
|
+
path: _path + "",
|
|
2180
|
+
expected: "AssetRawTypesProvidedRecord",
|
|
2181
|
+
value: input
|
|
2182
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
2183
|
+
method: "typia.assertGuard",
|
|
2184
|
+
path: _path + "",
|
|
2185
|
+
expected: "AssetRawTypesProvidedRecord",
|
|
2186
|
+
value: input
|
|
2187
|
+
}, _errorFactory))(input, "$input", true);
|
|
2188
|
+
}
|
|
2189
|
+
}; })()(input);
|
|
2190
|
+
}
|
|
2158
2191
|
case ":asset.types?": {
|
|
2159
2192
|
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, {
|
|
2160
2193
|
method: "typia.assertGuard",
|
|
@@ -2986,6 +3019,89 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
2986
3019
|
}
|
|
2987
3020
|
}; })()(input);
|
|
2988
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
|
+
}
|
|
2989
3105
|
case ":clone": {
|
|
2990
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, {
|
|
2991
3107
|
method: "typia.assertGuard",
|
|
@@ -3546,6 +3662,39 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
3546
3662
|
}
|
|
3547
3663
|
}; })()(input);
|
|
3548
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
|
+
}
|
|
3549
3698
|
case ":connection": {
|
|
3550
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 => {
|
|
3551
3700
|
const value = input[key];
|
|
@@ -7976,6 +8125,157 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
7976
8125
|
}
|
|
7977
8126
|
}; })()(input);
|
|
7978
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
|
+
}
|
|
7979
8279
|
case ":media.source": {
|
|
7980
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 => {
|
|
7981
8281
|
const value = input[key];
|
|
@@ -9835,16 +10135,16 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
9835
10135
|
}; })()(input);
|
|
9836
10136
|
}
|
|
9837
10137
|
case ":panel": {
|
|
9838
|
-
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 => {
|
|
9839
10139
|
const value = input[key];
|
|
9840
10140
|
if (undefined === value)
|
|
9841
10141
|
return true;
|
|
9842
10142
|
return "object" === typeof value && null !== value && _io2(value);
|
|
9843
|
-
}); 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 => (() => {
|
|
9844
10144
|
if (undefined !== input.type)
|
|
9845
|
-
return
|
|
10145
|
+
return _io7(input);
|
|
9846
10146
|
else if (undefined !== input.property)
|
|
9847
|
-
return
|
|
10147
|
+
return _io8(input);
|
|
9848
10148
|
else
|
|
9849
10149
|
return false;
|
|
9850
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, {
|
|
@@ -9862,9 +10162,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
9862
10162
|
path: _path + ".supports",
|
|
9863
10163
|
expected: "(Array<string> | string | undefined)",
|
|
9864
10164
|
value: input.supports
|
|
9865
|
-
}, _errorFactory)) && input.supports.every((elem,
|
|
10165
|
+
}, _errorFactory)) && input.supports.every((elem, _index5) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9866
10166
|
method: "typia.assertGuard",
|
|
9867
|
-
path: _path + ".supports[" +
|
|
10167
|
+
path: _path + ".supports[" + _index5 + "]",
|
|
9868
10168
|
expected: "string",
|
|
9869
10169
|
value: elem
|
|
9870
10170
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -9895,44 +10195,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
9895
10195
|
}, _errorFactory)) && (undefined === input.layout || ("object" === typeof input.layout && null !== input.layout && false === Array.isArray(input.layout) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9896
10196
|
method: "typia.assertGuard",
|
|
9897
10197
|
path: _path + ".layout",
|
|
9898
|
-
expected: "(__type.
|
|
10198
|
+
expected: "(__type.o4 | undefined)",
|
|
9899
10199
|
value: input.layout
|
|
9900
|
-
}, _errorFactory)) &&
|
|
10200
|
+
}, _errorFactory)) && _ao6(input.layout, _path + ".layout", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9901
10201
|
method: "typia.assertGuard",
|
|
9902
10202
|
path: _path + ".layout",
|
|
9903
|
-
expected: "(__type.
|
|
10203
|
+
expected: "(__type.o4 | undefined)",
|
|
9904
10204
|
value: input.layout
|
|
9905
|
-
}, _errorFactory)) &&
|
|
9906
|
-
method: "typia.assertGuard",
|
|
9907
|
-
path: _path + ".filter",
|
|
9908
|
-
expected: "(__type.o3 | string | undefined)",
|
|
9909
|
-
value: input.filter
|
|
9910
|
-
}, _errorFactory)) && (undefined === input.filter || "string" === typeof input.filter || ("object" === typeof input.filter && null !== input.filter || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9911
|
-
method: "typia.assertGuard",
|
|
9912
|
-
path: _path + ".filter",
|
|
9913
|
-
expected: "(__type.o3 | string | undefined)",
|
|
9914
|
-
value: input.filter
|
|
9915
|
-
}, _errorFactory)) && _ao8(input.filter, _path + ".filter", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9916
|
-
method: "typia.assertGuard",
|
|
9917
|
-
path: _path + ".filter",
|
|
9918
|
-
expected: "(__type.o3 | string | undefined)",
|
|
9919
|
-
value: input.filter
|
|
9920
|
-
}, _errorFactory))) && ((null !== input.expand || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9921
|
-
method: "typia.assertGuard",
|
|
9922
|
-
path: _path + ".expand",
|
|
9923
|
-
expected: "(__type.o3 | string | undefined)",
|
|
9924
|
-
value: input.expand
|
|
9925
|
-
}, _errorFactory)) && (undefined === input.expand || "string" === typeof input.expand || ("object" === typeof input.expand && null !== input.expand || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9926
|
-
method: "typia.assertGuard",
|
|
9927
|
-
path: _path + ".expand",
|
|
9928
|
-
expected: "(__type.o3 | string | undefined)",
|
|
9929
|
-
value: input.expand
|
|
9930
|
-
}, _errorFactory)) && _ao8(input.expand, _path + ".expand", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9931
|
-
method: "typia.assertGuard",
|
|
9932
|
-
path: _path + ".expand",
|
|
9933
|
-
expected: "(__type.o3 | string | undefined)",
|
|
9934
|
-
value: input.expand
|
|
9935
|
-
}, _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 => {
|
|
9936
10206
|
const value = input[key];
|
|
9937
10207
|
if (undefined === value)
|
|
9938
10208
|
return true;
|
|
@@ -9987,27 +10257,72 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
9987
10257
|
path: _path + ".required",
|
|
9988
10258
|
expected: "(boolean | undefined)",
|
|
9989
10259
|
value: input.required
|
|
9990
|
-
}, _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, {
|
|
9991
10261
|
method: "typia.assertGuard",
|
|
9992
10262
|
path: _path + ".oneOf",
|
|
9993
|
-
expected: "(Array<
|
|
10263
|
+
expected: "(Array<__type> | undefined)",
|
|
9994
10264
|
value: input.oneOf
|
|
9995
|
-
}, _errorFactory))
|
|
9996
|
-
method: "typia.assertGuard",
|
|
9997
|
-
path: _path + ".label",
|
|
9998
|
-
expected: "string",
|
|
9999
|
-
value: input.label
|
|
10000
|
-
}, _errorFactory)) && ("string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10265
|
+
}, _errorFactory)) && input.oneOf.every((elem, _index6) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10001
10266
|
method: "typia.assertGuard",
|
|
10002
|
-
path: _path + ".
|
|
10003
|
-
expected: "
|
|
10004
|
-
value:
|
|
10005
|
-
}, _errorFactory))
|
|
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, {
|
|
10006
10271
|
method: "typia.assertGuard",
|
|
10007
|
-
path: _path + ".
|
|
10008
|
-
expected: "
|
|
10009
|
-
value:
|
|
10010
|
-
}, _errorFactory))
|
|
10272
|
+
path: _path + ".oneOf[" + _index6 + "]",
|
|
10273
|
+
expected: "__type.o2",
|
|
10274
|
+
value: elem
|
|
10275
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10276
|
+
method: "typia.assertGuard",
|
|
10277
|
+
path: _path + ".oneOf",
|
|
10278
|
+
expected: "(Array<__type> | undefined)",
|
|
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
|
|
10300
|
+
}, _errorFactory)); const _ao3 = (input, _path, _exceptionable = true) => ("string" === typeof input.label || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10301
|
+
method: "typia.assertGuard",
|
|
10302
|
+
path: _path + ".label",
|
|
10303
|
+
expected: "string",
|
|
10304
|
+
value: input.label
|
|
10305
|
+
}, _errorFactory)) && ("string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10306
|
+
method: "typia.assertGuard",
|
|
10307
|
+
path: _path + ".path",
|
|
10308
|
+
expected: "string",
|
|
10309
|
+
value: input.path
|
|
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, {
|
|
10321
|
+
method: "typia.assertGuard",
|
|
10322
|
+
path: _path + ".panel",
|
|
10323
|
+
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string | undefined)",
|
|
10324
|
+
value: input.panel
|
|
10325
|
+
}, _errorFactory)) && (undefined === input.panel || "string" === typeof input.panel || (Array.isArray(input.panel) && (_aa0(input.panel, _path + ".panel", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10011
10326
|
method: "typia.assertGuard",
|
|
10012
10327
|
path: _path + ".panel",
|
|
10013
10328
|
expected: "Array<PanelLayout>",
|
|
@@ -10042,7 +10357,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10042
10357
|
path: _path + ".editor",
|
|
10043
10358
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string | undefined)",
|
|
10044
10359
|
value: input.editor
|
|
10045
|
-
}, _errorFactory))); const
|
|
10360
|
+
}, _errorFactory))); const _ao7 = (input, _path, _exceptionable = true) => ("divider" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10046
10361
|
method: "typia.assertGuard",
|
|
10047
10362
|
path: _path + ".type",
|
|
10048
10363
|
expected: "\"divider\"",
|
|
@@ -10052,7 +10367,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10052
10367
|
path: _path + ".title",
|
|
10053
10368
|
expected: "(string | undefined)",
|
|
10054
10369
|
value: input.title
|
|
10055
|
-
}, _errorFactory)); const
|
|
10370
|
+
}, _errorFactory)); const _ao8 = (input, _path, _exceptionable = true) => ("string" === typeof input.property || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10056
10371
|
method: "typia.assertGuard",
|
|
10057
10372
|
path: _path + ".property",
|
|
10058
10373
|
expected: "string",
|
|
@@ -10072,12 +10387,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10072
10387
|
path: _path + ".widget",
|
|
10073
10388
|
expected: "(\"assetTags\" | \"assetTypes\" | \"default\" | \"geopoint\" | \"poster\" | \"tags\" | \"textarea\" | WidgetItem | undefined)",
|
|
10074
10389
|
value: input.widget
|
|
10075
|
-
}, _errorFactory)) &&
|
|
10390
|
+
}, _errorFactory)) && _ao9(input.widget, _path + ".widget", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10076
10391
|
method: "typia.assertGuard",
|
|
10077
10392
|
path: _path + ".widget",
|
|
10078
10393
|
expected: "(\"assetTags\" | \"assetTypes\" | \"default\" | \"geopoint\" | \"poster\" | \"tags\" | \"textarea\" | WidgetItem | undefined)",
|
|
10079
10394
|
value: input.widget
|
|
10080
|
-
}, _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, {
|
|
10081
10396
|
method: "typia.assertGuard",
|
|
10082
10397
|
path: _path + ".type",
|
|
10083
10398
|
expected: "(\"assetTags\" | \"assetTypes\" | \"default\" | \"geopoint\" | \"poster\" | \"tags\" | \"textarea\")",
|
|
@@ -10087,26 +10402,11 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10087
10402
|
path: _path + ".readOnly",
|
|
10088
10403
|
expected: "(boolean | undefined)",
|
|
10089
10404
|
value: input.readOnly
|
|
10090
|
-
}, _errorFactory)); const
|
|
10091
|
-
method: "typia.assertGuard",
|
|
10092
|
-
path: _path + ".__context",
|
|
10093
|
-
expected: "object",
|
|
10094
|
-
value: input.__context
|
|
10095
|
-
}, _errorFactory)) && _ao9(input.__context, _path + ".__context", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10096
|
-
method: "typia.assertGuard",
|
|
10097
|
-
path: _path + ".__context",
|
|
10098
|
-
expected: "object",
|
|
10099
|
-
value: input.__context
|
|
10100
|
-
}, _errorFactory)) && ("string" === typeof input.__returnValue || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10101
|
-
method: "typia.assertGuard",
|
|
10102
|
-
path: _path + ".__returnValue",
|
|
10103
|
-
expected: "string",
|
|
10104
|
-
value: input.__returnValue
|
|
10105
|
-
}, _errorFactory)); const _ao9 = (input, _path, _exceptionable = true) => true; const _au0 = (input, _path, _exceptionable = true) => (() => {
|
|
10405
|
+
}, _errorFactory)); const _au0 = (input, _path, _exceptionable = true) => (() => {
|
|
10106
10406
|
if (undefined !== input.type)
|
|
10107
|
-
return
|
|
10407
|
+
return _ao7(input, _path, true && _exceptionable);
|
|
10108
10408
|
else if (undefined !== input.property)
|
|
10109
|
-
return
|
|
10409
|
+
return _ao8(input, _path, true && _exceptionable);
|
|
10110
10410
|
else
|
|
10111
10411
|
return __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10112
10412
|
method: "typia.assertGuard",
|
|
@@ -10114,29 +10414,29 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10114
10414
|
expected: "(PanelLayoutDivider | PanelLayoutItem)",
|
|
10115
10415
|
value: input
|
|
10116
10416
|
}, _errorFactory);
|
|
10117
|
-
})(); 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, {
|
|
10118
10418
|
method: "typia.assertGuard",
|
|
10119
|
-
path: _path + "[" +
|
|
10419
|
+
path: _path + "[" + _index8 + "]",
|
|
10120
10420
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string)",
|
|
10121
10421
|
value: elem
|
|
10122
10422
|
}, _errorFactory)) && (undefined !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10123
10423
|
method: "typia.assertGuard",
|
|
10124
|
-
path: _path + "[" +
|
|
10424
|
+
path: _path + "[" + _index8 + "]",
|
|
10125
10425
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string)",
|
|
10126
10426
|
value: elem
|
|
10127
|
-
}, _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, {
|
|
10128
10428
|
method: "typia.assertGuard",
|
|
10129
|
-
path: _path + "[" +
|
|
10429
|
+
path: _path + "[" + _index8 + "]",
|
|
10130
10430
|
expected: "Array<PanelLayout>",
|
|
10131
10431
|
value: elem
|
|
10132
|
-
}, _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, {
|
|
10133
10433
|
method: "typia.assertGuard",
|
|
10134
|
-
path: _path + "[" +
|
|
10434
|
+
path: _path + "[" + _index8 + "]",
|
|
10135
10435
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string)",
|
|
10136
10436
|
value: elem
|
|
10137
10437
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10138
10438
|
method: "typia.assertGuard",
|
|
10139
|
-
path: _path + "[" +
|
|
10439
|
+
path: _path + "[" + _index8 + "]",
|
|
10140
10440
|
expected: "(Array<PanelLayout> | PanelLayoutDivider | PanelLayoutItem | string)",
|
|
10141
10441
|
value: elem
|
|
10142
10442
|
}, _errorFactory))); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
@@ -10745,29 +11045,29 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10745
11045
|
}; })()(input);
|
|
10746
11046
|
}
|
|
10747
11047
|
case ":publish": {
|
|
10748
|
-
return (() => { const _io0 = input =>
|
|
11048
|
+
return (() => { const _io0 = input => (null === input.type || undefined === input.type) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset) && (undefined === input.connection || "string" === typeof input.connection) && (undefined === input.render || "object" === typeof input.render && null !== input.render && _io1(input.render)) && true && true && true && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io15(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io16(elem))); const _io1 = input => (undefined === input.preset || "string" === typeof input.preset) && "string" === typeof input.type && (undefined === input.scene || "object" === typeof input.scene && null !== input.scene && false === Array.isArray(input.scene) && _io2(input.scene)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io10(input.profile)); const _io2 = 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) && _io3(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) && _io4(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io7(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) && _io9(input.transcribe)); const _io3 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file); const _io4 = input => Object.keys(input).every(key => {
|
|
10749
11049
|
const value = input[key];
|
|
10750
11050
|
if (undefined === value)
|
|
10751
11051
|
return true;
|
|
10752
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
10753
|
-
}); const
|
|
11052
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io5(value);
|
|
11053
|
+
}); const _io5 = input => (null === input.style || undefined === input.style || "string" === typeof input.style) && (undefined === input.styleOverrides || "object" === typeof input.styleOverrides && null !== input.styleOverrides && false === Array.isArray(input.styleOverrides) && _io6(input.styleOverrides)); const _io6 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding); const _io7 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io8(input.crop); const _io8 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (undefined === input.width || "number" === typeof input.width) && (undefined === input.height || "number" === typeof input.height); const _io9 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem)); const _io10 = input => "string" === typeof input.format && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && _io11(input.transcribe)) && (undefined === input.translate || "object" === typeof input.translate && null !== input.translate && _io12(input.translate)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io13(input.audio)) && true && (undefined === input.pick || Array.isArray(input.pick) && input.pick.every(elem => "string" === typeof elem)) && (null !== input.subtitle && (undefined === input.subtitle || "string" === typeof input.subtitle || "object" === typeof input.subtitle && null !== input.subtitle && false === Array.isArray(input.subtitle) && _io14(input.subtitle))); const _io11 = input => "string" === typeof input.engine; const _io12 = input => "string" === typeof input.language; const _io13 = input => (undefined === input.codec || "string" === typeof input.codec) && (undefined === input.pan || "string" === typeof input.pan) && (undefined === input.samplerate || "number" === typeof input.samplerate) && (undefined === input.split || "boolean" === typeof input.split); const _io14 = input => (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.style || "string" === typeof input.style); const _io15 = input => "string" === typeof input.method; const _io16 = input => "number" === typeof input.level && "string" === typeof input.code && "string" === typeof input.msg; const _io17 = input => (undefined === input.type || "facebook" === input.type) && (undefined === input.pageId || "string" === typeof input.pageId) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset) && (undefined === input.connection || "string" === typeof input.connection) && (undefined === input.render || "object" === typeof input.render && null !== input.render && _io1(input.render)) && true && true && true && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io15(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io16(elem))); const _io18 = input => (undefined === input.type || "file" === input.type) && (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && (undefined === input.renders || "object" === typeof input.renders && null !== input.renders && false === Array.isArray(input.renders) && _io19(input.renders)) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io23(input.draft)) && (undefined === input.remote || "object" === typeof input.remote && null !== input.remote && false === Array.isArray(input.remote) && _io24(input.remote)) && (undefined === input.published || "object" === typeof input.published && null !== input.published && _io27(input.published)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset) && (undefined === input.connection || "string" === typeof input.connection) && (undefined === input.render || "object" === typeof input.render && null !== input.render && _io1(input.render)) && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io15(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io16(elem))); const _io19 = input => Object.keys(input).every(key => {
|
|
10754
11054
|
const value = input[key];
|
|
10755
11055
|
if (undefined === value)
|
|
10756
11056
|
return true;
|
|
10757
11057
|
return null !== value && undefined !== value && ("string" === typeof value || "object" === typeof value && null !== value && _iu0(value));
|
|
10758
|
-
}); const _io20 = input => (undefined === input.name || "string" === typeof input.name) && "string" === typeof input.path && (undefined === input.collisionStrategy || "overwrite" === input.collisionStrategy || "skip" === input.collisionStrategy) && (undefined === input.ignoreEmptyScene || "boolean" === typeof input.ignoreEmptyScene) && (undefined === input.preset || "string" === typeof input.preset) && "string" === typeof input.type && (undefined === input.scene || "object" === typeof input.scene && null !== input.scene && false === Array.isArray(input.scene) &&
|
|
11058
|
+
}); const _io20 = input => (undefined === input.name || "string" === typeof input.name) && "string" === typeof input.path && (undefined === input.collisionStrategy || "overwrite" === input.collisionStrategy || "skip" === input.collisionStrategy) && (undefined === input.ignoreEmptyScene || "boolean" === typeof input.ignoreEmptyScene) && (undefined === input.preset || "string" === typeof input.preset) && "string" === typeof input.type && (undefined === input.scene || "object" === typeof input.scene && null !== input.scene && false === Array.isArray(input.scene) && _io2(input.scene)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io10(input.profile)); const _io21 = input => "object" === typeof input.__context && null !== input.__context && _io22(input.__context) && ("object" === typeof input.__returnValue && null !== input.__returnValue && _io20(input.__returnValue)); const _io22 = input => "object" === typeof input.publish && null !== input.publish && false === Array.isArray(input.publish) && _io18(input.publish) && "string" === typeof input.directory && "string" === typeof input.name; const _io23 = input => (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename); const _io24 = input => (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && (undefined === input.renders || "object" === typeof input.renders && null !== input.renders && false === Array.isArray(input.renders) && _io25(input.renders)); const _io25 = input => Object.keys(input).every(key => {
|
|
10759
11059
|
const value = input[key];
|
|
10760
11060
|
if (undefined === value)
|
|
10761
11061
|
return true;
|
|
10762
11062
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io26(value);
|
|
10763
|
-
}); const _io26 = input => (undefined === input.path || "string" === typeof input.path) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem &&
|
|
11063
|
+
}); const _io26 = input => (undefined === input.path || "string" === typeof input.path) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io16(elem))) && true && (undefined === input.size || "number" === typeof input.size) && (undefined === input.hash || "string" === typeof input.hash) && (undefined === input.source || "string" === typeof input.source); const _io27 = input => (undefined === input.directory || "string" === typeof input.directory) && "string" === typeof input.filename; const _io28 = input => (undefined === input.type || "file" === input.type) && (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io23(input.draft)) && (undefined === input.remote || "object" === typeof input.remote && null !== input.remote && _io29(input.remote)) && (undefined === input.published || "object" === typeof input.published && null !== input.published && _io27(input.published)) && (null !== input.renders && undefined === input.renders) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset) && (undefined === input.connection || "string" === typeof input.connection) && (undefined === input.render || "object" === typeof input.render && null !== input.render && _io1(input.render)) && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io15(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io16(elem))); const _io29 = input => (undefined === input.id || "string" === typeof input.id) && "string" === typeof input.path && "string" === typeof input.filename && (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.subtitle || "object" === typeof input.subtitle && null !== input.subtitle && _io30(input.subtitle)) && (undefined === input.metafile || "object" === typeof input.metafile && null !== input.metafile && _io31(input.metafile)) && Object.keys(input).every(key => {
|
|
10764
11064
|
if (["id", "path", "filename", "directory", "subtitle", "metafile"].some(prop => key === prop))
|
|
10765
11065
|
return true;
|
|
10766
11066
|
const value = input[key];
|
|
10767
11067
|
if (undefined === value)
|
|
10768
11068
|
return true;
|
|
10769
11069
|
return true;
|
|
10770
|
-
}); const _io30 = input => "string" === typeof input.path; const _io31 = input => "string" === typeof input.path; const _io32 = input => "youtube" === input.type && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io33(input.draft)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset) && (undefined === input.connection || "string" === typeof input.connection) && (undefined === input.render || "object" === typeof input.render && null !== input.render &&
|
|
11070
|
+
}); const _io30 = input => "string" === typeof input.path; const _io31 = input => "string" === typeof input.path; const _io32 = input => (undefined === input.type || "youtube" === input.type) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io33(input.draft)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset) && (undefined === input.connection || "string" === typeof input.connection) && (undefined === input.render || "object" === typeof input.render && null !== input.render && _io1(input.render)) && true && true && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io15(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io16(elem))); const _io33 = input => undefined === input.snippet || "object" === typeof input.snippet && null !== input.snippet && false === Array.isArray(input.snippet) && _io34(input.snippet); const _io34 = input => (undefined === input.title || "string" === typeof input.title) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.description || "string" === typeof input.description); const _iu0 = input => (() => {
|
|
10771
11071
|
if (undefined !== input.path)
|
|
10772
11072
|
return _io20(input);
|
|
10773
11073
|
else if (undefined !== input.__context)
|
|
@@ -10775,45 +11075,22 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10775
11075
|
else
|
|
10776
11076
|
return false;
|
|
10777
11077
|
})(); const _iu1 = input => (() => {
|
|
10778
|
-
if (
|
|
11078
|
+
if (_io0(input))
|
|
10779
11079
|
return _io0(input);
|
|
10780
|
-
|
|
10781
|
-
return
|
|
10782
|
-
|
|
11080
|
+
if (_io17(input))
|
|
11081
|
+
return _io17(input);
|
|
11082
|
+
if (_io28(input))
|
|
11083
|
+
return _io28(input);
|
|
11084
|
+
if (_io18(input))
|
|
11085
|
+
return _io18(input);
|
|
11086
|
+
if (_io32(input))
|
|
10783
11087
|
return _io32(input);
|
|
10784
|
-
|
|
10785
|
-
|
|
10786
|
-
if (_io28(input))
|
|
10787
|
-
return _io28(input);
|
|
10788
|
-
if (_io18(input))
|
|
10789
|
-
return _io18(input);
|
|
10790
|
-
return false;
|
|
10791
|
-
})();
|
|
10792
|
-
})(); const _ao0 = (input, _path, _exceptionable = true) => (undefined !== input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10793
|
-
method: "typia.assertGuard",
|
|
10794
|
-
path: _path + ".type",
|
|
10795
|
-
expected: "null",
|
|
10796
|
-
value: input.type
|
|
10797
|
-
}, _errorFactory)) && (null === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10798
|
-
method: "typia.assertGuard",
|
|
10799
|
-
path: _path + ".type",
|
|
10800
|
-
expected: "null",
|
|
10801
|
-
value: input.type
|
|
10802
|
-
}, _errorFactory)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10803
|
-
method: "typia.assertGuard",
|
|
10804
|
-
path: _path + ".asset",
|
|
10805
|
-
expected: "(null | string | undefined)",
|
|
10806
|
-
value: input.asset
|
|
10807
|
-
}, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => ("facebook" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11088
|
+
return false;
|
|
11089
|
+
})(); const _ao0 = (input, _path, _exceptionable = true) => (null === input.type || undefined === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10808
11090
|
method: "typia.assertGuard",
|
|
10809
11091
|
path: _path + ".type",
|
|
10810
|
-
expected: "
|
|
11092
|
+
expected: "(null | undefined)",
|
|
10811
11093
|
value: input.type
|
|
10812
|
-
}, _errorFactory)) && (undefined === input.pageId || "string" === typeof input.pageId || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10813
|
-
method: "typia.assertGuard",
|
|
10814
|
-
path: _path + ".pageId",
|
|
10815
|
-
expected: "(string | undefined)",
|
|
10816
|
-
value: input.pageId
|
|
10817
11094
|
}, _errorFactory)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10818
11095
|
method: "typia.assertGuard",
|
|
10819
11096
|
path: _path + ".asset",
|
|
@@ -10829,7 +11106,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10829
11106
|
path: _path + ".render",
|
|
10830
11107
|
expected: "(PublishRenderBase | undefined)",
|
|
10831
11108
|
value: input.render
|
|
10832
|
-
}, _errorFactory)) &&
|
|
11109
|
+
}, _errorFactory)) && _ao1(input.render, _path + ".render", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10833
11110
|
method: "typia.assertGuard",
|
|
10834
11111
|
path: _path + ".render",
|
|
10835
11112
|
expected: "(PublishRenderBase | undefined)",
|
|
@@ -10839,7 +11116,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10839
11116
|
path: _path + ".error",
|
|
10840
11117
|
expected: "(__type.o9 | null | undefined)",
|
|
10841
11118
|
value: input.error
|
|
10842
|
-
}, _errorFactory)) &&
|
|
11119
|
+
}, _errorFactory)) && _ao15(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10843
11120
|
method: "typia.assertGuard",
|
|
10844
11121
|
path: _path + ".error",
|
|
10845
11122
|
expected: "(__type.o9 | null | undefined)",
|
|
@@ -10849,14 +11126,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10849
11126
|
path: _path + ".messages",
|
|
10850
11127
|
expected: "(Array<Message> | undefined)",
|
|
10851
11128
|
value: input.messages
|
|
10852
|
-
}, _errorFactory)) && input.messages.every((elem,
|
|
11129
|
+
}, _errorFactory)) && input.messages.every((elem, _index10) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10853
11130
|
method: "typia.assertGuard",
|
|
10854
|
-
path: _path + ".messages[" +
|
|
11131
|
+
path: _path + ".messages[" + _index10 + "]",
|
|
10855
11132
|
expected: "Message",
|
|
10856
11133
|
value: elem
|
|
10857
|
-
}, _errorFactory)) &&
|
|
11134
|
+
}, _errorFactory)) && _ao16(elem, _path + ".messages[" + _index10 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10858
11135
|
method: "typia.assertGuard",
|
|
10859
|
-
path: _path + ".messages[" +
|
|
11136
|
+
path: _path + ".messages[" + _index10 + "]",
|
|
10860
11137
|
expected: "Message",
|
|
10861
11138
|
value: elem
|
|
10862
11139
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -10864,7 +11141,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10864
11141
|
path: _path + ".messages",
|
|
10865
11142
|
expected: "(Array<Message> | undefined)",
|
|
10866
11143
|
value: input.messages
|
|
10867
|
-
}, _errorFactory)); const
|
|
11144
|
+
}, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => (undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10868
11145
|
method: "typia.assertGuard",
|
|
10869
11146
|
path: _path + ".preset",
|
|
10870
11147
|
expected: "(string | undefined)",
|
|
@@ -10879,7 +11156,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10879
11156
|
path: _path + ".scene",
|
|
10880
11157
|
expected: "(RenderSceneObject | undefined)",
|
|
10881
11158
|
value: input.scene
|
|
10882
|
-
}, _errorFactory)) &&
|
|
11159
|
+
}, _errorFactory)) && _ao2(input.scene, _path + ".scene", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10883
11160
|
method: "typia.assertGuard",
|
|
10884
11161
|
path: _path + ".scene",
|
|
10885
11162
|
expected: "(RenderSceneObject | undefined)",
|
|
@@ -10889,12 +11166,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10889
11166
|
path: _path + ".profile",
|
|
10890
11167
|
expected: "(RenderProfileObject | undefined)",
|
|
10891
11168
|
value: input.profile
|
|
10892
|
-
}, _errorFactory)) &&
|
|
11169
|
+
}, _errorFactory)) && _ao10(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10893
11170
|
method: "typia.assertGuard",
|
|
10894
11171
|
path: _path + ".profile",
|
|
10895
11172
|
expected: "(RenderProfileObject | undefined)",
|
|
10896
11173
|
value: input.profile
|
|
10897
|
-
}, _errorFactory)); const
|
|
11174
|
+
}, _errorFactory)); const _ao2 = (input, _path, _exceptionable = true) => (undefined === input.id || "string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10898
11175
|
method: "typia.assertGuard",
|
|
10899
11176
|
path: _path + ".id",
|
|
10900
11177
|
expected: "(string | undefined)",
|
|
@@ -10909,7 +11186,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10909
11186
|
path: _path + ".input",
|
|
10910
11187
|
expected: "(__type | null | undefined)",
|
|
10911
11188
|
value: input.input
|
|
10912
|
-
}, _errorFactory)) &&
|
|
11189
|
+
}, _errorFactory)) && _ao3(input.input, _path + ".input", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10913
11190
|
method: "typia.assertGuard",
|
|
10914
11191
|
path: _path + ".input",
|
|
10915
11192
|
expected: "(__type | null | undefined)",
|
|
@@ -10929,7 +11206,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10929
11206
|
path: _path + ".subtitleTracks",
|
|
10930
11207
|
expected: "(__type.o1 | undefined)",
|
|
10931
11208
|
value: input.subtitleTracks
|
|
10932
|
-
}, _errorFactory)) &&
|
|
11209
|
+
}, _errorFactory)) && _ao4(input.subtitleTracks, _path + ".subtitleTracks", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10933
11210
|
method: "typia.assertGuard",
|
|
10934
11211
|
path: _path + ".subtitleTracks",
|
|
10935
11212
|
expected: "(__type.o1 | undefined)",
|
|
@@ -10939,7 +11216,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10939
11216
|
path: _path + ".video",
|
|
10940
11217
|
expected: "(__type.o3 | undefined)",
|
|
10941
11218
|
value: input.video
|
|
10942
|
-
}, _errorFactory)) &&
|
|
11219
|
+
}, _errorFactory)) && _ao7(input.video, _path + ".video", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10943
11220
|
method: "typia.assertGuard",
|
|
10944
11221
|
path: _path + ".video",
|
|
10945
11222
|
expected: "(__type.o3 | undefined)",
|
|
@@ -10959,12 +11236,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10959
11236
|
path: _path + ".transcribe",
|
|
10960
11237
|
expected: "(__type.o5 | undefined)",
|
|
10961
11238
|
value: input.transcribe
|
|
10962
|
-
}, _errorFactory)) &&
|
|
11239
|
+
}, _errorFactory)) && _ao9(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10963
11240
|
method: "typia.assertGuard",
|
|
10964
11241
|
path: _path + ".transcribe",
|
|
10965
11242
|
expected: "(__type.o5 | undefined)",
|
|
10966
11243
|
value: input.transcribe
|
|
10967
|
-
}, _errorFactory)); const
|
|
11244
|
+
}, _errorFactory)); const _ao3 = (input, _path, _exceptionable = true) => (undefined === input.type || "string" === typeof input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10968
11245
|
method: "typia.assertGuard",
|
|
10969
11246
|
path: _path + ".type",
|
|
10970
11247
|
expected: "(string | undefined)",
|
|
@@ -10974,7 +11251,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10974
11251
|
path: _path + ".file",
|
|
10975
11252
|
expected: "(null | string | undefined)",
|
|
10976
11253
|
value: input.file
|
|
10977
|
-
}, _errorFactory)); const
|
|
11254
|
+
}, _errorFactory)); const _ao4 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
10978
11255
|
const value = input[key];
|
|
10979
11256
|
if (undefined === value)
|
|
10980
11257
|
return true;
|
|
@@ -10983,13 +11260,13 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10983
11260
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
10984
11261
|
expected: "__type.o2",
|
|
10985
11262
|
value: value
|
|
10986
|
-
}, _errorFactory)) &&
|
|
11263
|
+
}, _errorFactory)) && _ao5(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10987
11264
|
method: "typia.assertGuard",
|
|
10988
11265
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
10989
11266
|
expected: "__type.o2",
|
|
10990
11267
|
value: value
|
|
10991
11268
|
}, _errorFactory);
|
|
10992
|
-
}); const
|
|
11269
|
+
}); const _ao5 = (input, _path, _exceptionable = true) => (null === input.style || undefined === input.style || "string" === typeof input.style || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10993
11270
|
method: "typia.assertGuard",
|
|
10994
11271
|
path: _path + ".style",
|
|
10995
11272
|
expected: "(null | string | undefined)",
|
|
@@ -10999,12 +11276,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10999
11276
|
path: _path + ".styleOverrides",
|
|
11000
11277
|
expected: "(SubtitleStyle | undefined)",
|
|
11001
11278
|
value: input.styleOverrides
|
|
11002
|
-
}, _errorFactory)) &&
|
|
11279
|
+
}, _errorFactory)) && _ao6(input.styleOverrides, _path + ".styleOverrides", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11003
11280
|
method: "typia.assertGuard",
|
|
11004
11281
|
path: _path + ".styleOverrides",
|
|
11005
11282
|
expected: "(SubtitleStyle | undefined)",
|
|
11006
11283
|
value: input.styleOverrides
|
|
11007
|
-
}, _errorFactory)); const
|
|
11284
|
+
}, _errorFactory)); const _ao6 = (input, _path, _exceptionable = true) => (undefined === input.name || "string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11008
11285
|
method: "typia.assertGuard",
|
|
11009
11286
|
path: _path + ".name",
|
|
11010
11287
|
expected: "(string | undefined)",
|
|
@@ -11119,17 +11396,17 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11119
11396
|
path: _path + ".encoding",
|
|
11120
11397
|
expected: "(string | undefined)",
|
|
11121
11398
|
value: input.encoding
|
|
11122
|
-
}, _errorFactory)); const
|
|
11399
|
+
}, _errorFactory)); const _ao7 = (input, _path, _exceptionable = true) => undefined === input.crop || ("object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11123
11400
|
method: "typia.assertGuard",
|
|
11124
11401
|
path: _path + ".crop",
|
|
11125
11402
|
expected: "(__type.o4 | undefined)",
|
|
11126
11403
|
value: input.crop
|
|
11127
|
-
}, _errorFactory)) &&
|
|
11404
|
+
}, _errorFactory)) && _ao8(input.crop, _path + ".crop", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11128
11405
|
method: "typia.assertGuard",
|
|
11129
11406
|
path: _path + ".crop",
|
|
11130
11407
|
expected: "(__type.o4 | undefined)",
|
|
11131
11408
|
value: input.crop
|
|
11132
|
-
}, _errorFactory); const
|
|
11409
|
+
}, _errorFactory); const _ao8 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11133
11410
|
method: "typia.assertGuard",
|
|
11134
11411
|
path: _path + ".x",
|
|
11135
11412
|
expected: "(number | undefined)",
|
|
@@ -11149,7 +11426,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11149
11426
|
path: _path + ".height",
|
|
11150
11427
|
expected: "(number | undefined)",
|
|
11151
11428
|
value: input.height
|
|
11152
|
-
}, _errorFactory)); const
|
|
11429
|
+
}, _errorFactory)); const _ao9 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11153
11430
|
method: "typia.assertGuard",
|
|
11154
11431
|
path: _path + ".language",
|
|
11155
11432
|
expected: "(string | undefined)",
|
|
@@ -11159,9 +11436,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11159
11436
|
path: _path + ".pan",
|
|
11160
11437
|
expected: "(Array<number> | undefined)",
|
|
11161
11438
|
value: input.pan
|
|
11162
|
-
}, _errorFactory)) && input.pan.every((elem,
|
|
11439
|
+
}, _errorFactory)) && input.pan.every((elem, _index11) => "number" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11163
11440
|
method: "typia.assertGuard",
|
|
11164
|
-
path: _path + ".pan[" +
|
|
11441
|
+
path: _path + ".pan[" + _index11 + "]",
|
|
11165
11442
|
expected: "number",
|
|
11166
11443
|
value: elem
|
|
11167
11444
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -11169,7 +11446,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11169
11446
|
path: _path + ".pan",
|
|
11170
11447
|
expected: "(Array<number> | undefined)",
|
|
11171
11448
|
value: input.pan
|
|
11172
|
-
}, _errorFactory)); const
|
|
11449
|
+
}, _errorFactory)); const _ao10 = (input, _path, _exceptionable = true) => ("string" === typeof input.format || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11173
11450
|
method: "typia.assertGuard",
|
|
11174
11451
|
path: _path + ".format",
|
|
11175
11452
|
expected: "string",
|
|
@@ -11179,7 +11456,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11179
11456
|
path: _path + ".transcribe",
|
|
11180
11457
|
expected: "(__type.o6 | undefined)",
|
|
11181
11458
|
value: input.transcribe
|
|
11182
|
-
}, _errorFactory)) &&
|
|
11459
|
+
}, _errorFactory)) && _ao11(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11183
11460
|
method: "typia.assertGuard",
|
|
11184
11461
|
path: _path + ".transcribe",
|
|
11185
11462
|
expected: "(__type.o6 | undefined)",
|
|
@@ -11189,7 +11466,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11189
11466
|
path: _path + ".translate",
|
|
11190
11467
|
expected: "(__type.o7 | undefined)",
|
|
11191
11468
|
value: input.translate
|
|
11192
|
-
}, _errorFactory)) &&
|
|
11469
|
+
}, _errorFactory)) && _ao12(input.translate, _path + ".translate", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11193
11470
|
method: "typia.assertGuard",
|
|
11194
11471
|
path: _path + ".translate",
|
|
11195
11472
|
expected: "(__type.o7 | undefined)",
|
|
@@ -11199,7 +11476,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11199
11476
|
path: _path + ".audio",
|
|
11200
11477
|
expected: "(__type.o8 | undefined)",
|
|
11201
11478
|
value: input.audio
|
|
11202
|
-
}, _errorFactory)) &&
|
|
11479
|
+
}, _errorFactory)) && _ao13(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11203
11480
|
method: "typia.assertGuard",
|
|
11204
11481
|
path: _path + ".audio",
|
|
11205
11482
|
expected: "(__type.o8 | undefined)",
|
|
@@ -11209,9 +11486,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11209
11486
|
path: _path + ".pick",
|
|
11210
11487
|
expected: "(Array<string> | undefined)",
|
|
11211
11488
|
value: input.pick
|
|
11212
|
-
}, _errorFactory)) && input.pick.every((elem,
|
|
11489
|
+
}, _errorFactory)) && input.pick.every((elem, _index12) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11213
11490
|
method: "typia.assertGuard",
|
|
11214
|
-
path: _path + ".pick[" +
|
|
11491
|
+
path: _path + ".pick[" + _index12 + "]",
|
|
11215
11492
|
expected: "string",
|
|
11216
11493
|
value: elem
|
|
11217
11494
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -11229,22 +11506,22 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11229
11506
|
path: _path + ".subtitle",
|
|
11230
11507
|
expected: "(SubtitleProfile | string | undefined)",
|
|
11231
11508
|
value: input.subtitle
|
|
11232
|
-
}, _errorFactory)) &&
|
|
11509
|
+
}, _errorFactory)) && _ao14(input.subtitle, _path + ".subtitle", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11233
11510
|
method: "typia.assertGuard",
|
|
11234
11511
|
path: _path + ".subtitle",
|
|
11235
11512
|
expected: "(SubtitleProfile | string | undefined)",
|
|
11236
11513
|
value: input.subtitle
|
|
11237
|
-
}, _errorFactory))); const
|
|
11514
|
+
}, _errorFactory))); const _ao11 = (input, _path, _exceptionable = true) => "string" === typeof input.engine || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11238
11515
|
method: "typia.assertGuard",
|
|
11239
11516
|
path: _path + ".engine",
|
|
11240
11517
|
expected: "string",
|
|
11241
11518
|
value: input.engine
|
|
11242
|
-
}, _errorFactory); const
|
|
11519
|
+
}, _errorFactory); const _ao12 = (input, _path, _exceptionable = true) => "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11243
11520
|
method: "typia.assertGuard",
|
|
11244
11521
|
path: _path + ".language",
|
|
11245
11522
|
expected: "string",
|
|
11246
11523
|
value: input.language
|
|
11247
|
-
}, _errorFactory); const
|
|
11524
|
+
}, _errorFactory); const _ao13 = (input, _path, _exceptionable = true) => (undefined === input.codec || "string" === typeof input.codec || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11248
11525
|
method: "typia.assertGuard",
|
|
11249
11526
|
path: _path + ".codec",
|
|
11250
11527
|
expected: "(string | undefined)",
|
|
@@ -11264,7 +11541,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11264
11541
|
path: _path + ".split",
|
|
11265
11542
|
expected: "(boolean | undefined)",
|
|
11266
11543
|
value: input.split
|
|
11267
|
-
}, _errorFactory)); const
|
|
11544
|
+
}, _errorFactory)); const _ao14 = (input, _path, _exceptionable = true) => (undefined === input.lang || "string" === typeof input.lang || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11268
11545
|
method: "typia.assertGuard",
|
|
11269
11546
|
path: _path + ".lang",
|
|
11270
11547
|
expected: "(string | undefined)",
|
|
@@ -11274,12 +11551,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11274
11551
|
path: _path + ".style",
|
|
11275
11552
|
expected: "(string | undefined)",
|
|
11276
11553
|
value: input.style
|
|
11277
|
-
}, _errorFactory)); const
|
|
11554
|
+
}, _errorFactory)); const _ao15 = (input, _path, _exceptionable = true) => "string" === typeof input.method || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11278
11555
|
method: "typia.assertGuard",
|
|
11279
11556
|
path: _path + ".method",
|
|
11280
11557
|
expected: "string",
|
|
11281
11558
|
value: input.method
|
|
11282
|
-
}, _errorFactory); const
|
|
11559
|
+
}, _errorFactory); const _ao16 = (input, _path, _exceptionable = true) => ("number" === typeof input.level || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11283
11560
|
method: "typia.assertGuard",
|
|
11284
11561
|
path: _path + ".level",
|
|
11285
11562
|
expected: "number",
|
|
@@ -11294,10 +11571,70 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11294
11571
|
path: _path + ".msg",
|
|
11295
11572
|
expected: "string",
|
|
11296
11573
|
value: input.msg
|
|
11297
|
-
}, _errorFactory)); const
|
|
11574
|
+
}, _errorFactory)); const _ao17 = (input, _path, _exceptionable = true) => (undefined === input.type || "facebook" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11298
11575
|
method: "typia.assertGuard",
|
|
11299
11576
|
path: _path + ".type",
|
|
11300
|
-
expected: "\"
|
|
11577
|
+
expected: "(\"facebook\" | undefined)",
|
|
11578
|
+
value: input.type
|
|
11579
|
+
}, _errorFactory)) && (undefined === input.pageId || "string" === typeof input.pageId || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11580
|
+
method: "typia.assertGuard",
|
|
11581
|
+
path: _path + ".pageId",
|
|
11582
|
+
expected: "(string | undefined)",
|
|
11583
|
+
value: input.pageId
|
|
11584
|
+
}, _errorFactory)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11585
|
+
method: "typia.assertGuard",
|
|
11586
|
+
path: _path + ".asset",
|
|
11587
|
+
expected: "(null | string | undefined)",
|
|
11588
|
+
value: input.asset
|
|
11589
|
+
}, _errorFactory)) && (undefined === input.connection || "string" === typeof input.connection || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11590
|
+
method: "typia.assertGuard",
|
|
11591
|
+
path: _path + ".connection",
|
|
11592
|
+
expected: "(string | undefined)",
|
|
11593
|
+
value: input.connection
|
|
11594
|
+
}, _errorFactory)) && (undefined === input.render || ("object" === typeof input.render && null !== input.render || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11595
|
+
method: "typia.assertGuard",
|
|
11596
|
+
path: _path + ".render",
|
|
11597
|
+
expected: "(PublishRenderBase | undefined)",
|
|
11598
|
+
value: input.render
|
|
11599
|
+
}, _errorFactory)) && _ao1(input.render, _path + ".render", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11600
|
+
method: "typia.assertGuard",
|
|
11601
|
+
path: _path + ".render",
|
|
11602
|
+
expected: "(PublishRenderBase | undefined)",
|
|
11603
|
+
value: input.render
|
|
11604
|
+
}, _errorFactory)) && true && true && true && (null === input.error || undefined === input.error || ("object" === typeof input.error && null !== input.error || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11605
|
+
method: "typia.assertGuard",
|
|
11606
|
+
path: _path + ".error",
|
|
11607
|
+
expected: "(__type.o9 | null | undefined)",
|
|
11608
|
+
value: input.error
|
|
11609
|
+
}, _errorFactory)) && _ao15(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11610
|
+
method: "typia.assertGuard",
|
|
11611
|
+
path: _path + ".error",
|
|
11612
|
+
expected: "(__type.o9 | null | undefined)",
|
|
11613
|
+
value: input.error
|
|
11614
|
+
}, _errorFactory)) && (undefined === input.messages || (Array.isArray(input.messages) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11615
|
+
method: "typia.assertGuard",
|
|
11616
|
+
path: _path + ".messages",
|
|
11617
|
+
expected: "(Array<Message> | undefined)",
|
|
11618
|
+
value: input.messages
|
|
11619
|
+
}, _errorFactory)) && input.messages.every((elem, _index13) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11620
|
+
method: "typia.assertGuard",
|
|
11621
|
+
path: _path + ".messages[" + _index13 + "]",
|
|
11622
|
+
expected: "Message",
|
|
11623
|
+
value: elem
|
|
11624
|
+
}, _errorFactory)) && _ao16(elem, _path + ".messages[" + _index13 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11625
|
+
method: "typia.assertGuard",
|
|
11626
|
+
path: _path + ".messages[" + _index13 + "]",
|
|
11627
|
+
expected: "Message",
|
|
11628
|
+
value: elem
|
|
11629
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11630
|
+
method: "typia.assertGuard",
|
|
11631
|
+
path: _path + ".messages",
|
|
11632
|
+
expected: "(Array<Message> | undefined)",
|
|
11633
|
+
value: input.messages
|
|
11634
|
+
}, _errorFactory)); const _ao18 = (input, _path, _exceptionable = true) => (undefined === input.type || "file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11635
|
+
method: "typia.assertGuard",
|
|
11636
|
+
path: _path + ".type",
|
|
11637
|
+
expected: "(\"file\" | undefined)",
|
|
11301
11638
|
value: input.type
|
|
11302
11639
|
}, _errorFactory)) && (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11303
11640
|
method: "typia.assertGuard",
|
|
@@ -11364,7 +11701,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11364
11701
|
path: _path + ".render",
|
|
11365
11702
|
expected: "(PublishRenderBase | undefined)",
|
|
11366
11703
|
value: input.render
|
|
11367
|
-
}, _errorFactory)) &&
|
|
11704
|
+
}, _errorFactory)) && _ao1(input.render, _path + ".render", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11368
11705
|
method: "typia.assertGuard",
|
|
11369
11706
|
path: _path + ".render",
|
|
11370
11707
|
expected: "(PublishRenderBase | undefined)",
|
|
@@ -11374,7 +11711,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11374
11711
|
path: _path + ".error",
|
|
11375
11712
|
expected: "(__type.o9 | null | undefined)",
|
|
11376
11713
|
value: input.error
|
|
11377
|
-
}, _errorFactory)) &&
|
|
11714
|
+
}, _errorFactory)) && _ao15(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11378
11715
|
method: "typia.assertGuard",
|
|
11379
11716
|
path: _path + ".error",
|
|
11380
11717
|
expected: "(__type.o9 | null | undefined)",
|
|
@@ -11384,14 +11721,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11384
11721
|
path: _path + ".messages",
|
|
11385
11722
|
expected: "(Array<Message> | undefined)",
|
|
11386
11723
|
value: input.messages
|
|
11387
|
-
}, _errorFactory)) && input.messages.every((elem,
|
|
11724
|
+
}, _errorFactory)) && input.messages.every((elem, _index14) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11388
11725
|
method: "typia.assertGuard",
|
|
11389
|
-
path: _path + ".messages[" +
|
|
11726
|
+
path: _path + ".messages[" + _index14 + "]",
|
|
11390
11727
|
expected: "Message",
|
|
11391
11728
|
value: elem
|
|
11392
|
-
}, _errorFactory)) &&
|
|
11729
|
+
}, _errorFactory)) && _ao16(elem, _path + ".messages[" + _index14 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11393
11730
|
method: "typia.assertGuard",
|
|
11394
|
-
path: _path + ".messages[" +
|
|
11731
|
+
path: _path + ".messages[" + _index14 + "]",
|
|
11395
11732
|
expected: "Message",
|
|
11396
11733
|
value: elem
|
|
11397
11734
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -11459,7 +11796,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11459
11796
|
path: _path + ".scene",
|
|
11460
11797
|
expected: "(RenderSceneObject | undefined)",
|
|
11461
11798
|
value: input.scene
|
|
11462
|
-
}, _errorFactory)) &&
|
|
11799
|
+
}, _errorFactory)) && _ao2(input.scene, _path + ".scene", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11463
11800
|
method: "typia.assertGuard",
|
|
11464
11801
|
path: _path + ".scene",
|
|
11465
11802
|
expected: "(RenderSceneObject | undefined)",
|
|
@@ -11469,7 +11806,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11469
11806
|
path: _path + ".profile",
|
|
11470
11807
|
expected: "(RenderProfileObject | undefined)",
|
|
11471
11808
|
value: input.profile
|
|
11472
|
-
}, _errorFactory)) &&
|
|
11809
|
+
}, _errorFactory)) && _ao10(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11473
11810
|
method: "typia.assertGuard",
|
|
11474
11811
|
path: _path + ".profile",
|
|
11475
11812
|
expected: "(RenderProfileObject | undefined)",
|
|
@@ -11494,7 +11831,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11494
11831
|
path: _path + ".__returnValue",
|
|
11495
11832
|
expected: "ResolvedFilePublishRender",
|
|
11496
11833
|
value: input.__returnValue
|
|
11497
|
-
}, _errorFactory)); const _ao22 = (input, _path, _exceptionable = true) => (("object" === typeof input.publish && null !== input.publish || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11834
|
+
}, _errorFactory)); const _ao22 = (input, _path, _exceptionable = true) => (("object" === typeof input.publish && null !== input.publish && false === Array.isArray(input.publish) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11498
11835
|
method: "typia.assertGuard",
|
|
11499
11836
|
path: _path + ".publish",
|
|
11500
11837
|
expected: "FilePublishRecord",
|
|
@@ -11569,14 +11906,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11569
11906
|
path: _path + ".messages",
|
|
11570
11907
|
expected: "(Array<Message> | undefined)",
|
|
11571
11908
|
value: input.messages
|
|
11572
|
-
}, _errorFactory)) && input.messages.every((elem,
|
|
11909
|
+
}, _errorFactory)) && input.messages.every((elem, _index15) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11573
11910
|
method: "typia.assertGuard",
|
|
11574
|
-
path: _path + ".messages[" +
|
|
11911
|
+
path: _path + ".messages[" + _index15 + "]",
|
|
11575
11912
|
expected: "Message",
|
|
11576
11913
|
value: elem
|
|
11577
|
-
}, _errorFactory)) &&
|
|
11914
|
+
}, _errorFactory)) && _ao16(elem, _path + ".messages[" + _index15 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11578
11915
|
method: "typia.assertGuard",
|
|
11579
|
-
path: _path + ".messages[" +
|
|
11916
|
+
path: _path + ".messages[" + _index15 + "]",
|
|
11580
11917
|
expected: "Message",
|
|
11581
11918
|
value: elem
|
|
11582
11919
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -11609,10 +11946,10 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11609
11946
|
path: _path + ".filename",
|
|
11610
11947
|
expected: "string",
|
|
11611
11948
|
value: input.filename
|
|
11612
|
-
}, _errorFactory)); const _ao28 = (input, _path, _exceptionable = true) => ("file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11949
|
+
}, _errorFactory)); const _ao28 = (input, _path, _exceptionable = true) => (undefined === input.type || "file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11613
11950
|
method: "typia.assertGuard",
|
|
11614
11951
|
path: _path + ".type",
|
|
11615
|
-
expected: "\"file\"",
|
|
11952
|
+
expected: "(\"file\" | undefined)",
|
|
11616
11953
|
value: input.type
|
|
11617
11954
|
}, _errorFactory)) && (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11618
11955
|
method: "typia.assertGuard",
|
|
@@ -11679,7 +12016,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11679
12016
|
path: _path + ".render",
|
|
11680
12017
|
expected: "(PublishRenderBase | undefined)",
|
|
11681
12018
|
value: input.render
|
|
11682
|
-
}, _errorFactory)) &&
|
|
12019
|
+
}, _errorFactory)) && _ao1(input.render, _path + ".render", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11683
12020
|
method: "typia.assertGuard",
|
|
11684
12021
|
path: _path + ".render",
|
|
11685
12022
|
expected: "(PublishRenderBase | undefined)",
|
|
@@ -11689,7 +12026,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11689
12026
|
path: _path + ".error",
|
|
11690
12027
|
expected: "(__type.o9 | null | undefined)",
|
|
11691
12028
|
value: input.error
|
|
11692
|
-
}, _errorFactory)) &&
|
|
12029
|
+
}, _errorFactory)) && _ao15(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11693
12030
|
method: "typia.assertGuard",
|
|
11694
12031
|
path: _path + ".error",
|
|
11695
12032
|
expected: "(__type.o9 | null | undefined)",
|
|
@@ -11699,14 +12036,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11699
12036
|
path: _path + ".messages",
|
|
11700
12037
|
expected: "(Array<Message> | undefined)",
|
|
11701
12038
|
value: input.messages
|
|
11702
|
-
}, _errorFactory)) && input.messages.every((elem,
|
|
12039
|
+
}, _errorFactory)) && input.messages.every((elem, _index16) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11703
12040
|
method: "typia.assertGuard",
|
|
11704
|
-
path: _path + ".messages[" +
|
|
12041
|
+
path: _path + ".messages[" + _index16 + "]",
|
|
11705
12042
|
expected: "Message",
|
|
11706
12043
|
value: elem
|
|
11707
|
-
}, _errorFactory)) &&
|
|
12044
|
+
}, _errorFactory)) && _ao16(elem, _path + ".messages[" + _index16 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11708
12045
|
method: "typia.assertGuard",
|
|
11709
|
-
path: _path + ".messages[" +
|
|
12046
|
+
path: _path + ".messages[" + _index16 + "]",
|
|
11710
12047
|
expected: "Message",
|
|
11711
12048
|
value: elem
|
|
11712
12049
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -11771,10 +12108,10 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11771
12108
|
path: _path + ".path",
|
|
11772
12109
|
expected: "string",
|
|
11773
12110
|
value: input.path
|
|
11774
|
-
}, _errorFactory); const _ao32 = (input, _path, _exceptionable = true) => ("youtube" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12111
|
+
}, _errorFactory); const _ao32 = (input, _path, _exceptionable = true) => (undefined === input.type || "youtube" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11775
12112
|
method: "typia.assertGuard",
|
|
11776
12113
|
path: _path + ".type",
|
|
11777
|
-
expected: "\"youtube\"",
|
|
12114
|
+
expected: "(\"youtube\" | undefined)",
|
|
11778
12115
|
value: input.type
|
|
11779
12116
|
}, _errorFactory)) && (undefined === input.draft || ("object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11780
12117
|
method: "typia.assertGuard",
|
|
@@ -11801,7 +12138,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11801
12138
|
path: _path + ".render",
|
|
11802
12139
|
expected: "(PublishRenderBase | undefined)",
|
|
11803
12140
|
value: input.render
|
|
11804
|
-
}, _errorFactory)) &&
|
|
12141
|
+
}, _errorFactory)) && _ao1(input.render, _path + ".render", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11805
12142
|
method: "typia.assertGuard",
|
|
11806
12143
|
path: _path + ".render",
|
|
11807
12144
|
expected: "(PublishRenderBase | undefined)",
|
|
@@ -11811,7 +12148,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11811
12148
|
path: _path + ".error",
|
|
11812
12149
|
expected: "(__type.o9 | null | undefined)",
|
|
11813
12150
|
value: input.error
|
|
11814
|
-
}, _errorFactory)) &&
|
|
12151
|
+
}, _errorFactory)) && _ao15(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11815
12152
|
method: "typia.assertGuard",
|
|
11816
12153
|
path: _path + ".error",
|
|
11817
12154
|
expected: "(__type.o9 | null | undefined)",
|
|
@@ -11821,14 +12158,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11821
12158
|
path: _path + ".messages",
|
|
11822
12159
|
expected: "(Array<Message> | undefined)",
|
|
11823
12160
|
value: input.messages
|
|
11824
|
-
}, _errorFactory)) && input.messages.every((elem,
|
|
12161
|
+
}, _errorFactory)) && input.messages.every((elem, _index17) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11825
12162
|
method: "typia.assertGuard",
|
|
11826
|
-
path: _path + ".messages[" +
|
|
12163
|
+
path: _path + ".messages[" + _index17 + "]",
|
|
11827
12164
|
expected: "Message",
|
|
11828
12165
|
value: elem
|
|
11829
|
-
}, _errorFactory)) &&
|
|
12166
|
+
}, _errorFactory)) && _ao16(elem, _path + ".messages[" + _index17 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11830
12167
|
method: "typia.assertGuard",
|
|
11831
|
-
path: _path + ".messages[" +
|
|
12168
|
+
path: _path + ".messages[" + _index17 + "]",
|
|
11832
12169
|
expected: "Message",
|
|
11833
12170
|
value: elem
|
|
11834
12171
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -11856,9 +12193,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11856
12193
|
path: _path + ".tags",
|
|
11857
12194
|
expected: "(Array<string> | undefined)",
|
|
11858
12195
|
value: input.tags
|
|
11859
|
-
}, _errorFactory)) && input.tags.every((elem,
|
|
12196
|
+
}, _errorFactory)) && input.tags.every((elem, _index18) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11860
12197
|
method: "typia.assertGuard",
|
|
11861
|
-
path: _path + ".tags[" +
|
|
12198
|
+
path: _path + ".tags[" + _index18 + "]",
|
|
11862
12199
|
expected: "string",
|
|
11863
12200
|
value: elem
|
|
11864
12201
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -11883,24 +12220,15 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11883
12220
|
expected: "(ResolvedFilePublishRender | __type.o10)",
|
|
11884
12221
|
value: input
|
|
11885
12222
|
}, _errorFactory);
|
|
11886
|
-
})(); const _au1 = (input, _path, _exceptionable = true) => (()
|
|
11887
|
-
|
|
11888
|
-
|
|
11889
|
-
|
|
11890
|
-
|
|
11891
|
-
|
|
11892
|
-
return _ao32(input, _path, true && _exceptionable);
|
|
11893
|
-
else
|
|
11894
|
-
return _ao28(input, _path, false && _exceptionable) || _ao18(input, _path, false && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11895
|
-
method: "typia.assertGuard",
|
|
11896
|
-
path: _path,
|
|
11897
|
-
expected: "(FilePublishRecordLegacy | FilePublishRecord)",
|
|
11898
|
-
value: input
|
|
11899
|
-
}, _errorFactory);
|
|
11900
|
-
})(); const __is = input => "object" === typeof input && null !== input && _iu1(input); let _errorFactory; return (input, errorFactory) => {
|
|
12223
|
+
})(); const _au1 = (input, _path, _exceptionable = true) => _ao0(input, _path, false && _exceptionable) || _ao17(input, _path, false && _exceptionable) || _ao28(input, _path, false && _exceptionable) || _ao18(input, _path, false && _exceptionable) || _ao32(input, _path, false && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12224
|
+
method: "typia.assertGuard",
|
|
12225
|
+
path: _path,
|
|
12226
|
+
expected: "(EmptyPublishRecord | FacebookPublishRecord | FilePublishRecordLegacy | FilePublishRecord | YoutubePublishRecord)",
|
|
12227
|
+
value: input
|
|
12228
|
+
}, _errorFactory); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _iu1(input); let _errorFactory; return (input, errorFactory) => {
|
|
11901
12229
|
if (false === __is(input)) {
|
|
11902
12230
|
_errorFactory = errorFactory;
|
|
11903
|
-
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || __typia_transform__assertGuard._assertGuard(true, {
|
|
12231
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
11904
12232
|
method: "typia.assertGuard",
|
|
11905
12233
|
path: _path + "",
|
|
11906
12234
|
expected: "(EmptyPublishRecord | FacebookPublishRecord | FilePublishRecord | FilePublishRecordLegacy | YoutubePublishRecord)",
|
|
@@ -11930,7 +12258,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
11930
12258
|
if (undefined === value)
|
|
11931
12259
|
return true;
|
|
11932
12260
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io13(value);
|
|
11933
|
-
}); const _io13 = input => (null === input.style || undefined === input.style || "string" === typeof input.style) && (undefined === input.styleOverrides || "object" === typeof input.styleOverrides && null !== input.styleOverrides && false === Array.isArray(input.styleOverrides) && _io14(input.styleOverrides)); const _io14 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding); const _io15 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io16(input.crop); const _io16 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (undefined === input.width || "number" === typeof input.width) && (undefined === input.height || "number" === typeof input.height); const _io17 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem)); const _io18 = input => "string" === typeof input.format && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && _io19(input.transcribe)) && (undefined === input.translate || "object" === typeof input.translate && null !== input.translate && _io20(input.translate)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io21(input.audio)) && true && (undefined === input.pick || Array.isArray(input.pick) && input.pick.every(elem => "string" === typeof elem)) && (null !== input.subtitle && (undefined === input.subtitle || "string" === typeof input.subtitle || "object" === typeof input.subtitle && null !== input.subtitle && false === Array.isArray(input.subtitle) && _io22(input.subtitle))); const _io19 = input => "string" === typeof input.engine; const _io20 = input => "string" === typeof input.language; const _io21 = input => (undefined === input.codec || "string" === typeof input.codec) && (undefined === input.pan || "string" === typeof input.pan) && (undefined === input.samplerate || "number" === typeof input.samplerate) && (undefined === input.split || "boolean" === typeof input.split); const _io22 = input => (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.style || "string" === typeof input.style); const _io23 = input => "object" === typeof input.__context && null !== input.__context && _io24(input.__context) && ("object" === typeof input.__returnValue && null !== input.__returnValue && _io9(input.__returnValue)); const _io24 = input => "object" === typeof input.publish && null !== input.publish && _io25(input.publish) && "string" === typeof input.directory && "string" === typeof input.name; const _io25 = input => "file" === input.type && (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && (undefined === input.renders || "object" === typeof input.renders && null !== input.renders && false === Array.isArray(input.renders) && _io8(input.renders)) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io26(input.draft)) && (undefined === input.remote || "object" === typeof input.remote && null !== input.remote && false === Array.isArray(input.remote) && _io27(input.remote)) && (undefined === input.published || "object" === typeof input.published && null !== input.published && _io30(input.published)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset) && (undefined === input.connection || "string" === typeof input.connection) && (undefined === input.render || "object" === typeof input.render && null !== input.render && _io31(input.render)) && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io32(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io1(elem))); const _io26 = input => (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename); const _io27 = input => (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && (undefined === input.renders || "object" === typeof input.renders && null !== input.renders && false === Array.isArray(input.renders) && _io28(input.renders)); const _io28 = input => Object.keys(input).every(key => {
|
|
12261
|
+
}); const _io13 = input => (null === input.style || undefined === input.style || "string" === typeof input.style) && (undefined === input.styleOverrides || "object" === typeof input.styleOverrides && null !== input.styleOverrides && false === Array.isArray(input.styleOverrides) && _io14(input.styleOverrides)); const _io14 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding); const _io15 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io16(input.crop); const _io16 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (undefined === input.width || "number" === typeof input.width) && (undefined === input.height || "number" === typeof input.height); const _io17 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem)); const _io18 = input => "string" === typeof input.format && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && _io19(input.transcribe)) && (undefined === input.translate || "object" === typeof input.translate && null !== input.translate && _io20(input.translate)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io21(input.audio)) && true && (undefined === input.pick || Array.isArray(input.pick) && input.pick.every(elem => "string" === typeof elem)) && (null !== input.subtitle && (undefined === input.subtitle || "string" === typeof input.subtitle || "object" === typeof input.subtitle && null !== input.subtitle && false === Array.isArray(input.subtitle) && _io22(input.subtitle))); const _io19 = input => "string" === typeof input.engine; const _io20 = input => "string" === typeof input.language; const _io21 = input => (undefined === input.codec || "string" === typeof input.codec) && (undefined === input.pan || "string" === typeof input.pan) && (undefined === input.samplerate || "number" === typeof input.samplerate) && (undefined === input.split || "boolean" === typeof input.split); const _io22 = input => (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.style || "string" === typeof input.style); const _io23 = input => "object" === typeof input.__context && null !== input.__context && _io24(input.__context) && ("object" === typeof input.__returnValue && null !== input.__returnValue && _io9(input.__returnValue)); const _io24 = input => "object" === typeof input.publish && null !== input.publish && false === Array.isArray(input.publish) && _io25(input.publish) && "string" === typeof input.directory && "string" === typeof input.name; const _io25 = input => (undefined === input.type || "file" === input.type) && (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && (undefined === input.renders || "object" === typeof input.renders && null !== input.renders && false === Array.isArray(input.renders) && _io8(input.renders)) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io26(input.draft)) && (undefined === input.remote || "object" === typeof input.remote && null !== input.remote && false === Array.isArray(input.remote) && _io27(input.remote)) && (undefined === input.published || "object" === typeof input.published && null !== input.published && _io30(input.published)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset) && (undefined === input.connection || "string" === typeof input.connection) && (undefined === input.render || "object" === typeof input.render && null !== input.render && _io31(input.render)) && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io32(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io1(elem))); const _io26 = input => (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename); const _io27 = input => (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && (undefined === input.renders || "object" === typeof input.renders && null !== input.renders && false === Array.isArray(input.renders) && _io28(input.renders)); const _io28 = input => Object.keys(input).every(key => {
|
|
11934
12262
|
const value = input[key];
|
|
11935
12263
|
if (undefined === value)
|
|
11936
12264
|
return true;
|
|
@@ -12620,7 +12948,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
12620
12948
|
path: _path + ".__returnValue",
|
|
12621
12949
|
expected: "ResolvedFilePublishRender",
|
|
12622
12950
|
value: input.__returnValue
|
|
12623
|
-
}, _errorFactory)); const _ao24 = (input, _path, _exceptionable = true) => (("object" === typeof input.publish && null !== input.publish || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12951
|
+
}, _errorFactory)); const _ao24 = (input, _path, _exceptionable = true) => (("object" === typeof input.publish && null !== input.publish && false === Array.isArray(input.publish) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12624
12952
|
method: "typia.assertGuard",
|
|
12625
12953
|
path: _path + ".publish",
|
|
12626
12954
|
expected: "FilePublishRecord",
|
|
@@ -12640,10 +12968,10 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
12640
12968
|
path: _path + ".name",
|
|
12641
12969
|
expected: "string",
|
|
12642
12970
|
value: input.name
|
|
12643
|
-
}, _errorFactory)); const _ao25 = (input, _path, _exceptionable = true) => ("file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12971
|
+
}, _errorFactory)); const _ao25 = (input, _path, _exceptionable = true) => (undefined === input.type || "file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12644
12972
|
method: "typia.assertGuard",
|
|
12645
12973
|
path: _path + ".type",
|
|
12646
|
-
expected: "\"file\"",
|
|
12974
|
+
expected: "(\"file\" | undefined)",
|
|
12647
12975
|
value: input.type
|
|
12648
12976
|
}, _errorFactory)) && (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12649
12977
|
method: "typia.assertGuard",
|
|
@@ -12971,41 +13299,66 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
12971
13299
|
}; })()(input);
|
|
12972
13300
|
}
|
|
12973
13301
|
case ":published": {
|
|
12974
|
-
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, {
|
|
12975
13303
|
method: "typia.assertGuard",
|
|
12976
13304
|
path: _path + ".type",
|
|
12977
13305
|
expected: "string",
|
|
12978
13306
|
value: input.type
|
|
12979
|
-
}, _errorFactory)) && ("string" === typeof input.parent || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13307
|
+
}, _errorFactory)) && (undefined === input.parent || "string" === typeof input.parent || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12980
13308
|
method: "typia.assertGuard",
|
|
12981
13309
|
path: _path + ".parent",
|
|
12982
|
-
expected: "string",
|
|
13310
|
+
expected: "(string | undefined)",
|
|
12983
13311
|
value: input.parent
|
|
12984
|
-
}, _errorFactory)) && ((
|
|
13312
|
+
}, _errorFactory)) && ((null !== input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12985
13313
|
method: "typia.assertGuard",
|
|
12986
13314
|
path: _path + ".asset",
|
|
12987
|
-
expected: "Array<string>",
|
|
13315
|
+
expected: "(Array<string> | string | undefined)",
|
|
13316
|
+
value: input.asset
|
|
13317
|
+
}, _errorFactory)) && (undefined === input.asset || "string" === typeof input.asset || (Array.isArray(input.asset) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13318
|
+
method: "typia.assertGuard",
|
|
13319
|
+
path: _path + ".asset",
|
|
13320
|
+
expected: "(Array<string> | string | undefined)",
|
|
12988
13321
|
value: input.asset
|
|
12989
|
-
}, _errorFactory)) && input.asset.every((elem,
|
|
13322
|
+
}, _errorFactory)) && input.asset.every((elem, _index3) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12990
13323
|
method: "typia.assertGuard",
|
|
12991
|
-
path: _path + ".asset[" +
|
|
13324
|
+
path: _path + ".asset[" + _index3 + "]",
|
|
12992
13325
|
expected: "string",
|
|
12993
13326
|
value: elem
|
|
12994
13327
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
12995
13328
|
method: "typia.assertGuard",
|
|
12996
13329
|
path: _path + ".asset",
|
|
12997
|
-
expected: "Array<string>",
|
|
13330
|
+
expected: "(Array<string> | string | undefined)",
|
|
12998
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
|
|
12999
13347
|
}, _errorFactory)) && ("number" === typeof input.time || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13000
13348
|
method: "typia.assertGuard",
|
|
13001
13349
|
path: _path + ".time",
|
|
13002
13350
|
expected: "number",
|
|
13003
13351
|
value: input.time
|
|
13004
|
-
}, _errorFactory)) && ("string" === typeof input.connection || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13352
|
+
}, _errorFactory)) && (undefined === input.connection || "string" === typeof input.connection || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13005
13353
|
method: "typia.assertGuard",
|
|
13006
13354
|
path: _path + ".connection",
|
|
13007
|
-
expected: "string",
|
|
13355
|
+
expected: "(string | undefined)",
|
|
13008
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
|
|
13009
13362
|
}, _errorFactory)) && (undefined === input.user || "string" === typeof input.user || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
13010
13363
|
method: "typia.assertGuard",
|
|
13011
13364
|
path: _path + ".user",
|
|
@@ -15075,29 +15428,29 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15075
15428
|
}; })()(input);
|
|
15076
15429
|
}
|
|
15077
15430
|
case ":search": {
|
|
15078
|
-
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 => {
|
|
15079
15432
|
const value = input[key];
|
|
15080
15433
|
if (undefined === value)
|
|
15081
15434
|
return true;
|
|
15082
15435
|
return "asc" === value || "desc" === value;
|
|
15083
|
-
}); 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, {
|
|
15084
15437
|
method: "typia.assertGuard",
|
|
15085
15438
|
path: _path + ".type",
|
|
15086
|
-
expected: "(\"conditions_and\" | undefined)",
|
|
15439
|
+
expected: "(\"conditions_and\" | \"conditions_or\" | undefined)",
|
|
15087
15440
|
value: input.type
|
|
15088
15441
|
}, _errorFactory)) && (undefined === input.sort || (Array.isArray(input.sort) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15089
15442
|
method: "typia.assertGuard",
|
|
15090
15443
|
path: _path + ".sort",
|
|
15091
15444
|
expected: "(Array<__type> | undefined)",
|
|
15092
15445
|
value: input.sort
|
|
15093
|
-
}, _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, {
|
|
15094
15447
|
method: "typia.assertGuard",
|
|
15095
|
-
path: _path + ".sort[" +
|
|
15448
|
+
path: _path + ".sort[" + _index4 + "]",
|
|
15096
15449
|
expected: "__type",
|
|
15097
15450
|
value: elem
|
|
15098
|
-
}, _errorFactory)) && _ao1(elem, _path + ".sort[" +
|
|
15451
|
+
}, _errorFactory)) && _ao1(elem, _path + ".sort[" + _index4 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15099
15452
|
method: "typia.assertGuard",
|
|
15100
|
-
path: _path + ".sort[" +
|
|
15453
|
+
path: _path + ".sort[" + _index4 + "]",
|
|
15101
15454
|
expected: "__type",
|
|
15102
15455
|
value: elem
|
|
15103
15456
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15120,24 +15473,39 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15120
15473
|
path: _path + ".showHidden",
|
|
15121
15474
|
expected: "(boolean | undefined)",
|
|
15122
15475
|
value: input.showHidden
|
|
15123
|
-
}, _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, {
|
|
15124
15477
|
method: "typia.assertGuard",
|
|
15125
15478
|
path: _path + ".view",
|
|
15126
|
-
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)",
|
|
15127
15480
|
value: input.view
|
|
15128
|
-
}, _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, {
|
|
15129
15482
|
method: "typia.assertGuard",
|
|
15130
15483
|
path: _path + ".conditions",
|
|
15131
|
-
expected: "(Array<
|
|
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, {
|
|
15497
|
+
method: "typia.assertGuard",
|
|
15498
|
+
path: _path + ".conditions",
|
|
15499
|
+
expected: "(Array<SearchCondition> | undefined)",
|
|
15132
15500
|
value: input.conditions
|
|
15133
15501
|
}, _errorFactory)) && (null === input.visibleColumnKeys || undefined === input.visibleColumnKeys || (Array.isArray(input.visibleColumnKeys) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15134
15502
|
method: "typia.assertGuard",
|
|
15135
15503
|
path: _path + ".visibleColumnKeys",
|
|
15136
15504
|
expected: "(Array<string> | null | undefined)",
|
|
15137
15505
|
value: input.visibleColumnKeys
|
|
15138
|
-
}, _errorFactory)) && input.visibleColumnKeys.every((elem,
|
|
15506
|
+
}, _errorFactory)) && input.visibleColumnKeys.every((elem, _index6) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15139
15507
|
method: "typia.assertGuard",
|
|
15140
|
-
path: _path + ".visibleColumnKeys[" +
|
|
15508
|
+
path: _path + ".visibleColumnKeys[" + _index6 + "]",
|
|
15141
15509
|
expected: "string",
|
|
15142
15510
|
value: elem
|
|
15143
15511
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15150,6 +15518,26 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15150
15518
|
path: _path + ".connectionId",
|
|
15151
15519
|
expected: "(null | string | undefined)",
|
|
15152
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
|
|
15153
15541
|
}, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
15154
15542
|
const value = input[key];
|
|
15155
15543
|
if (undefined === value)
|
|
@@ -15160,7 +15548,37 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15160
15548
|
expected: "(\"asc\" | \"desc\")",
|
|
15161
15549
|
value: value
|
|
15162
15550
|
}, _errorFactory);
|
|
15163
|
-
}); 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) => {
|
|
15164
15582
|
if (false === __is(input)) {
|
|
15165
15583
|
_errorFactory = errorFactory;
|
|
15166
15584
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
@@ -15178,10 +15596,10 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15178
15596
|
}; })()(input);
|
|
15179
15597
|
}
|
|
15180
15598
|
case ":search?": {
|
|
15181
|
-
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, {
|
|
15182
15600
|
method: "typia.assertGuard",
|
|
15183
15601
|
path: _path + ".hits",
|
|
15184
|
-
expected: "Array<string>",
|
|
15602
|
+
expected: "(Array<string> | undefined)",
|
|
15185
15603
|
value: input.hits
|
|
15186
15604
|
}, _errorFactory)) && input.hits.every((elem, _index2) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15187
15605
|
method: "typia.assertGuard",
|
|
@@ -15191,7 +15609,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15191
15609
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15192
15610
|
method: "typia.assertGuard",
|
|
15193
15611
|
path: _path + ".hits",
|
|
15194
|
-
expected: "Array<string>",
|
|
15612
|
+
expected: "(Array<string> | undefined)",
|
|
15195
15613
|
value: input.hits
|
|
15196
15614
|
}, _errorFactory)) && (undefined === input.total || "number" === typeof input.total || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15197
15615
|
method: "typia.assertGuard",
|
|
@@ -15208,10 +15626,10 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15208
15626
|
path: _path + ".error",
|
|
15209
15627
|
expected: "(string | undefined)",
|
|
15210
15628
|
value: input.error
|
|
15211
|
-
}, _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) => {
|
|
15212
15630
|
if (false === __is(input)) {
|
|
15213
15631
|
_errorFactory = errorFactory;
|
|
15214
|
-
((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, {
|
|
15215
15633
|
method: "typia.assertGuard",
|
|
15216
15634
|
path: _path + "",
|
|
15217
15635
|
expected: "SearchRecordProvided",
|
|
@@ -15225,8 +15643,74 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15225
15643
|
}
|
|
15226
15644
|
}; })()(input);
|
|
15227
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
|
+
}
|
|
15228
15712
|
case ":settings": {
|
|
15229
|
-
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 => {
|
|
15230
15714
|
if (["settingsPanelStore"].some(prop => key === prop))
|
|
15231
15715
|
return true;
|
|
15232
15716
|
const value = input[key];
|
|
@@ -15298,12 +15782,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15298
15782
|
if (undefined === value)
|
|
15299
15783
|
return true;
|
|
15300
15784
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io31(value);
|
|
15301
|
-
}); 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 => {
|
|
15302
15786
|
const value = input[key];
|
|
15303
15787
|
if (undefined === value)
|
|
15304
15788
|
return true;
|
|
15305
15789
|
return Array.isArray(value) && value.every(elem => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem);
|
|
15306
|
-
}); 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, {
|
|
15307
15791
|
method: "typia.assertGuard",
|
|
15308
15792
|
path: _path + ".autoLogoutTime",
|
|
15309
15793
|
expected: "(number | undefined)",
|
|
@@ -15373,19 +15857,19 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15373
15857
|
path: _path + ".exclusiveTagGroups",
|
|
15374
15858
|
expected: "(Array<Array<string>> | undefined)",
|
|
15375
15859
|
value: input.exclusiveTagGroups
|
|
15376
|
-
}, _errorFactory)) && input.exclusiveTagGroups.every((elem,
|
|
15860
|
+
}, _errorFactory)) && input.exclusiveTagGroups.every((elem, _index32) => (Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15377
15861
|
method: "typia.assertGuard",
|
|
15378
|
-
path: _path + ".exclusiveTagGroups[" +
|
|
15862
|
+
path: _path + ".exclusiveTagGroups[" + _index32 + "]",
|
|
15379
15863
|
expected: "Array<string>",
|
|
15380
15864
|
value: elem
|
|
15381
|
-
}, _errorFactory)) && elem.every((elem,
|
|
15865
|
+
}, _errorFactory)) && elem.every((elem, _index33) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15382
15866
|
method: "typia.assertGuard",
|
|
15383
|
-
path: _path + ".exclusiveTagGroups[" +
|
|
15867
|
+
path: _path + ".exclusiveTagGroups[" + _index32 + "][" + _index33 + "]",
|
|
15384
15868
|
expected: "string",
|
|
15385
15869
|
value: elem
|
|
15386
15870
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15387
15871
|
method: "typia.assertGuard",
|
|
15388
|
-
path: _path + ".exclusiveTagGroups[" +
|
|
15872
|
+
path: _path + ".exclusiveTagGroups[" + _index32 + "]",
|
|
15389
15873
|
expected: "Array<string>",
|
|
15390
15874
|
value: elem
|
|
15391
15875
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15533,14 +16017,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15533
16017
|
path: _path + ".commands",
|
|
15534
16018
|
expected: "(Array<__type>.o4 | undefined)",
|
|
15535
16019
|
value: input.commands
|
|
15536
|
-
}, _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, {
|
|
15537
16021
|
method: "typia.assertGuard",
|
|
15538
|
-
path: _path + ".commands[" +
|
|
16022
|
+
path: _path + ".commands[" + _index34 + "]",
|
|
15539
16023
|
expected: "__type.o50",
|
|
15540
16024
|
value: elem
|
|
15541
|
-
}, _errorFactory)) && _ao57(elem, _path + ".commands[" +
|
|
16025
|
+
}, _errorFactory)) && _ao57(elem, _path + ".commands[" + _index34 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15542
16026
|
method: "typia.assertGuard",
|
|
15543
|
-
path: _path + ".commands[" +
|
|
16027
|
+
path: _path + ".commands[" + _index34 + "]",
|
|
15544
16028
|
expected: "__type.o50",
|
|
15545
16029
|
value: elem
|
|
15546
16030
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15553,9 +16037,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15553
16037
|
path: _path + ".predefinedTags",
|
|
15554
16038
|
expected: "(Array<string> | undefined)",
|
|
15555
16039
|
value: input.predefinedTags
|
|
15556
|
-
}, _errorFactory)) && input.predefinedTags.every((elem,
|
|
16040
|
+
}, _errorFactory)) && input.predefinedTags.every((elem, _index35) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15557
16041
|
method: "typia.assertGuard",
|
|
15558
|
-
path: _path + ".predefinedTags[" +
|
|
16042
|
+
path: _path + ".predefinedTags[" + _index35 + "]",
|
|
15559
16043
|
expected: "string",
|
|
15560
16044
|
value: elem
|
|
15561
16045
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15588,14 +16072,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15588
16072
|
path: _path + ".hiddenPreviews",
|
|
15589
16073
|
expected: "(Array<__type>.o5 | undefined)",
|
|
15590
16074
|
value: input.hiddenPreviews
|
|
15591
|
-
}, _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, {
|
|
15592
16076
|
method: "typia.assertGuard",
|
|
15593
|
-
path: _path + ".hiddenPreviews[" +
|
|
16077
|
+
path: _path + ".hiddenPreviews[" + _index36 + "]",
|
|
15594
16078
|
expected: "__type.o61",
|
|
15595
16079
|
value: elem
|
|
15596
|
-
}, _errorFactory)) && _ao68(elem, _path + ".hiddenPreviews[" +
|
|
16080
|
+
}, _errorFactory)) && _ao68(elem, _path + ".hiddenPreviews[" + _index36 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15597
16081
|
method: "typia.assertGuard",
|
|
15598
|
-
path: _path + ".hiddenPreviews[" +
|
|
16082
|
+
path: _path + ".hiddenPreviews[" + _index36 + "]",
|
|
15599
16083
|
expected: "__type.o61",
|
|
15600
16084
|
value: elem
|
|
15601
16085
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15658,6 +16142,16 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15658
16142
|
path: _path + ".suppressDeleteAlert",
|
|
15659
16143
|
expected: "(boolean | undefined)",
|
|
15660
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
|
|
15661
16155
|
}, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => (undefined === input.overrideUserContact || "boolean" === typeof input.overrideUserContact || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15662
16156
|
method: "typia.assertGuard",
|
|
15663
16157
|
path: _path + ".overrideUserContact",
|
|
@@ -15800,9 +16294,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15800
16294
|
path: _path + ".sortOrder",
|
|
15801
16295
|
expected: "(Array<string> | undefined)",
|
|
15802
16296
|
value: input.sortOrder
|
|
15803
|
-
}, _errorFactory)) && input.sortOrder.every((elem,
|
|
16297
|
+
}, _errorFactory)) && input.sortOrder.every((elem, _index37) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15804
16298
|
method: "typia.assertGuard",
|
|
15805
|
-
path: _path + ".sortOrder[" +
|
|
16299
|
+
path: _path + ".sortOrder[" + _index37 + "]",
|
|
15806
16300
|
expected: "string",
|
|
15807
16301
|
value: elem
|
|
15808
16302
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15815,9 +16309,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15815
16309
|
path: _path + ".exclude",
|
|
15816
16310
|
expected: "(Array<string> | undefined)",
|
|
15817
16311
|
value: input.exclude
|
|
15818
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
16312
|
+
}, _errorFactory)) && input.exclude.every((elem, _index38) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15819
16313
|
method: "typia.assertGuard",
|
|
15820
|
-
path: _path + ".exclude[" +
|
|
16314
|
+
path: _path + ".exclude[" + _index38 + "]",
|
|
15821
16315
|
expected: "string",
|
|
15822
16316
|
value: elem
|
|
15823
16317
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15830,9 +16324,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15830
16324
|
path: _path + ".include",
|
|
15831
16325
|
expected: "(Array<string> | undefined)",
|
|
15832
16326
|
value: input.include
|
|
15833
|
-
}, _errorFactory)) && input.include.every((elem,
|
|
16327
|
+
}, _errorFactory)) && input.include.every((elem, _index39) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15834
16328
|
method: "typia.assertGuard",
|
|
15835
|
-
path: _path + ".include[" +
|
|
16329
|
+
path: _path + ".include[" + _index39 + "]",
|
|
15836
16330
|
expected: "string",
|
|
15837
16331
|
value: elem
|
|
15838
16332
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15845,9 +16339,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15845
16339
|
path: _path + ".exclude",
|
|
15846
16340
|
expected: "(Array<string> | undefined)",
|
|
15847
16341
|
value: input.exclude
|
|
15848
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
16342
|
+
}, _errorFactory)) && input.exclude.every((elem, _index40) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15849
16343
|
method: "typia.assertGuard",
|
|
15850
|
-
path: _path + ".exclude[" +
|
|
16344
|
+
path: _path + ".exclude[" + _index40 + "]",
|
|
15851
16345
|
expected: "string",
|
|
15852
16346
|
value: elem
|
|
15853
16347
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15860,9 +16354,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15860
16354
|
path: _path + ".include",
|
|
15861
16355
|
expected: "(Array<string> | undefined)",
|
|
15862
16356
|
value: input.include
|
|
15863
|
-
}, _errorFactory)) && input.include.every((elem,
|
|
16357
|
+
}, _errorFactory)) && input.include.every((elem, _index41) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15864
16358
|
method: "typia.assertGuard",
|
|
15865
|
-
path: _path + ".include[" +
|
|
16359
|
+
path: _path + ".include[" + _index41 + "]",
|
|
15866
16360
|
expected: "string",
|
|
15867
16361
|
value: elem
|
|
15868
16362
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15875,9 +16369,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15875
16369
|
path: _path + ".exclude",
|
|
15876
16370
|
expected: "(Array<string> | undefined)",
|
|
15877
16371
|
value: input.exclude
|
|
15878
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
16372
|
+
}, _errorFactory)) && input.exclude.every((elem, _index42) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15879
16373
|
method: "typia.assertGuard",
|
|
15880
|
-
path: _path + ".exclude[" +
|
|
16374
|
+
path: _path + ".exclude[" + _index42 + "]",
|
|
15881
16375
|
expected: "string",
|
|
15882
16376
|
value: elem
|
|
15883
16377
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15890,9 +16384,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15890
16384
|
path: _path + ".include",
|
|
15891
16385
|
expected: "(Array<string> | undefined)",
|
|
15892
16386
|
value: input.include
|
|
15893
|
-
}, _errorFactory)) && input.include.every((elem,
|
|
16387
|
+
}, _errorFactory)) && input.include.every((elem, _index43) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15894
16388
|
method: "typia.assertGuard",
|
|
15895
|
-
path: _path + ".include[" +
|
|
16389
|
+
path: _path + ".include[" + _index43 + "]",
|
|
15896
16390
|
expected: "string",
|
|
15897
16391
|
value: elem
|
|
15898
16392
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15905,9 +16399,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15905
16399
|
path: _path + ".exclude",
|
|
15906
16400
|
expected: "(Array<string> | undefined)",
|
|
15907
16401
|
value: input.exclude
|
|
15908
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
16402
|
+
}, _errorFactory)) && input.exclude.every((elem, _index44) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15909
16403
|
method: "typia.assertGuard",
|
|
15910
|
-
path: _path + ".exclude[" +
|
|
16404
|
+
path: _path + ".exclude[" + _index44 + "]",
|
|
15911
16405
|
expected: "string",
|
|
15912
16406
|
value: elem
|
|
15913
16407
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15985,14 +16479,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15985
16479
|
path: _path + ".colorTags",
|
|
15986
16480
|
expected: "(Array<PromotedTag> | undefined)",
|
|
15987
16481
|
value: input.colorTags
|
|
15988
|
-
}, _errorFactory)) && input.colorTags.every((elem,
|
|
16482
|
+
}, _errorFactory)) && input.colorTags.every((elem, _index45) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15989
16483
|
method: "typia.assertGuard",
|
|
15990
|
-
path: _path + ".colorTags[" +
|
|
16484
|
+
path: _path + ".colorTags[" + _index45 + "]",
|
|
15991
16485
|
expected: "PromotedTag",
|
|
15992
16486
|
value: elem
|
|
15993
|
-
}, _errorFactory)) && _ao21(elem, _path + ".colorTags[" +
|
|
16487
|
+
}, _errorFactory)) && _ao21(elem, _path + ".colorTags[" + _index45 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15994
16488
|
method: "typia.assertGuard",
|
|
15995
|
-
path: _path + ".colorTags[" +
|
|
16489
|
+
path: _path + ".colorTags[" + _index45 + "]",
|
|
15996
16490
|
expected: "PromotedTag",
|
|
15997
16491
|
value: elem
|
|
15998
16492
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16085,9 +16579,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16085
16579
|
path: _path + ".favorites",
|
|
16086
16580
|
expected: "(Array<string> | undefined)",
|
|
16087
16581
|
value: input.favorites
|
|
16088
|
-
}, _errorFactory)) && input.favorites.every((elem,
|
|
16582
|
+
}, _errorFactory)) && input.favorites.every((elem, _index46) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16089
16583
|
method: "typia.assertGuard",
|
|
16090
|
-
path: _path + ".favorites[" +
|
|
16584
|
+
path: _path + ".favorites[" + _index46 + "]",
|
|
16091
16585
|
expected: "string",
|
|
16092
16586
|
value: elem
|
|
16093
16587
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16505,9 +16999,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16505
16999
|
path: _path + ".playbackRates",
|
|
16506
17000
|
expected: "(Array<number> | undefined)",
|
|
16507
17001
|
value: input.playbackRates
|
|
16508
|
-
}, _errorFactory)) && input.playbackRates.every((elem,
|
|
17002
|
+
}, _errorFactory)) && input.playbackRates.every((elem, _index47) => "number" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16509
17003
|
method: "typia.assertGuard",
|
|
16510
|
-
path: _path + ".playbackRates[" +
|
|
17004
|
+
path: _path + ".playbackRates[" + _index47 + "]",
|
|
16511
17005
|
expected: "number",
|
|
16512
17006
|
value: elem
|
|
16513
17007
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16540,14 +17034,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16540
17034
|
path: _path + ".guides",
|
|
16541
17035
|
expected: "(Array<__type>.o2 | undefined)",
|
|
16542
17036
|
value: input.guides
|
|
16543
|
-
}, _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, {
|
|
16544
17038
|
method: "typia.assertGuard",
|
|
16545
|
-
path: _path + ".guides[" +
|
|
17039
|
+
path: _path + ".guides[" + _index48 + "]",
|
|
16546
17040
|
expected: "__type.o41",
|
|
16547
17041
|
value: elem
|
|
16548
|
-
}, _errorFactory)) && _ao48(elem, _path + ".guides[" +
|
|
17042
|
+
}, _errorFactory)) && _ao48(elem, _path + ".guides[" + _index48 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16549
17043
|
method: "typia.assertGuard",
|
|
16550
|
-
path: _path + ".guides[" +
|
|
17044
|
+
path: _path + ".guides[" + _index48 + "]",
|
|
16551
17045
|
expected: "__type.o41",
|
|
16552
17046
|
value: elem
|
|
16553
17047
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16635,14 +17129,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16635
17129
|
path: _path + ".suggestions",
|
|
16636
17130
|
expected: "(Array<__type> | undefined)",
|
|
16637
17131
|
value: input.suggestions
|
|
16638
|
-
}, _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, {
|
|
16639
17133
|
method: "typia.assertGuard",
|
|
16640
|
-
path: _path + ".suggestions[" +
|
|
17134
|
+
path: _path + ".suggestions[" + _index49 + "]",
|
|
16641
17135
|
expected: "__type.o39",
|
|
16642
17136
|
value: elem
|
|
16643
|
-
}, _errorFactory)) && _ao46(elem, _path + ".suggestions[" +
|
|
17137
|
+
}, _errorFactory)) && _ao46(elem, _path + ".suggestions[" + _index49 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16644
17138
|
method: "typia.assertGuard",
|
|
16645
|
-
path: _path + ".suggestions[" +
|
|
17139
|
+
path: _path + ".suggestions[" + _index49 + "]",
|
|
16646
17140
|
expected: "__type.o39",
|
|
16647
17141
|
value: elem
|
|
16648
17142
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16655,14 +17149,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16655
17149
|
path: _path + ".colors",
|
|
16656
17150
|
expected: "(Array<__type>.o1 | undefined)",
|
|
16657
17151
|
value: input.colors
|
|
16658
|
-
}, _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, {
|
|
16659
17153
|
method: "typia.assertGuard",
|
|
16660
|
-
path: _path + ".colors[" +
|
|
17154
|
+
path: _path + ".colors[" + _index50 + "]",
|
|
16661
17155
|
expected: "__type.o40",
|
|
16662
17156
|
value: elem
|
|
16663
|
-
}, _errorFactory)) && _ao47(elem, _path + ".colors[" +
|
|
17157
|
+
}, _errorFactory)) && _ao47(elem, _path + ".colors[" + _index50 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16664
17158
|
method: "typia.assertGuard",
|
|
16665
|
-
path: _path + ".colors[" +
|
|
17159
|
+
path: _path + ".colors[" + _index50 + "]",
|
|
16666
17160
|
expected: "__type.o40",
|
|
16667
17161
|
value: elem
|
|
16668
17162
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16675,9 +17169,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16675
17169
|
path: _path + ".overridableProperties",
|
|
16676
17170
|
expected: "(Array<keyof SubtitleStyle | null> | undefined)",
|
|
16677
17171
|
value: input.overridableProperties
|
|
16678
|
-
}, _errorFactory)) && input.overridableProperties.every((elem,
|
|
17172
|
+
}, _errorFactory)) && input.overridableProperties.every((elem, _index51) => null === elem || true === _av52.has(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16679
17173
|
method: "typia.assertGuard",
|
|
16680
|
-
path: _path + ".overridableProperties[" +
|
|
17174
|
+
path: _path + ".overridableProperties[" + _index51 + "]",
|
|
16681
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)",
|
|
16682
17176
|
value: elem
|
|
16683
17177
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16775,14 +17269,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16775
17269
|
path: _path + ".text",
|
|
16776
17270
|
expected: "(Array<__type>.o3 | undefined)",
|
|
16777
17271
|
value: input.text
|
|
16778
|
-
}, _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, {
|
|
16779
17273
|
method: "typia.assertGuard",
|
|
16780
|
-
path: _path + ".text[" +
|
|
17274
|
+
path: _path + ".text[" + _index53 + "]",
|
|
16781
17275
|
expected: "__type.o46",
|
|
16782
17276
|
value: elem
|
|
16783
|
-
}, _errorFactory)) && _ao53(elem, _path + ".text[" +
|
|
17277
|
+
}, _errorFactory)) && _ao53(elem, _path + ".text[" + _index53 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16784
17278
|
method: "typia.assertGuard",
|
|
16785
|
-
path: _path + ".text[" +
|
|
17279
|
+
path: _path + ".text[" + _index53 + "]",
|
|
16786
17280
|
expected: "__type.o46",
|
|
16787
17281
|
value: elem
|
|
16788
17282
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16830,9 +17324,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16830
17324
|
path: _path + ".args",
|
|
16831
17325
|
expected: "(Array<string> | undefined)",
|
|
16832
17326
|
value: input.args
|
|
16833
|
-
}, _errorFactory)) && input.args.every((elem,
|
|
17327
|
+
}, _errorFactory)) && input.args.every((elem, _index54) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16834
17328
|
method: "typia.assertGuard",
|
|
16835
|
-
path: _path + ".args[" +
|
|
17329
|
+
path: _path + ".args[" + _index54 + "]",
|
|
16836
17330
|
expected: "string",
|
|
16837
17331
|
value: elem
|
|
16838
17332
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -16895,9 +17389,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
16895
17389
|
path: _path + ".args",
|
|
16896
17390
|
expected: "(Array<string> | undefined)",
|
|
16897
17391
|
value: input.args
|
|
16898
|
-
}, _errorFactory)) && input.args.every((elem,
|
|
17392
|
+
}, _errorFactory)) && input.args.every((elem, _index55) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
16899
17393
|
method: "typia.assertGuard",
|
|
16900
|
-
path: _path + ".args[" +
|
|
17394
|
+
path: _path + ".args[" + _index55 + "]",
|
|
16901
17395
|
expected: "string",
|
|
16902
17396
|
value: elem
|
|
16903
17397
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17010,7 +17504,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17010
17504
|
path: _path + ".search",
|
|
17011
17505
|
expected: "(__type.o58 | undefined)",
|
|
17012
17506
|
value: input.search
|
|
17013
|
-
}, _errorFactory)) && (undefined === input.sortMode || true ===
|
|
17507
|
+
}, _errorFactory)) && (undefined === input.sortMode || true === _av56.has(input.sortMode) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17014
17508
|
method: "typia.assertGuard",
|
|
17015
17509
|
path: _path + ".sortMode",
|
|
17016
17510
|
expected: "(\"az\" | \"default\" | \"earliestdeadline\" | \"latestdeadline\" | \"leastrecent\" | \"manual\" | \"mostrecent\" | \"newest\" | \"oldest\" | \"za\" | undefined)",
|
|
@@ -17020,19 +17514,24 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17020
17514
|
path: _path + ".maxItemsDisplayed",
|
|
17021
17515
|
expected: "(number | undefined)",
|
|
17022
17516
|
value: input.maxItemsDisplayed
|
|
17023
|
-
}, _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, {
|
|
17024
17518
|
method: "typia.assertGuard",
|
|
17025
17519
|
path: _path + ".maxHeight",
|
|
17026
17520
|
expected: "(number | undefined)",
|
|
17027
17521
|
value: input.maxHeight
|
|
17028
|
-
}, _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, {
|
|
17029
17528
|
method: "typia.assertGuard",
|
|
17030
17529
|
path: _path + ".fontFamilies",
|
|
17031
17530
|
expected: "(Array<string> | undefined)",
|
|
17032
17531
|
value: input.fontFamilies
|
|
17033
|
-
}, _errorFactory)) && input.fontFamilies.every((elem,
|
|
17532
|
+
}, _errorFactory)) && input.fontFamilies.every((elem, _index57) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17034
17533
|
method: "typia.assertGuard",
|
|
17035
|
-
path: _path + ".fontFamilies[" +
|
|
17534
|
+
path: _path + ".fontFamilies[" + _index57 + "]",
|
|
17036
17535
|
expected: "string",
|
|
17037
17536
|
value: elem
|
|
17038
17537
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17100,6 +17599,16 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17100
17599
|
path: _path + ".utils",
|
|
17101
17600
|
expected: "(boolean | undefined)",
|
|
17102
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
|
|
17103
17612
|
}, _errorFactory)) && (undefined === input.history || "boolean" === typeof input.history || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17104
17613
|
method: "typia.assertGuard",
|
|
17105
17614
|
path: _path + ".history",
|
|
@@ -17195,9 +17704,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17195
17704
|
path: _path + ".comment",
|
|
17196
17705
|
expected: "(Array<NotificationReason> | undefined)",
|
|
17197
17706
|
value: input.comment
|
|
17198
|
-
}, _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, {
|
|
17199
17708
|
method: "typia.assertGuard",
|
|
17200
|
-
path: _path + ".comment[" +
|
|
17709
|
+
path: _path + ".comment[" + _index58 + "]",
|
|
17201
17710
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
17202
17711
|
value: elem
|
|
17203
17712
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17210,9 +17719,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17210
17719
|
path: _path + ".assigned",
|
|
17211
17720
|
expected: "(Array<NotificationReason> | undefined)",
|
|
17212
17721
|
value: input.assigned
|
|
17213
|
-
}, _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, {
|
|
17214
17723
|
method: "typia.assertGuard",
|
|
17215
|
-
path: _path + ".assigned[" +
|
|
17724
|
+
path: _path + ".assigned[" + _index59 + "]",
|
|
17216
17725
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
17217
17726
|
value: elem
|
|
17218
17727
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17225,9 +17734,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17225
17734
|
path: _path + ".unassigned",
|
|
17226
17735
|
expected: "(Array<NotificationReason> | undefined)",
|
|
17227
17736
|
value: input.unassigned
|
|
17228
|
-
}, _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, {
|
|
17229
17738
|
method: "typia.assertGuard",
|
|
17230
|
-
path: _path + ".unassigned[" +
|
|
17739
|
+
path: _path + ".unassigned[" + _index60 + "]",
|
|
17231
17740
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
17232
17741
|
value: elem
|
|
17233
17742
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17254,9 +17763,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17254
17763
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
17255
17764
|
expected: "Array<NotificationReason>",
|
|
17256
17765
|
value: value
|
|
17257
|
-
}, _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, {
|
|
17258
17767
|
method: "typia.assertGuard",
|
|
17259
|
-
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key) + "[" +
|
|
17768
|
+
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key) + "[" + _index61 + "]",
|
|
17260
17769
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
17261
17770
|
value: elem
|
|
17262
17771
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -17265,7 +17774,47 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17265
17774
|
expected: "Array<NotificationReason>",
|
|
17266
17775
|
value: value
|
|
17267
17776
|
}, _errorFactory);
|
|
17268
|
-
}); 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) => {
|
|
17269
17818
|
if (false === __is(input)) {
|
|
17270
17819
|
_errorFactory = errorFactory;
|
|
17271
17820
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
@@ -17282,6 +17831,209 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17282
17831
|
}
|
|
17283
17832
|
}; })()(input);
|
|
17284
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
|
+
}
|
|
17285
18037
|
case ":storyboard": {
|
|
17286
18038
|
return (() => { const _io0 = input => Object.keys(input).every(key => {
|
|
17287
18039
|
const value = input[key];
|