@agentica/core 0.34.2 → 0.35.0
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/lib/Agentica.d.ts +9 -10
- package/lib/Agentica.js.map +1 -1
- package/lib/MicroAgentica.d.ts +9 -10
- package/lib/MicroAgentica.js.map +1 -1
- package/lib/constants/AgenticaDefaultPrompt.d.ts +1 -2
- package/lib/constants/AgenticaDefaultPrompt.js.map +1 -1
- package/lib/context/AgenticaContext.d.ts +6 -7
- package/lib/context/AgenticaOperation.d.ts +5 -5
- package/lib/context/AgenticaOperationCollection.d.ts +5 -6
- package/lib/context/AgenticaOperationSelection.d.ts +2 -3
- package/lib/context/MicroAgenticaContext.d.ts +5 -6
- package/lib/context/internal/AgenticaOperationComposer.js.map +1 -1
- package/lib/context/internal/AgenticaOperationComposer.spec.js +41 -9
- package/lib/context/internal/AgenticaOperationComposer.spec.js.map +1 -1
- package/lib/context/internal/__IChatInitialApplication.d.ts +1 -1
- package/lib/context/internal/isAgenticaContext.js.map +1 -1
- package/lib/events/AgenticaCallEvent.d.ts +2 -3
- package/lib/events/AgenticaCancelEvent.d.ts +2 -3
- package/lib/events/AgenticaDescribeEvent.d.ts +3 -4
- package/lib/events/AgenticaEvent.d.ts +10 -11
- package/lib/events/AgenticaExecuteEvent.d.ts +5 -5
- package/lib/events/AgenticaJsonParseErrorEvent.d.ts +2 -3
- package/lib/events/AgenticaSelectEvent.d.ts +3 -4
- package/lib/events/AgenticaValidateEvent.d.ts +2 -3
- package/lib/events/MicroAgenticaEvent.d.ts +8 -9
- package/lib/factory/events.d.ts +22 -22
- package/lib/factory/events.js.map +1 -1
- package/lib/factory/histories.js.map +1 -1
- package/lib/factory/operations.d.ts +3 -4
- package/lib/factory/operations.js.map +1 -1
- package/lib/functional/assertHttpController.d.ts +6 -10
- package/lib/functional/assertHttpController.js +775 -91
- package/lib/functional/assertHttpController.js.map +1 -1
- package/lib/functional/assertHttpLlmApplication.d.ts +4 -8
- package/lib/functional/assertHttpLlmApplication.js +775 -91
- package/lib/functional/assertHttpLlmApplication.js.map +1 -1
- package/lib/functional/assertMcpController.d.ts +5 -6
- package/lib/functional/assertMcpController.js +201 -32
- package/lib/functional/assertMcpController.js.map +1 -1
- package/lib/functional/validateHttpController.d.ts +6 -10
- package/lib/functional/validateHttpController.js +636 -89
- package/lib/functional/validateHttpController.js.map +1 -1
- package/lib/functional/validateHttpLlmApplication.d.ts +4 -8
- package/lib/functional/validateHttpLlmApplication.js +636 -89
- package/lib/functional/validateHttpLlmApplication.js.map +1 -1
- package/lib/functional/validateMcpController.d.ts +5 -6
- package/lib/functional/validateMcpController.js +366 -61
- package/lib/functional/validateMcpController.js.map +1 -1
- package/lib/histories/AgenticaCancelHistory.d.ts +2 -3
- package/lib/histories/AgenticaDescribeHistory.d.ts +2 -3
- package/lib/histories/AgenticaExecuteHistory.d.ts +5 -5
- package/lib/histories/AgenticaHistory.d.ts +7 -8
- package/lib/histories/AgenticaSelectHistory.d.ts +2 -3
- package/lib/histories/MicroAgenticaHistory.d.ts +5 -6
- package/lib/index.mjs +3964 -849
- package/lib/index.mjs.map +1 -1
- package/lib/orchestrate/call.d.ts +1 -2
- package/lib/orchestrate/call.js.map +1 -1
- package/lib/orchestrate/cancel.d.ts +1 -2
- package/lib/orchestrate/cancel.js +4 -4
- package/lib/orchestrate/cancel.js.map +1 -1
- package/lib/orchestrate/describe.d.ts +1 -2
- package/lib/orchestrate/describe.js.map +1 -1
- package/lib/orchestrate/execute.d.ts +1 -2
- package/lib/orchestrate/execute.js.map +1 -1
- package/lib/orchestrate/initialize.d.ts +1 -2
- package/lib/orchestrate/initialize.js +262 -83
- package/lib/orchestrate/initialize.js.map +1 -1
- package/lib/orchestrate/internal/cancelFunctionFromContext.js.map +1 -1
- package/lib/orchestrate/internal/selectFunctionFromContext.js.map +1 -1
- package/lib/orchestrate/select.d.ts +1 -2
- package/lib/orchestrate/select.js +4 -4
- package/lib/orchestrate/select.js.map +1 -1
- package/lib/structures/IAgenticaConfig.d.ts +3 -4
- package/lib/structures/IAgenticaController.d.ts +11 -14
- package/lib/structures/IAgenticaExecutor.d.ts +6 -7
- package/lib/structures/IAgenticaProps.d.ts +3 -8
- package/lib/structures/IAgenticaSystemPrompt.d.ts +9 -10
- package/lib/structures/IMicroAgenticaConfig.d.ts +3 -4
- package/lib/structures/IMicroAgenticaExecutor.d.ts +3 -4
- package/lib/structures/IMicroAgenticaProps.d.ts +3 -8
- package/lib/structures/IMicroAgenticaSystemPrompt.d.ts +6 -7
- package/lib/transformers/transformHistory.js.map +1 -1
- package/lib/utils/ChatGptCompletionStreamingUtil.spec.js +2 -2
- package/lib/utils/ChatGptCompletionStreamingUtil.spec.js.map +1 -1
- package/lib/utils/request.d.ts +2 -3
- package/lib/utils/request.js.map +1 -1
- package/package.json +8 -8
- package/src/Agentica.ts +24 -26
- package/src/MicroAgentica.ts +27 -29
- package/src/constants/AgenticaDefaultPrompt.ts +2 -4
- package/src/context/AgenticaContext.ts +6 -7
- package/src/context/AgenticaOperation.ts +14 -14
- package/src/context/AgenticaOperationCollection.ts +5 -8
- package/src/context/AgenticaOperationSelection.ts +2 -4
- package/src/context/MicroAgenticaContext.ts +5 -6
- package/src/context/internal/AgenticaOperationComposer.spec.ts +50 -18
- package/src/context/internal/AgenticaOperationComposer.ts +21 -23
- package/src/context/internal/__IChatInitialApplication.ts +1 -1
- package/src/context/internal/isAgenticaContext.ts +4 -6
- package/src/events/AgenticaCallEvent.ts +2 -5
- package/src/events/AgenticaCancelEvent.ts +2 -6
- package/src/events/AgenticaDescribeEvent.ts +3 -7
- package/src/events/AgenticaEvent.ts +17 -19
- package/src/events/AgenticaEvent.type.ts +1 -1
- package/src/events/AgenticaExecuteEvent.ts +12 -12
- package/src/events/AgenticaJsonParseErrorEvent.ts +2 -4
- package/src/events/AgenticaSelectEvent.ts +3 -7
- package/src/events/AgenticaValidateEvent.ts +2 -5
- package/src/events/MicroAgenticaEvent.ts +13 -15
- package/src/factory/events.ts +24 -24
- package/src/factory/histories.ts +15 -17
- package/src/factory/operations.ts +3 -5
- package/src/functional/assertHttpController.ts +7 -15
- package/src/functional/assertHttpLlmApplication.ts +4 -13
- package/src/functional/assertMcpController.ts +6 -8
- package/src/functional/validateHttpController.ts +7 -15
- package/src/functional/validateHttpLlmApplication.ts +4 -13
- package/src/functional/validateMcpController.ts +6 -11
- package/src/histories/AgenticaCancelHistory.ts +2 -6
- package/src/histories/AgenticaDescribeHistory.ts +2 -6
- package/src/histories/AgenticaExecuteHistory.ts +7 -9
- package/src/histories/AgenticaHistory.ts +11 -13
- package/src/histories/AgenticaSelectHistory.ts +2 -6
- package/src/histories/MicroAgenticaHistory.ts +7 -9
- package/src/orchestrate/call.ts +55 -56
- package/src/orchestrate/cancel.ts +11 -12
- package/src/orchestrate/describe.ts +4 -5
- package/src/orchestrate/execute.ts +3 -5
- package/src/orchestrate/initialize.ts +4 -5
- package/src/orchestrate/internal/cancelFunctionFromContext.ts +4 -6
- package/src/orchestrate/internal/selectFunctionFromContext.ts +5 -9
- package/src/orchestrate/select.ts +11 -12
- package/src/structures/IAgenticaConfig.ts +4 -6
- package/src/structures/IAgenticaController.ts +11 -14
- package/src/structures/IAgenticaExecutor.ts +9 -11
- package/src/structures/IAgenticaProps.ts +3 -10
- package/src/structures/IAgenticaSystemPrompt.ts +9 -11
- package/src/structures/IMicroAgenticaConfig.ts +3 -5
- package/src/structures/IMicroAgenticaExecutor.ts +4 -6
- package/src/structures/IMicroAgenticaProps.ts +3 -10
- package/src/structures/IMicroAgenticaSystemPrompt.ts +6 -8
- package/src/transformers/transformHistory.ts +19 -21
- package/src/utils/ChatGptCompletionStreamingUtil.spec.ts +4 -5
- package/src/utils/request.ts +2 -3
|
@@ -64,12 +64,12 @@ function assertHttpController(props) {
|
|
|
64
64
|
if (undefined === value)
|
|
65
65
|
return true;
|
|
66
66
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu0(value);
|
|
67
|
-
}); const _io5 = input => (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io6 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io7 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io8 = input => (null === input["default"] || undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "string" === typeof elem)) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io9 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu0(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io10 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io4(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu0(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io11 = input => "string" === typeof input.$ref && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io12 = input => Array.isArray(input["x-anyOf"]) && input["x-anyOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu0(elem)) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io13 = input => Array.isArray(input["x-oneOf"]) && input["x-oneOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu0(elem)) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io14 = input => "null" === input.type && (null === input["default"] || undefined === input["default"]) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io15 = input => null !== input.type && undefined === input.type && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io16 = input => Object.keys(input).every(key => {
|
|
67
|
+
}); const _io5 = input => (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io6 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io7 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io8 = input => (null === input["default"] || undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "string" === typeof elem)) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io9 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu0(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io10 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io4(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu0(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io11 = input => "string" === typeof input.$ref && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly); const _io12 = input => Array.isArray(input["x-anyOf"]) && input["x-anyOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu0(elem)) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly); const _io13 = input => Array.isArray(input["x-oneOf"]) && input["x-oneOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu0(elem)) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly); const _io14 = input => "null" === input.type && (null === input["default"] || undefined === input["default"]) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly); const _io15 = input => null !== input.type && undefined === input.type && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly); const _io16 = input => Object.keys(input).every(key => {
|
|
68
68
|
const value = input[key];
|
|
69
69
|
if (undefined === value)
|
|
70
70
|
return true;
|
|
71
71
|
return "object" === typeof value && null !== value && _iu9(value);
|
|
72
|
-
}); const _io17 = input => (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io18 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io19 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io20 = input => (null === input["default"] || undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "string" === typeof elem)) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io21 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu0(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io22 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io4(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu0(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io23 = input => "string" === typeof input.$ref && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && "string" === typeof input.name && "string" === typeof input["in"]; const _io24 = input => Array.isArray(input["x-anyOf"]) && input["x-anyOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu0(elem)) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && "string" === typeof input.name && "string" === typeof input["in"]; const _io25 = input => Array.isArray(input["x-oneOf"]) && input["x-oneOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu0(elem)) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && "string" === typeof input.name && "string" === typeof input["in"]; const _io26 = input => "null" === input.type && (null === input["default"] || undefined === input["default"]) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && "string" === typeof input.name && "string" === typeof input["in"]; const _io27 = input => null !== input.type && undefined === input.type && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && "string" === typeof input.name && "string" === typeof input["in"]; const _io28 = input => "object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu0(input.schema) && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description) && (undefined === input.required || "boolean" === typeof input.required); const _io29 = input => Object.keys(input).every(key => {
|
|
72
|
+
}); const _io17 = input => (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io18 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io19 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io20 = input => (null === input["default"] || undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "string" === typeof elem)) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io21 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu0(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io22 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io4(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu0(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io23 = input => "string" === typeof input.$ref && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io24 = input => Array.isArray(input["x-anyOf"]) && input["x-anyOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu0(elem)) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io25 = input => Array.isArray(input["x-oneOf"]) && input["x-oneOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu0(elem)) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io26 = input => "null" === input.type && (null === input["default"] || undefined === input["default"]) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io27 = input => null !== input.type && undefined === input.type && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io28 = input => "object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu0(input.schema) && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description) && (undefined === input.required || "boolean" === typeof input.required); const _io29 = input => Object.keys(input).every(key => {
|
|
73
73
|
const value = input[key];
|
|
74
74
|
if (undefined === value)
|
|
75
75
|
return true;
|
|
@@ -94,12 +94,12 @@ function assertHttpController(props) {
|
|
|
94
94
|
if (undefined === value)
|
|
95
95
|
return true;
|
|
96
96
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io41(value);
|
|
97
|
-
}); const _io41 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu1(elem))) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io43(input.options)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io43(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io43(input.post)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io43(input.patch)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io43(input.put)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io43(input["delete"])) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io43(input.head)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io43(input.trace)); const _io42 = input => "string" === typeof input.$ref && RegExp(/^#\/parameters\/(.*)/).test(input.$ref) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io43 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu2(elem))) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io45(input.responses)) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated); const _io44 = input => "string" === typeof input.$ref && RegExp(/^#\/definitions\/parameters\/(.*)/).test(input.$ref) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io45 = input => Object.keys(input).every(key => {
|
|
97
|
+
}); const _io41 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu1(elem))) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io43(input.options)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io43(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io43(input.post)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io43(input.patch)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io43(input.put)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io43(input["delete"])) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io43(input.head)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io43(input.trace)); const _io42 = input => "string" === typeof input.$ref && RegExp(/^#\/parameters\/(.*)/).test(input.$ref) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly); const _io43 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu2(elem))) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io45(input.responses)) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated); const _io44 = input => "string" === typeof input.$ref && RegExp(/^#\/definitions\/parameters\/(.*)/).test(input.$ref) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly); const _io45 = input => Object.keys(input).every(key => {
|
|
98
98
|
const value = input[key];
|
|
99
99
|
if (undefined === value)
|
|
100
100
|
return true;
|
|
101
101
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu11(value);
|
|
102
|
-
}); const _io46 = input => "string" === typeof input.$ref && RegExp(/^#\/definitions\/responses\/(.*)/).test(input.$ref) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io47 = input => "string" === typeof input.name && (undefined === input.description || "string" === typeof input.description); const _io48 = input => null !== input.openapi && undefined !== input.openapi && ("3.0" === input.openapi || "string" === typeof input.openapi && RegExp(/^3\.0\.[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.openapi)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io49(elem))) && (undefined === input.info || "object" === typeof input.info && null !== input.info && _io52(input.info)) && (undefined === input.components || "object" === typeof input.components && null !== input.components && false === Array.isArray(input.components) && _io55(input.components)) && (undefined === input.paths || "object" === typeof input.paths && null !== input.paths && false === Array.isArray(input.paths) && _io97(input.paths)) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "object" === typeof elem && null !== elem && _io104(elem))); const _io49 = input => "string" === typeof input.url && (undefined === input.description || "string" === typeof input.description) && (undefined === input.variables || "object" === typeof input.variables && null !== input.variables && false === Array.isArray(input.variables) && _io50(input.variables)); const _io50 = input => Object.keys(input).every(key => {
|
|
102
|
+
}); const _io46 = input => "string" === typeof input.$ref && RegExp(/^#\/definitions\/responses\/(.*)/).test(input.$ref) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly); const _io47 = input => "string" === typeof input.name && (undefined === input.description || "string" === typeof input.description); const _io48 = input => null !== input.openapi && undefined !== input.openapi && ("3.0" === input.openapi || "string" === typeof input.openapi && RegExp(/^3\.0\.[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.openapi)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io49(elem))) && (undefined === input.info || "object" === typeof input.info && null !== input.info && _io52(input.info)) && (undefined === input.components || "object" === typeof input.components && null !== input.components && false === Array.isArray(input.components) && _io55(input.components)) && (undefined === input.paths || "object" === typeof input.paths && null !== input.paths && false === Array.isArray(input.paths) && _io97(input.paths)) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "object" === typeof elem && null !== elem && _io104(elem))); const _io49 = input => "string" === typeof input.url && (undefined === input.description || "string" === typeof input.description) && (undefined === input.variables || "object" === typeof input.variables && null !== input.variables && false === Array.isArray(input.variables) && _io50(input.variables)); const _io50 = input => Object.keys(input).every(key => {
|
|
103
103
|
const value = input[key];
|
|
104
104
|
if (undefined === value)
|
|
105
105
|
return true;
|
|
@@ -109,12 +109,12 @@ function assertHttpController(props) {
|
|
|
109
109
|
if (undefined === value)
|
|
110
110
|
return true;
|
|
111
111
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu3(value);
|
|
112
|
-
}); const _io57 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io58 = input => Object.keys(input).every(key => {
|
|
112
|
+
}); const _io57 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io58 = input => Object.keys(input).every(key => {
|
|
113
113
|
const value = input[key];
|
|
114
114
|
if (undefined === value)
|
|
115
115
|
return true;
|
|
116
116
|
return true;
|
|
117
|
-
}); const _io59 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io60 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io61 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "string" === typeof elem)) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io62 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && ("object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu3(input.items)) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io63 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io56(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu3(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io64 = input => "string" === typeof input.$ref && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io65 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu3(elem)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io66 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu3(elem)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io67 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu3(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io68(input.discriminator)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io68 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io35(input.mapping)); const _io69 = input => (null === input["default"] || undefined === input["default"]) && "null" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io70 = input => true && (null !== input.type && undefined === input.type) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io71 = input => Object.keys(input).every(key => {
|
|
117
|
+
}); const _io59 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io60 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io61 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "string" === typeof elem)) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io62 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && ("object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu3(input.items)) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io63 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io56(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu3(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io64 = input => "string" === typeof input.$ref && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io65 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu3(elem)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io66 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu3(elem)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io67 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu3(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io68(input.discriminator)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io68 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io35(input.mapping)); const _io69 = input => (null === input["default"] || undefined === input["default"]) && "null" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io70 = input => true && (null !== input.type && undefined === input.type) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io71 = input => Object.keys(input).every(key => {
|
|
118
118
|
const value = input[key];
|
|
119
119
|
if (undefined === value)
|
|
120
120
|
return true;
|
|
@@ -129,12 +129,12 @@ function assertHttpController(props) {
|
|
|
129
129
|
if (undefined === value)
|
|
130
130
|
return true;
|
|
131
131
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu12(value);
|
|
132
|
-
}); const _io76 = input => (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.externalValue || "string" === typeof input.externalValue); const _io77 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/examples\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io78 = input => Object.keys(input).every(key => {
|
|
132
|
+
}); const _io76 = input => (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.externalValue || "string" === typeof input.externalValue); const _io77 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/examples\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io78 = input => Object.keys(input).every(key => {
|
|
133
133
|
const value = input[key];
|
|
134
134
|
if (undefined === value)
|
|
135
135
|
return true;
|
|
136
136
|
return "object" === typeof value && null !== value && _iu13(value);
|
|
137
|
-
}); const _io79 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io75(input.examples)) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu3(input.schema)); const _io80 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/headers\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io81 = input => Object.keys(input).every(key => {
|
|
137
|
+
}); const _io79 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io75(input.examples)) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu3(input.schema)); const _io80 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/headers\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io81 = input => Object.keys(input).every(key => {
|
|
138
138
|
const value = input[key];
|
|
139
139
|
if (undefined === value)
|
|
140
140
|
return true;
|
|
@@ -164,12 +164,12 @@ function assertHttpController(props) {
|
|
|
164
164
|
if (undefined === value)
|
|
165
165
|
return true;
|
|
166
166
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io98(value);
|
|
167
|
-
}); const _io98 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu4(elem))) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io49(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io100(input.options)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io100(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io100(input.post)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io100(input.patch)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io100(input.put)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io100(input["delete"])) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io100(input.head)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io100(input.trace)); const _io99 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/parameters\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io100 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu4(elem))) && (undefined === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && false === Array.isArray(input.requestBody) && _iu15(input.requestBody)) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io102(input.responses)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io49(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated); const _io101 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/requestBodies\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io102 = input => Object.keys(input).every(key => {
|
|
167
|
+
}); const _io98 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu4(elem))) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io49(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io100(input.options)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io100(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io100(input.post)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io100(input.patch)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io100(input.put)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io100(input["delete"])) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io100(input.head)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io100(input.trace)); const _io99 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/parameters\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io100 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu4(elem))) && (undefined === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && false === Array.isArray(input.requestBody) && _iu15(input.requestBody)) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io102(input.responses)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io49(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated); const _io101 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/requestBodies\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io102 = input => Object.keys(input).every(key => {
|
|
168
168
|
const value = input[key];
|
|
169
169
|
if (undefined === value)
|
|
170
170
|
return true;
|
|
171
171
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu16(value);
|
|
172
|
-
}); const _io103 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/responses\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io104 = input => "string" === typeof input.name && (undefined === input.description || "string" === typeof input.description); const _io105 = input => "string" === typeof input.openapi && RegExp(/^3\.1\.[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.openapi) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io106(elem))) && (undefined === input.info || "object" === typeof input.info && null !== input.info && _io109(input.info)) && (undefined === input.components || "object" === typeof input.components && null !== input.components && false === Array.isArray(input.components) && _io112(input.components)) && (undefined === input.paths || "object" === typeof input.paths && null !== input.paths && false === Array.isArray(input.paths) && _io130(input.paths)) && (undefined === input.webhooks || "object" === typeof input.webhooks && null !== input.webhooks && false === Array.isArray(input.webhooks) && _io163(input.webhooks)) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "object" === typeof elem && null !== elem && _io165(elem))); const _io106 = input => "string" === typeof input.url && (undefined === input.description || "string" === typeof input.description) && (undefined === input.variables || "object" === typeof input.variables && null !== input.variables && false === Array.isArray(input.variables) && _io107(input.variables)); const _io107 = input => Object.keys(input).every(key => {
|
|
172
|
+
}); const _io103 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/responses\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io104 = input => "string" === typeof input.name && (undefined === input.description || "string" === typeof input.description); const _io105 = input => "string" === typeof input.openapi && RegExp(/^3\.1\.[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.openapi) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io106(elem))) && (undefined === input.info || "object" === typeof input.info && null !== input.info && _io109(input.info)) && (undefined === input.components || "object" === typeof input.components && null !== input.components && false === Array.isArray(input.components) && _io112(input.components)) && (undefined === input.paths || "object" === typeof input.paths && null !== input.paths && false === Array.isArray(input.paths) && _io130(input.paths)) && (undefined === input.webhooks || "object" === typeof input.webhooks && null !== input.webhooks && false === Array.isArray(input.webhooks) && _io163(input.webhooks)) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "object" === typeof elem && null !== elem && _io165(elem))); const _io106 = input => "string" === typeof input.url && (undefined === input.description || "string" === typeof input.description) && (undefined === input.variables || "object" === typeof input.variables && null !== input.variables && false === Array.isArray(input.variables) && _io107(input.variables)); const _io107 = input => Object.keys(input).every(key => {
|
|
173
173
|
const value = input[key];
|
|
174
174
|
if (undefined === value)
|
|
175
175
|
return true;
|
|
@@ -179,7 +179,7 @@ function assertHttpController(props) {
|
|
|
179
179
|
if (undefined === value)
|
|
180
180
|
return true;
|
|
181
181
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu5(value);
|
|
182
|
-
}); const _io114 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io113(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu5(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io115 = input => Array.isArray(input.type) && input.type.every(elem => "string" === elem || "number" === elem || "boolean" === elem || "object" === elem || "integer" === elem || "array" === elem || "null" === elem) && (null === input["default"] || undefined === input["default"] || Array.isArray(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"])) && ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (null !== input.items && (undefined === input.items || (Array.isArray(input.items) && input.items.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu5(input.items)))) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (null !== input.additionalItems && (undefined === input.additionalItems || "boolean" === typeof input.additionalItems || "object" === typeof input.additionalItems && null !== input.additionalItems && false === Array.isArray(input.additionalItems) && _iu5(input.additionalItems))) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu5(input.additionalProperties))) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io113(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && (Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io127(input.discriminator)) && (Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && (Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && "string" === typeof input.$ref; const _io116 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io117 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io118 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum && (Math.floor(input.exclusiveMinimum) === input.exclusiveMinimum && -9223372036854776000 <= input.exclusiveMinimum && input.exclusiveMinimum <= 9223372036854776000) || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum && (Math.floor(input.exclusiveMaximum) === input.exclusiveMaximum && -9223372036854776000 <= input.exclusiveMaximum && input.exclusiveMaximum <= 9223372036854776000) || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io119 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io120 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "string" === typeof elem)) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io121 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null !== input.items && (undefined === input.items || (Array.isArray(input.items) && input.items.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu5(input.items)))) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (null !== input.additionalItems && (undefined === input.additionalItems || "boolean" === typeof input.additionalItems || "object" === typeof input.additionalItems && null !== input.additionalItems && false === Array.isArray(input.additionalItems) && _iu5(input.additionalItems))) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io122 = input => "string" === typeof input.$ref && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io123 = input => "string" === typeof input.$recursiveRef && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io124 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io125 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io126 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io127(input.discriminator)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io127 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io35(input.mapping)); const _io128 = input => (null === input["default"] || undefined === input["default"]) && "null" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io129 = input => null !== input.type && undefined === input.type && true && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io130 = input => Object.keys(input).every(key => {
|
|
182
|
+
}); const _io114 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io113(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu5(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io115 = input => Array.isArray(input.type) && input.type.every(elem => "string" === elem || "number" === elem || "boolean" === elem || "object" === elem || "integer" === elem || "array" === elem || "null" === elem) && (null === input["default"] || undefined === input["default"] || Array.isArray(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"])) && ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && (null !== input.items && (undefined === input.items || (Array.isArray(input.items) && input.items.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu5(input.items)))) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (null !== input.additionalItems && (undefined === input.additionalItems || "boolean" === typeof input.additionalItems || "object" === typeof input.additionalItems && null !== input.additionalItems && false === Array.isArray(input.additionalItems) && _iu5(input.additionalItems))) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu5(input.additionalProperties))) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io113(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && (Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io127(input.discriminator)) && (Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && (Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && "string" === typeof input.$ref; const _io116 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io117 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io118 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum && (Math.floor(input.exclusiveMinimum) === input.exclusiveMinimum && -9223372036854776000 <= input.exclusiveMinimum && input.exclusiveMinimum <= 9223372036854776000) || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum && (Math.floor(input.exclusiveMaximum) === input.exclusiveMaximum && -9223372036854776000 <= input.exclusiveMaximum && input.exclusiveMaximum <= 9223372036854776000) || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io119 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io120 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "string" === typeof elem)) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io121 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null !== input.items && (undefined === input.items || (Array.isArray(input.items) && input.items.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu5(input.items)))) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (null !== input.additionalItems && (undefined === input.additionalItems || "boolean" === typeof input.additionalItems || "object" === typeof input.additionalItems && null !== input.additionalItems && false === Array.isArray(input.additionalItems) && _iu5(input.additionalItems))) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io122 = input => "string" === typeof input.$ref && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io123 = input => "string" === typeof input.$recursiveRef && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io124 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io125 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io126 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io127(input.discriminator)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io127 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io35(input.mapping)); const _io128 = input => (null === input["default"] || undefined === input["default"]) && "null" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io129 = input => null !== input.type && undefined === input.type && true && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io130 = input => Object.keys(input).every(key => {
|
|
183
183
|
const value = input[key];
|
|
184
184
|
if (undefined === value)
|
|
185
185
|
return true;
|
|
@@ -189,12 +189,12 @@ function assertHttpController(props) {
|
|
|
189
189
|
if (undefined === value)
|
|
190
190
|
return true;
|
|
191
191
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu17(value);
|
|
192
|
-
}); const _io134 = input => (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.externalValue || "string" === typeof input.externalValue); const _io135 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/examples\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io136 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/headers\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io137 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/parameters\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io138 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu6(elem))) && (undefined === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && false === Array.isArray(input.requestBody) && _iu18(input.requestBody)) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io143(input.responses)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io106(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated); const _io139 = input => (undefined === input.description || "string" === typeof input.description) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.content || "object" === typeof input.content && null !== input.content && false === Array.isArray(input.content) && _io140(input.content)); const _io140 = input => Object.keys(input).every(key => {
|
|
192
|
+
}); const _io134 = input => (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.externalValue || "string" === typeof input.externalValue); const _io135 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/examples\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io136 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/headers\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io137 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/parameters\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io138 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu6(elem))) && (undefined === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && false === Array.isArray(input.requestBody) && _iu18(input.requestBody)) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io143(input.responses)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io106(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated); const _io139 = input => (undefined === input.description || "string" === typeof input.description) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.content || "object" === typeof input.content && null !== input.content && false === Array.isArray(input.content) && _io140(input.content)); const _io140 = input => Object.keys(input).every(key => {
|
|
193
193
|
const value = input[key];
|
|
194
194
|
if (undefined === value)
|
|
195
195
|
return true;
|
|
196
196
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io141(value);
|
|
197
|
-
}); const _io141 = input => (undefined === input.schema || "object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu5(input.schema)) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io133(input.examples)); const _io142 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/requestBodies\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io143 = input => Object.keys(input).every(key => {
|
|
197
|
+
}); const _io141 = input => (undefined === input.schema || "object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu5(input.schema)) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io133(input.examples)); const _io142 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/requestBodies\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io143 = input => Object.keys(input).every(key => {
|
|
198
198
|
const value = input[key];
|
|
199
199
|
if (undefined === value)
|
|
200
200
|
return true;
|
|
@@ -204,7 +204,7 @@ function assertHttpController(props) {
|
|
|
204
204
|
if (undefined === value)
|
|
205
205
|
return true;
|
|
206
206
|
return "object" === typeof value && null !== value && _iu20(value);
|
|
207
|
-
}); const _io146 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io133(input.examples)) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu5(input.schema)); const _io147 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/responses\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io148 = input => Object.keys(input).every(key => {
|
|
207
|
+
}); const _io146 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io133(input.examples)) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu5(input.schema)); const _io147 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/responses\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io148 = input => Object.keys(input).every(key => {
|
|
208
208
|
const value = input[key];
|
|
209
209
|
if (undefined === value)
|
|
210
210
|
return true;
|
|
@@ -239,7 +239,7 @@ function assertHttpController(props) {
|
|
|
239
239
|
if (undefined === value)
|
|
240
240
|
return true;
|
|
241
241
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu22(value);
|
|
242
|
-
}); const _io164 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/pathItems\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io165 = input => "string" === typeof input.name && (undefined === input.description || "string" === typeof input.description); const _io166 = input => "string" === typeof input.openapi && RegExp(/^3\.1\.[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.openapi) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io167(elem))) && (undefined === input.info || "object" === typeof input.info && null !== input.info && _io170(input.info)) && ("object" === typeof input.components && null !== input.components && false === Array.isArray(input.components) && _io173(input.components)) && (undefined === input.paths || "object" === typeof input.paths && null !== input.paths && false === Array.isArray(input.paths) && _io198(input.paths)) && (undefined === input.webhooks || "object" === typeof input.webhooks && null !== input.webhooks && false === Array.isArray(input.webhooks) && _io198(input.webhooks)) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "object" === typeof elem && null !== elem && _io210(elem))) && true === input["x-samchon-emended-v4"]; const _io167 = input => "string" === typeof input.url && (undefined === input.description || "string" === typeof input.description) && (undefined === input.variables || "object" === typeof input.variables && null !== input.variables && false === Array.isArray(input.variables) && _io168(input.variables)); const _io168 = input => Object.keys(input).every(key => {
|
|
242
|
+
}); const _io164 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/pathItems\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io165 = input => "string" === typeof input.name && (undefined === input.description || "string" === typeof input.description); const _io166 = input => "string" === typeof input.openapi && RegExp(/^3\.1\.[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.openapi) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io167(elem))) && (undefined === input.info || "object" === typeof input.info && null !== input.info && _io170(input.info)) && ("object" === typeof input.components && null !== input.components && false === Array.isArray(input.components) && _io173(input.components)) && (undefined === input.paths || "object" === typeof input.paths && null !== input.paths && false === Array.isArray(input.paths) && _io198(input.paths)) && (undefined === input.webhooks || "object" === typeof input.webhooks && null !== input.webhooks && false === Array.isArray(input.webhooks) && _io198(input.webhooks)) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "object" === typeof elem && null !== elem && _io210(elem))) && true === input["x-samchon-emended-v4"]; const _io167 = input => "string" === typeof input.url && (undefined === input.description || "string" === typeof input.description) && (undefined === input.variables || "object" === typeof input.variables && null !== input.variables && false === Array.isArray(input.variables) && _io168(input.variables)); const _io168 = input => Object.keys(input).every(key => {
|
|
243
243
|
const value = input[key];
|
|
244
244
|
if (undefined === value)
|
|
245
245
|
return true;
|
|
@@ -249,7 +249,7 @@ function assertHttpController(props) {
|
|
|
249
249
|
if (undefined === value)
|
|
250
250
|
return true;
|
|
251
251
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu7(value);
|
|
252
|
-
}); const _io175 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io176 = input => (undefined === input["default"] || "boolean" === typeof input["default"]) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io177 = input => (undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io178 = input => (undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io179 = input => (undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io180 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu7(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io181 = input => "array" === input.type && (Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem))) && (null !== input.additionalItems && (undefined === input.additionalItems || "boolean" === typeof input.additionalItems || "object" === typeof input.additionalItems && null !== input.additionalItems && false === Array.isArray(input.additionalItems) && _iu7(input.additionalItems))) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io182 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io174(input.properties)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu7(input.additionalProperties))) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io183 = input => "string" === typeof input.$ref && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io184 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu8(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io187(input.discriminator)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io185 = input => (null === input["default"] || undefined === input["default"]) && "null" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io186 = input => true && (null !== input.type && undefined === input.type) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io187 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io35(input.mapping)); const _io188 = input => Object.keys(input).every(key => {
|
|
252
|
+
}); const _io175 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io176 = input => (undefined === input["default"] || "boolean" === typeof input["default"]) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io177 = input => (undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io178 = input => (undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io179 = input => (undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io180 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu7(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io181 = input => "array" === input.type && (Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem))) && (null !== input.additionalItems && (undefined === input.additionalItems || "boolean" === typeof input.additionalItems || "object" === typeof input.additionalItems && null !== input.additionalItems && false === Array.isArray(input.additionalItems) && _iu7(input.additionalItems))) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io182 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io174(input.properties)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu7(input.additionalProperties))) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io183 = input => "string" === typeof input.$ref && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io184 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu8(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io187(input.discriminator)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io185 = input => (null === input["default"] || undefined === input["default"]) && "null" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io186 = input => true && (null !== input.type && undefined === input.type) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io187 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io35(input.mapping)); const _io188 = input => Object.keys(input).every(key => {
|
|
253
253
|
const value = input[key];
|
|
254
254
|
if (undefined === value)
|
|
255
255
|
return true;
|
|
@@ -910,7 +910,17 @@ function assertHttpController(props) {
|
|
|
910
910
|
path: _path + ".deprecated",
|
|
911
911
|
expected: "(boolean | undefined)",
|
|
912
912
|
value: input.deprecated
|
|
913
|
-
}, _errorFactory)) && true && (undefined === input
|
|
913
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
914
|
+
method: "typia.assert",
|
|
915
|
+
path: _path + ".readOnly",
|
|
916
|
+
expected: "(boolean | undefined)",
|
|
917
|
+
value: input.readOnly
|
|
918
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
919
|
+
method: "typia.assert",
|
|
920
|
+
path: _path + ".writeOnly",
|
|
921
|
+
expected: "(boolean | undefined)",
|
|
922
|
+
value: input.writeOnly
|
|
923
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
914
924
|
method: "typia.assert",
|
|
915
925
|
path: _path + "[\"x-nullable\"]",
|
|
916
926
|
expected: "(boolean | undefined)",
|
|
@@ -1010,7 +1020,17 @@ function assertHttpController(props) {
|
|
|
1010
1020
|
path: _path + ".deprecated",
|
|
1011
1021
|
expected: "(boolean | undefined)",
|
|
1012
1022
|
value: input.deprecated
|
|
1013
|
-
}, _errorFactory)) && true && (undefined === input
|
|
1023
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1024
|
+
method: "typia.assert",
|
|
1025
|
+
path: _path + ".readOnly",
|
|
1026
|
+
expected: "(boolean | undefined)",
|
|
1027
|
+
value: input.readOnly
|
|
1028
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1029
|
+
method: "typia.assert",
|
|
1030
|
+
path: _path + ".writeOnly",
|
|
1031
|
+
expected: "(boolean | undefined)",
|
|
1032
|
+
value: input.writeOnly
|
|
1033
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1014
1034
|
method: "typia.assert",
|
|
1015
1035
|
path: _path + "[\"x-nullable\"]",
|
|
1016
1036
|
expected: "(boolean | undefined)",
|
|
@@ -1090,7 +1110,17 @@ function assertHttpController(props) {
|
|
|
1090
1110
|
path: _path + ".deprecated",
|
|
1091
1111
|
expected: "(boolean | undefined)",
|
|
1092
1112
|
value: input.deprecated
|
|
1093
|
-
}, _errorFactory)) && true && (undefined === input
|
|
1113
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1114
|
+
method: "typia.assert",
|
|
1115
|
+
path: _path + ".readOnly",
|
|
1116
|
+
expected: "(boolean | undefined)",
|
|
1117
|
+
value: input.readOnly
|
|
1118
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1119
|
+
method: "typia.assert",
|
|
1120
|
+
path: _path + ".writeOnly",
|
|
1121
|
+
expected: "(boolean | undefined)",
|
|
1122
|
+
value: input.writeOnly
|
|
1123
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1094
1124
|
method: "typia.assert",
|
|
1095
1125
|
path: _path + "[\"x-nullable\"]",
|
|
1096
1126
|
expected: "(boolean | undefined)",
|
|
@@ -1170,7 +1200,17 @@ function assertHttpController(props) {
|
|
|
1170
1200
|
path: _path + ".deprecated",
|
|
1171
1201
|
expected: "(boolean | undefined)",
|
|
1172
1202
|
value: input.deprecated
|
|
1173
|
-
}, _errorFactory)) && true && (undefined === input
|
|
1203
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1204
|
+
method: "typia.assert",
|
|
1205
|
+
path: _path + ".readOnly",
|
|
1206
|
+
expected: "(boolean | undefined)",
|
|
1207
|
+
value: input.readOnly
|
|
1208
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1209
|
+
method: "typia.assert",
|
|
1210
|
+
path: _path + ".writeOnly",
|
|
1211
|
+
expected: "(boolean | undefined)",
|
|
1212
|
+
value: input.writeOnly
|
|
1213
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1174
1214
|
method: "typia.assert",
|
|
1175
1215
|
path: _path + "[\"x-nullable\"]",
|
|
1176
1216
|
expected: "(boolean | undefined)",
|
|
@@ -1235,7 +1275,17 @@ function assertHttpController(props) {
|
|
|
1235
1275
|
path: _path + ".deprecated",
|
|
1236
1276
|
expected: "(boolean | undefined)",
|
|
1237
1277
|
value: input.deprecated
|
|
1238
|
-
}, _errorFactory)) && true && (undefined === input
|
|
1278
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1279
|
+
method: "typia.assert",
|
|
1280
|
+
path: _path + ".readOnly",
|
|
1281
|
+
expected: "(boolean | undefined)",
|
|
1282
|
+
value: input.readOnly
|
|
1283
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1284
|
+
method: "typia.assert",
|
|
1285
|
+
path: _path + ".writeOnly",
|
|
1286
|
+
expected: "(boolean | undefined)",
|
|
1287
|
+
value: input.writeOnly
|
|
1288
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1239
1289
|
method: "typia.assert",
|
|
1240
1290
|
path: _path + "[\"x-nullable\"]",
|
|
1241
1291
|
expected: "(boolean | undefined)",
|
|
@@ -1315,7 +1365,17 @@ function assertHttpController(props) {
|
|
|
1315
1365
|
path: _path + ".deprecated",
|
|
1316
1366
|
expected: "(boolean | undefined)",
|
|
1317
1367
|
value: input.deprecated
|
|
1318
|
-
}, _errorFactory)) && true && (undefined === input
|
|
1368
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1369
|
+
method: "typia.assert",
|
|
1370
|
+
path: _path + ".readOnly",
|
|
1371
|
+
expected: "(boolean | undefined)",
|
|
1372
|
+
value: input.readOnly
|
|
1373
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1374
|
+
method: "typia.assert",
|
|
1375
|
+
path: _path + ".writeOnly",
|
|
1376
|
+
expected: "(boolean | undefined)",
|
|
1377
|
+
value: input.writeOnly
|
|
1378
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1319
1379
|
method: "typia.assert",
|
|
1320
1380
|
path: _path + "[\"x-nullable\"]",
|
|
1321
1381
|
expected: "(boolean | undefined)",
|
|
@@ -1350,7 +1410,12 @@ function assertHttpController(props) {
|
|
|
1350
1410
|
path: _path + ".deprecated",
|
|
1351
1411
|
expected: "(boolean | undefined)",
|
|
1352
1412
|
value: input.deprecated
|
|
1353
|
-
}, _errorFactory)) && true
|
|
1413
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1414
|
+
method: "typia.assert",
|
|
1415
|
+
path: _path + ".readOnly",
|
|
1416
|
+
expected: "(boolean | undefined)",
|
|
1417
|
+
value: input.readOnly
|
|
1418
|
+
}, _errorFactory)); const _ao12 = (input, _path, _exceptionable = true) => ((Array.isArray(input["x-anyOf"]) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1354
1419
|
method: "typia.assert",
|
|
1355
1420
|
path: _path + "[\"x-anyOf\"]",
|
|
1356
1421
|
expected: "Array<SwaggerV2.IJsonSchema>",
|
|
@@ -1390,7 +1455,12 @@ function assertHttpController(props) {
|
|
|
1390
1455
|
path: _path + ".deprecated",
|
|
1391
1456
|
expected: "(boolean | undefined)",
|
|
1392
1457
|
value: input.deprecated
|
|
1393
|
-
}, _errorFactory)) && true
|
|
1458
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1459
|
+
method: "typia.assert",
|
|
1460
|
+
path: _path + ".readOnly",
|
|
1461
|
+
expected: "(boolean | undefined)",
|
|
1462
|
+
value: input.readOnly
|
|
1463
|
+
}, _errorFactory)); const _ao13 = (input, _path, _exceptionable = true) => ((Array.isArray(input["x-oneOf"]) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1394
1464
|
method: "typia.assert",
|
|
1395
1465
|
path: _path + "[\"x-oneOf\"]",
|
|
1396
1466
|
expected: "Array<SwaggerV2.IJsonSchema>",
|
|
@@ -1430,7 +1500,12 @@ function assertHttpController(props) {
|
|
|
1430
1500
|
path: _path + ".deprecated",
|
|
1431
1501
|
expected: "(boolean | undefined)",
|
|
1432
1502
|
value: input.deprecated
|
|
1433
|
-
}, _errorFactory)) && true
|
|
1503
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1504
|
+
method: "typia.assert",
|
|
1505
|
+
path: _path + ".readOnly",
|
|
1506
|
+
expected: "(boolean | undefined)",
|
|
1507
|
+
value: input.readOnly
|
|
1508
|
+
}, _errorFactory)); const _ao14 = (input, _path, _exceptionable = true) => ("null" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1434
1509
|
method: "typia.assert",
|
|
1435
1510
|
path: _path + ".type",
|
|
1436
1511
|
expected: "\"null\"",
|
|
@@ -1460,7 +1535,12 @@ function assertHttpController(props) {
|
|
|
1460
1535
|
path: _path + ".deprecated",
|
|
1461
1536
|
expected: "(boolean | undefined)",
|
|
1462
1537
|
value: input.deprecated
|
|
1463
|
-
}, _errorFactory)) && true
|
|
1538
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1539
|
+
method: "typia.assert",
|
|
1540
|
+
path: _path + ".readOnly",
|
|
1541
|
+
expected: "(boolean | undefined)",
|
|
1542
|
+
value: input.readOnly
|
|
1543
|
+
}, _errorFactory)); const _ao15 = (input, _path, _exceptionable = true) => (null !== input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1464
1544
|
method: "typia.assert",
|
|
1465
1545
|
path: _path + ".type",
|
|
1466
1546
|
expected: "undefined",
|
|
@@ -1490,7 +1570,12 @@ function assertHttpController(props) {
|
|
|
1490
1570
|
path: _path + ".deprecated",
|
|
1491
1571
|
expected: "(boolean | undefined)",
|
|
1492
1572
|
value: input.deprecated
|
|
1493
|
-
}, _errorFactory)) && true
|
|
1573
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1574
|
+
method: "typia.assert",
|
|
1575
|
+
path: _path + ".readOnly",
|
|
1576
|
+
expected: "(boolean | undefined)",
|
|
1577
|
+
value: input.readOnly
|
|
1578
|
+
}, _errorFactory)); const _ao16 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
1494
1579
|
const value = input[key];
|
|
1495
1580
|
if (undefined === value)
|
|
1496
1581
|
return true;
|
|
@@ -1545,7 +1630,17 @@ function assertHttpController(props) {
|
|
|
1545
1630
|
path: _path + ".deprecated",
|
|
1546
1631
|
expected: "(boolean | undefined)",
|
|
1547
1632
|
value: input.deprecated
|
|
1548
|
-
}, _errorFactory)) && true && (undefined === input
|
|
1633
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1634
|
+
method: "typia.assert",
|
|
1635
|
+
path: _path + ".readOnly",
|
|
1636
|
+
expected: "(boolean | undefined)",
|
|
1637
|
+
value: input.readOnly
|
|
1638
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1639
|
+
method: "typia.assert",
|
|
1640
|
+
path: _path + ".writeOnly",
|
|
1641
|
+
expected: "(boolean | undefined)",
|
|
1642
|
+
value: input.writeOnly
|
|
1643
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1549
1644
|
method: "typia.assert",
|
|
1550
1645
|
path: _path + "[\"x-nullable\"]",
|
|
1551
1646
|
expected: "(boolean | undefined)",
|
|
@@ -1655,7 +1750,17 @@ function assertHttpController(props) {
|
|
|
1655
1750
|
path: _path + ".deprecated",
|
|
1656
1751
|
expected: "(boolean | undefined)",
|
|
1657
1752
|
value: input.deprecated
|
|
1658
|
-
}, _errorFactory)) && true && (undefined === input
|
|
1753
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1754
|
+
method: "typia.assert",
|
|
1755
|
+
path: _path + ".readOnly",
|
|
1756
|
+
expected: "(boolean | undefined)",
|
|
1757
|
+
value: input.readOnly
|
|
1758
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1759
|
+
method: "typia.assert",
|
|
1760
|
+
path: _path + ".writeOnly",
|
|
1761
|
+
expected: "(boolean | undefined)",
|
|
1762
|
+
value: input.writeOnly
|
|
1763
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1659
1764
|
method: "typia.assert",
|
|
1660
1765
|
path: _path + "[\"x-nullable\"]",
|
|
1661
1766
|
expected: "(boolean | undefined)",
|
|
@@ -1745,7 +1850,17 @@ function assertHttpController(props) {
|
|
|
1745
1850
|
path: _path + ".deprecated",
|
|
1746
1851
|
expected: "(boolean | undefined)",
|
|
1747
1852
|
value: input.deprecated
|
|
1748
|
-
}, _errorFactory)) && true && (undefined === input
|
|
1853
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1854
|
+
method: "typia.assert",
|
|
1855
|
+
path: _path + ".readOnly",
|
|
1856
|
+
expected: "(boolean | undefined)",
|
|
1857
|
+
value: input.readOnly
|
|
1858
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1859
|
+
method: "typia.assert",
|
|
1860
|
+
path: _path + ".writeOnly",
|
|
1861
|
+
expected: "(boolean | undefined)",
|
|
1862
|
+
value: input.writeOnly
|
|
1863
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1749
1864
|
method: "typia.assert",
|
|
1750
1865
|
path: _path + "[\"x-nullable\"]",
|
|
1751
1866
|
expected: "(boolean | undefined)",
|
|
@@ -1835,7 +1950,17 @@ function assertHttpController(props) {
|
|
|
1835
1950
|
path: _path + ".deprecated",
|
|
1836
1951
|
expected: "(boolean | undefined)",
|
|
1837
1952
|
value: input.deprecated
|
|
1838
|
-
}, _errorFactory)) && true && (undefined === input
|
|
1953
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1954
|
+
method: "typia.assert",
|
|
1955
|
+
path: _path + ".readOnly",
|
|
1956
|
+
expected: "(boolean | undefined)",
|
|
1957
|
+
value: input.readOnly
|
|
1958
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1959
|
+
method: "typia.assert",
|
|
1960
|
+
path: _path + ".writeOnly",
|
|
1961
|
+
expected: "(boolean | undefined)",
|
|
1962
|
+
value: input.writeOnly
|
|
1963
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1839
1964
|
method: "typia.assert",
|
|
1840
1965
|
path: _path + "[\"x-nullable\"]",
|
|
1841
1966
|
expected: "(boolean | undefined)",
|
|
@@ -1910,7 +2035,17 @@ function assertHttpController(props) {
|
|
|
1910
2035
|
path: _path + ".deprecated",
|
|
1911
2036
|
expected: "(boolean | undefined)",
|
|
1912
2037
|
value: input.deprecated
|
|
1913
|
-
}, _errorFactory)) && true && (undefined === input
|
|
2038
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2039
|
+
method: "typia.assert",
|
|
2040
|
+
path: _path + ".readOnly",
|
|
2041
|
+
expected: "(boolean | undefined)",
|
|
2042
|
+
value: input.readOnly
|
|
2043
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2044
|
+
method: "typia.assert",
|
|
2045
|
+
path: _path + ".writeOnly",
|
|
2046
|
+
expected: "(boolean | undefined)",
|
|
2047
|
+
value: input.writeOnly
|
|
2048
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1914
2049
|
method: "typia.assert",
|
|
1915
2050
|
path: _path + "[\"x-nullable\"]",
|
|
1916
2051
|
expected: "(boolean | undefined)",
|
|
@@ -2000,7 +2135,17 @@ function assertHttpController(props) {
|
|
|
2000
2135
|
path: _path + ".deprecated",
|
|
2001
2136
|
expected: "(boolean | undefined)",
|
|
2002
2137
|
value: input.deprecated
|
|
2003
|
-
}, _errorFactory)) && true && (undefined === input
|
|
2138
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2139
|
+
method: "typia.assert",
|
|
2140
|
+
path: _path + ".readOnly",
|
|
2141
|
+
expected: "(boolean | undefined)",
|
|
2142
|
+
value: input.readOnly
|
|
2143
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2144
|
+
method: "typia.assert",
|
|
2145
|
+
path: _path + ".writeOnly",
|
|
2146
|
+
expected: "(boolean | undefined)",
|
|
2147
|
+
value: input.writeOnly
|
|
2148
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2004
2149
|
method: "typia.assert",
|
|
2005
2150
|
path: _path + "[\"x-nullable\"]",
|
|
2006
2151
|
expected: "(boolean | undefined)",
|
|
@@ -2045,7 +2190,12 @@ function assertHttpController(props) {
|
|
|
2045
2190
|
path: _path + ".deprecated",
|
|
2046
2191
|
expected: "(boolean | undefined)",
|
|
2047
2192
|
value: input.deprecated
|
|
2048
|
-
}, _errorFactory)) && true && ("
|
|
2193
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2194
|
+
method: "typia.assert",
|
|
2195
|
+
path: _path + ".readOnly",
|
|
2196
|
+
expected: "(boolean | undefined)",
|
|
2197
|
+
value: input.readOnly
|
|
2198
|
+
}, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2049
2199
|
method: "typia.assert",
|
|
2050
2200
|
path: _path + ".name",
|
|
2051
2201
|
expected: "string",
|
|
@@ -2095,7 +2245,12 @@ function assertHttpController(props) {
|
|
|
2095
2245
|
path: _path + ".deprecated",
|
|
2096
2246
|
expected: "(boolean | undefined)",
|
|
2097
2247
|
value: input.deprecated
|
|
2098
|
-
}, _errorFactory)) && true && ("
|
|
2248
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2249
|
+
method: "typia.assert",
|
|
2250
|
+
path: _path + ".readOnly",
|
|
2251
|
+
expected: "(boolean | undefined)",
|
|
2252
|
+
value: input.readOnly
|
|
2253
|
+
}, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2099
2254
|
method: "typia.assert",
|
|
2100
2255
|
path: _path + ".name",
|
|
2101
2256
|
expected: "string",
|
|
@@ -2145,7 +2300,12 @@ function assertHttpController(props) {
|
|
|
2145
2300
|
path: _path + ".deprecated",
|
|
2146
2301
|
expected: "(boolean | undefined)",
|
|
2147
2302
|
value: input.deprecated
|
|
2148
|
-
}, _errorFactory)) && true && ("
|
|
2303
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2304
|
+
method: "typia.assert",
|
|
2305
|
+
path: _path + ".readOnly",
|
|
2306
|
+
expected: "(boolean | undefined)",
|
|
2307
|
+
value: input.readOnly
|
|
2308
|
+
}, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2149
2309
|
method: "typia.assert",
|
|
2150
2310
|
path: _path + ".name",
|
|
2151
2311
|
expected: "string",
|
|
@@ -2185,7 +2345,12 @@ function assertHttpController(props) {
|
|
|
2185
2345
|
path: _path + ".deprecated",
|
|
2186
2346
|
expected: "(boolean | undefined)",
|
|
2187
2347
|
value: input.deprecated
|
|
2188
|
-
}, _errorFactory)) && true && ("
|
|
2348
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2349
|
+
method: "typia.assert",
|
|
2350
|
+
path: _path + ".readOnly",
|
|
2351
|
+
expected: "(boolean | undefined)",
|
|
2352
|
+
value: input.readOnly
|
|
2353
|
+
}, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2189
2354
|
method: "typia.assert",
|
|
2190
2355
|
path: _path + ".name",
|
|
2191
2356
|
expected: "string",
|
|
@@ -2225,7 +2390,12 @@ function assertHttpController(props) {
|
|
|
2225
2390
|
path: _path + ".deprecated",
|
|
2226
2391
|
expected: "(boolean | undefined)",
|
|
2227
2392
|
value: input.deprecated
|
|
2228
|
-
}, _errorFactory)) && true && ("
|
|
2393
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2394
|
+
method: "typia.assert",
|
|
2395
|
+
path: _path + ".readOnly",
|
|
2396
|
+
expected: "(boolean | undefined)",
|
|
2397
|
+
value: input.readOnly
|
|
2398
|
+
}, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2229
2399
|
method: "typia.assert",
|
|
2230
2400
|
path: _path + ".name",
|
|
2231
2401
|
expected: "string",
|
|
@@ -2650,7 +2820,12 @@ function assertHttpController(props) {
|
|
|
2650
2820
|
path: _path + ".deprecated",
|
|
2651
2821
|
expected: "(boolean | undefined)",
|
|
2652
2822
|
value: input.deprecated
|
|
2653
|
-
}, _errorFactory)) && true
|
|
2823
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2824
|
+
method: "typia.assert",
|
|
2825
|
+
path: _path + ".readOnly",
|
|
2826
|
+
expected: "(boolean | undefined)",
|
|
2827
|
+
value: input.readOnly
|
|
2828
|
+
}, _errorFactory)); const _ao43 = (input, _path, _exceptionable = true) => (undefined === input.operationId || "string" === typeof input.operationId || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2654
2829
|
method: "typia.assert",
|
|
2655
2830
|
path: _path + ".operationId",
|
|
2656
2831
|
expected: "(string | undefined)",
|
|
@@ -2760,7 +2935,12 @@ function assertHttpController(props) {
|
|
|
2760
2935
|
path: _path + ".deprecated",
|
|
2761
2936
|
expected: "(boolean | undefined)",
|
|
2762
2937
|
value: input.deprecated
|
|
2763
|
-
}, _errorFactory)) && true
|
|
2938
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2939
|
+
method: "typia.assert",
|
|
2940
|
+
path: _path + ".readOnly",
|
|
2941
|
+
expected: "(boolean | undefined)",
|
|
2942
|
+
value: input.readOnly
|
|
2943
|
+
}, _errorFactory)); const _ao45 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
2764
2944
|
const value = input[key];
|
|
2765
2945
|
if (undefined === value)
|
|
2766
2946
|
return true;
|
|
@@ -2800,7 +2980,12 @@ function assertHttpController(props) {
|
|
|
2800
2980
|
path: _path + ".deprecated",
|
|
2801
2981
|
expected: "(boolean | undefined)",
|
|
2802
2982
|
value: input.deprecated
|
|
2803
|
-
}, _errorFactory)) && true
|
|
2983
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2984
|
+
method: "typia.assert",
|
|
2985
|
+
path: _path + ".readOnly",
|
|
2986
|
+
expected: "(boolean | undefined)",
|
|
2987
|
+
value: input.readOnly
|
|
2988
|
+
}, _errorFactory)); const _ao47 = (input, _path, _exceptionable = true) => ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2804
2989
|
method: "typia.assert",
|
|
2805
2990
|
path: _path + ".name",
|
|
2806
2991
|
expected: "string",
|
|
@@ -3170,7 +3355,17 @@ function assertHttpController(props) {
|
|
|
3170
3355
|
path: _path + ".deprecated",
|
|
3171
3356
|
expected: "(boolean | undefined)",
|
|
3172
3357
|
value: input.deprecated
|
|
3173
|
-
}, _errorFactory)) && true && (
|
|
3358
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3359
|
+
method: "typia.assert",
|
|
3360
|
+
path: _path + ".readOnly",
|
|
3361
|
+
expected: "(boolean | undefined)",
|
|
3362
|
+
value: input.readOnly
|
|
3363
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3364
|
+
method: "typia.assert",
|
|
3365
|
+
path: _path + ".writeOnly",
|
|
3366
|
+
expected: "(boolean | undefined)",
|
|
3367
|
+
value: input.writeOnly
|
|
3368
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3174
3369
|
method: "typia.assert",
|
|
3175
3370
|
path: _path + ".examples",
|
|
3176
3371
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -3285,7 +3480,17 @@ function assertHttpController(props) {
|
|
|
3285
3480
|
path: _path + ".deprecated",
|
|
3286
3481
|
expected: "(boolean | undefined)",
|
|
3287
3482
|
value: input.deprecated
|
|
3288
|
-
}, _errorFactory)) && true && (
|
|
3483
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3484
|
+
method: "typia.assert",
|
|
3485
|
+
path: _path + ".readOnly",
|
|
3486
|
+
expected: "(boolean | undefined)",
|
|
3487
|
+
value: input.readOnly
|
|
3488
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3489
|
+
method: "typia.assert",
|
|
3490
|
+
path: _path + ".writeOnly",
|
|
3491
|
+
expected: "(boolean | undefined)",
|
|
3492
|
+
value: input.writeOnly
|
|
3493
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3289
3494
|
method: "typia.assert",
|
|
3290
3495
|
path: _path + ".examples",
|
|
3291
3496
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -3375,7 +3580,17 @@ function assertHttpController(props) {
|
|
|
3375
3580
|
path: _path + ".deprecated",
|
|
3376
3581
|
expected: "(boolean | undefined)",
|
|
3377
3582
|
value: input.deprecated
|
|
3378
|
-
}, _errorFactory)) && true && (
|
|
3583
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3584
|
+
method: "typia.assert",
|
|
3585
|
+
path: _path + ".readOnly",
|
|
3586
|
+
expected: "(boolean | undefined)",
|
|
3587
|
+
value: input.readOnly
|
|
3588
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3589
|
+
method: "typia.assert",
|
|
3590
|
+
path: _path + ".writeOnly",
|
|
3591
|
+
expected: "(boolean | undefined)",
|
|
3592
|
+
value: input.writeOnly
|
|
3593
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3379
3594
|
method: "typia.assert",
|
|
3380
3595
|
path: _path + ".examples",
|
|
3381
3596
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -3465,7 +3680,17 @@ function assertHttpController(props) {
|
|
|
3465
3680
|
path: _path + ".deprecated",
|
|
3466
3681
|
expected: "(boolean | undefined)",
|
|
3467
3682
|
value: input.deprecated
|
|
3468
|
-
}, _errorFactory)) && true && (
|
|
3683
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3684
|
+
method: "typia.assert",
|
|
3685
|
+
path: _path + ".readOnly",
|
|
3686
|
+
expected: "(boolean | undefined)",
|
|
3687
|
+
value: input.readOnly
|
|
3688
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3689
|
+
method: "typia.assert",
|
|
3690
|
+
path: _path + ".writeOnly",
|
|
3691
|
+
expected: "(boolean | undefined)",
|
|
3692
|
+
value: input.writeOnly
|
|
3693
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3469
3694
|
method: "typia.assert",
|
|
3470
3695
|
path: _path + ".examples",
|
|
3471
3696
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -3540,7 +3765,17 @@ function assertHttpController(props) {
|
|
|
3540
3765
|
path: _path + ".deprecated",
|
|
3541
3766
|
expected: "(boolean | undefined)",
|
|
3542
3767
|
value: input.deprecated
|
|
3543
|
-
}, _errorFactory)) && true && (
|
|
3768
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3769
|
+
method: "typia.assert",
|
|
3770
|
+
path: _path + ".readOnly",
|
|
3771
|
+
expected: "(boolean | undefined)",
|
|
3772
|
+
value: input.readOnly
|
|
3773
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3774
|
+
method: "typia.assert",
|
|
3775
|
+
path: _path + ".writeOnly",
|
|
3776
|
+
expected: "(boolean | undefined)",
|
|
3777
|
+
value: input.writeOnly
|
|
3778
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3544
3779
|
method: "typia.assert",
|
|
3545
3780
|
path: _path + ".examples",
|
|
3546
3781
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -3630,7 +3865,17 @@ function assertHttpController(props) {
|
|
|
3630
3865
|
path: _path + ".deprecated",
|
|
3631
3866
|
expected: "(boolean | undefined)",
|
|
3632
3867
|
value: input.deprecated
|
|
3633
|
-
}, _errorFactory)) && true && (
|
|
3868
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3869
|
+
method: "typia.assert",
|
|
3870
|
+
path: _path + ".readOnly",
|
|
3871
|
+
expected: "(boolean | undefined)",
|
|
3872
|
+
value: input.readOnly
|
|
3873
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3874
|
+
method: "typia.assert",
|
|
3875
|
+
path: _path + ".writeOnly",
|
|
3876
|
+
expected: "(boolean | undefined)",
|
|
3877
|
+
value: input.writeOnly
|
|
3878
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3634
3879
|
method: "typia.assert",
|
|
3635
3880
|
path: _path + ".examples",
|
|
3636
3881
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -3680,7 +3925,17 @@ function assertHttpController(props) {
|
|
|
3680
3925
|
path: _path + ".deprecated",
|
|
3681
3926
|
expected: "(boolean | undefined)",
|
|
3682
3927
|
value: input.deprecated
|
|
3683
|
-
}, _errorFactory)) && true
|
|
3928
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3929
|
+
method: "typia.assert",
|
|
3930
|
+
path: _path + ".readOnly",
|
|
3931
|
+
expected: "(boolean | undefined)",
|
|
3932
|
+
value: input.readOnly
|
|
3933
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3934
|
+
method: "typia.assert",
|
|
3935
|
+
path: _path + ".writeOnly",
|
|
3936
|
+
expected: "(boolean | undefined)",
|
|
3937
|
+
value: input.writeOnly
|
|
3938
|
+
}, _errorFactory)); const _ao65 = (input, _path, _exceptionable = true) => ((Array.isArray(input.allOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3684
3939
|
method: "typia.assert",
|
|
3685
3940
|
path: _path + ".allOf",
|
|
3686
3941
|
expected: "Array<OpenApiV3.IJsonSchema>",
|
|
@@ -3730,7 +3985,17 @@ function assertHttpController(props) {
|
|
|
3730
3985
|
path: _path + ".deprecated",
|
|
3731
3986
|
expected: "(boolean | undefined)",
|
|
3732
3987
|
value: input.deprecated
|
|
3733
|
-
}, _errorFactory)) && true
|
|
3988
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3989
|
+
method: "typia.assert",
|
|
3990
|
+
path: _path + ".readOnly",
|
|
3991
|
+
expected: "(boolean | undefined)",
|
|
3992
|
+
value: input.readOnly
|
|
3993
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3994
|
+
method: "typia.assert",
|
|
3995
|
+
path: _path + ".writeOnly",
|
|
3996
|
+
expected: "(boolean | undefined)",
|
|
3997
|
+
value: input.writeOnly
|
|
3998
|
+
}, _errorFactory)); const _ao66 = (input, _path, _exceptionable = true) => ((Array.isArray(input.anyOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3734
3999
|
method: "typia.assert",
|
|
3735
4000
|
path: _path + ".anyOf",
|
|
3736
4001
|
expected: "Array<OpenApiV3.IJsonSchema>",
|
|
@@ -3780,7 +4045,17 @@ function assertHttpController(props) {
|
|
|
3780
4045
|
path: _path + ".deprecated",
|
|
3781
4046
|
expected: "(boolean | undefined)",
|
|
3782
4047
|
value: input.deprecated
|
|
3783
|
-
}, _errorFactory)) && true
|
|
4048
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4049
|
+
method: "typia.assert",
|
|
4050
|
+
path: _path + ".readOnly",
|
|
4051
|
+
expected: "(boolean | undefined)",
|
|
4052
|
+
value: input.readOnly
|
|
4053
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4054
|
+
method: "typia.assert",
|
|
4055
|
+
path: _path + ".writeOnly",
|
|
4056
|
+
expected: "(boolean | undefined)",
|
|
4057
|
+
value: input.writeOnly
|
|
4058
|
+
}, _errorFactory)); const _ao67 = (input, _path, _exceptionable = true) => ((Array.isArray(input.oneOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3784
4059
|
method: "typia.assert",
|
|
3785
4060
|
path: _path + ".oneOf",
|
|
3786
4061
|
expected: "Array<OpenApiV3.IJsonSchema>",
|
|
@@ -3840,7 +4115,17 @@ function assertHttpController(props) {
|
|
|
3840
4115
|
path: _path + ".deprecated",
|
|
3841
4116
|
expected: "(boolean | undefined)",
|
|
3842
4117
|
value: input.deprecated
|
|
3843
|
-
}, _errorFactory)) && true
|
|
4118
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4119
|
+
method: "typia.assert",
|
|
4120
|
+
path: _path + ".readOnly",
|
|
4121
|
+
expected: "(boolean | undefined)",
|
|
4122
|
+
value: input.readOnly
|
|
4123
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4124
|
+
method: "typia.assert",
|
|
4125
|
+
path: _path + ".writeOnly",
|
|
4126
|
+
expected: "(boolean | undefined)",
|
|
4127
|
+
value: input.writeOnly
|
|
4128
|
+
}, _errorFactory)); const _ao68 = (input, _path, _exceptionable = true) => ("string" === typeof input.propertyName || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3844
4129
|
method: "typia.assert",
|
|
3845
4130
|
path: _path + ".propertyName",
|
|
3846
4131
|
expected: "string",
|
|
@@ -3880,7 +4165,17 @@ function assertHttpController(props) {
|
|
|
3880
4165
|
path: _path + ".deprecated",
|
|
3881
4166
|
expected: "(boolean | undefined)",
|
|
3882
4167
|
value: input.deprecated
|
|
3883
|
-
}, _errorFactory)) && true && (
|
|
4168
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4169
|
+
method: "typia.assert",
|
|
4170
|
+
path: _path + ".readOnly",
|
|
4171
|
+
expected: "(boolean | undefined)",
|
|
4172
|
+
value: input.readOnly
|
|
4173
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4174
|
+
method: "typia.assert",
|
|
4175
|
+
path: _path + ".writeOnly",
|
|
4176
|
+
expected: "(boolean | undefined)",
|
|
4177
|
+
value: input.writeOnly
|
|
4178
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3884
4179
|
method: "typia.assert",
|
|
3885
4180
|
path: _path + ".examples",
|
|
3886
4181
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -3920,7 +4215,17 @@ function assertHttpController(props) {
|
|
|
3920
4215
|
path: _path + ".deprecated",
|
|
3921
4216
|
expected: "(boolean | undefined)",
|
|
3922
4217
|
value: input.deprecated
|
|
3923
|
-
}, _errorFactory)) && true && (
|
|
4218
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4219
|
+
method: "typia.assert",
|
|
4220
|
+
path: _path + ".readOnly",
|
|
4221
|
+
expected: "(boolean | undefined)",
|
|
4222
|
+
value: input.readOnly
|
|
4223
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4224
|
+
method: "typia.assert",
|
|
4225
|
+
path: _path + ".writeOnly",
|
|
4226
|
+
expected: "(boolean | undefined)",
|
|
4227
|
+
value: input.writeOnly
|
|
4228
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3924
4229
|
method: "typia.assert",
|
|
3925
4230
|
path: _path + ".examples",
|
|
3926
4231
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -4075,7 +4380,17 @@ function assertHttpController(props) {
|
|
|
4075
4380
|
path: _path + ".deprecated",
|
|
4076
4381
|
expected: "(boolean | undefined)",
|
|
4077
4382
|
value: input.deprecated
|
|
4078
|
-
}, _errorFactory)) && true
|
|
4383
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4384
|
+
method: "typia.assert",
|
|
4385
|
+
path: _path + ".readOnly",
|
|
4386
|
+
expected: "(boolean | undefined)",
|
|
4387
|
+
value: input.readOnly
|
|
4388
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4389
|
+
method: "typia.assert",
|
|
4390
|
+
path: _path + ".writeOnly",
|
|
4391
|
+
expected: "(boolean | undefined)",
|
|
4392
|
+
value: input.writeOnly
|
|
4393
|
+
}, _errorFactory)); const _ao78 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
4079
4394
|
const value = input[key];
|
|
4080
4395
|
if (undefined === value)
|
|
4081
4396
|
return true;
|
|
@@ -4160,7 +4475,17 @@ function assertHttpController(props) {
|
|
|
4160
4475
|
path: _path + ".deprecated",
|
|
4161
4476
|
expected: "(boolean | undefined)",
|
|
4162
4477
|
value: input.deprecated
|
|
4163
|
-
}, _errorFactory)) && true
|
|
4478
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4479
|
+
method: "typia.assert",
|
|
4480
|
+
path: _path + ".readOnly",
|
|
4481
|
+
expected: "(boolean | undefined)",
|
|
4482
|
+
value: input.readOnly
|
|
4483
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4484
|
+
method: "typia.assert",
|
|
4485
|
+
path: _path + ".writeOnly",
|
|
4486
|
+
expected: "(boolean | undefined)",
|
|
4487
|
+
value: input.writeOnly
|
|
4488
|
+
}, _errorFactory)); const _ao81 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
4164
4489
|
const value = input[key];
|
|
4165
4490
|
if (undefined === value)
|
|
4166
4491
|
return true;
|
|
@@ -4670,7 +4995,17 @@ function assertHttpController(props) {
|
|
|
4670
4995
|
path: _path + ".deprecated",
|
|
4671
4996
|
expected: "(boolean | undefined)",
|
|
4672
4997
|
value: input.deprecated
|
|
4673
|
-
}, _errorFactory)) && true
|
|
4998
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4999
|
+
method: "typia.assert",
|
|
5000
|
+
path: _path + ".readOnly",
|
|
5001
|
+
expected: "(boolean | undefined)",
|
|
5002
|
+
value: input.readOnly
|
|
5003
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5004
|
+
method: "typia.assert",
|
|
5005
|
+
path: _path + ".writeOnly",
|
|
5006
|
+
expected: "(boolean | undefined)",
|
|
5007
|
+
value: input.writeOnly
|
|
5008
|
+
}, _errorFactory)); const _ao100 = (input, _path, _exceptionable = true) => (undefined === input.operationId || "string" === typeof input.operationId || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4674
5009
|
method: "typia.assert",
|
|
4675
5010
|
path: _path + ".operationId",
|
|
4676
5011
|
expected: "(string | undefined)",
|
|
@@ -4820,7 +5155,17 @@ function assertHttpController(props) {
|
|
|
4820
5155
|
path: _path + ".deprecated",
|
|
4821
5156
|
expected: "(boolean | undefined)",
|
|
4822
5157
|
value: input.deprecated
|
|
4823
|
-
}, _errorFactory)) && true
|
|
5158
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5159
|
+
method: "typia.assert",
|
|
5160
|
+
path: _path + ".readOnly",
|
|
5161
|
+
expected: "(boolean | undefined)",
|
|
5162
|
+
value: input.readOnly
|
|
5163
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5164
|
+
method: "typia.assert",
|
|
5165
|
+
path: _path + ".writeOnly",
|
|
5166
|
+
expected: "(boolean | undefined)",
|
|
5167
|
+
value: input.writeOnly
|
|
5168
|
+
}, _errorFactory)); const _ao102 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
4824
5169
|
const value = input[key];
|
|
4825
5170
|
if (undefined === value)
|
|
4826
5171
|
return true;
|
|
@@ -4870,7 +5215,17 @@ function assertHttpController(props) {
|
|
|
4870
5215
|
path: _path + ".deprecated",
|
|
4871
5216
|
expected: "(boolean | undefined)",
|
|
4872
5217
|
value: input.deprecated
|
|
4873
|
-
}, _errorFactory)) && true
|
|
5218
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5219
|
+
method: "typia.assert",
|
|
5220
|
+
path: _path + ".readOnly",
|
|
5221
|
+
expected: "(boolean | undefined)",
|
|
5222
|
+
value: input.readOnly
|
|
5223
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5224
|
+
method: "typia.assert",
|
|
5225
|
+
path: _path + ".writeOnly",
|
|
5226
|
+
expected: "(boolean | undefined)",
|
|
5227
|
+
value: input.writeOnly
|
|
5228
|
+
}, _errorFactory)); const _ao104 = (input, _path, _exceptionable = true) => ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4874
5229
|
method: "typia.assert",
|
|
4875
5230
|
path: _path + ".name",
|
|
4876
5231
|
expected: "string",
|
|
@@ -5295,7 +5650,17 @@ function assertHttpController(props) {
|
|
|
5295
5650
|
path: _path + ".deprecated",
|
|
5296
5651
|
expected: "(boolean | undefined)",
|
|
5297
5652
|
value: input.deprecated
|
|
5298
|
-
}, _errorFactory)) && true && (
|
|
5653
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5654
|
+
method: "typia.assert",
|
|
5655
|
+
path: _path + ".readOnly",
|
|
5656
|
+
expected: "(boolean | undefined)",
|
|
5657
|
+
value: input.readOnly
|
|
5658
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5659
|
+
method: "typia.assert",
|
|
5660
|
+
path: _path + ".writeOnly",
|
|
5661
|
+
expected: "(boolean | undefined)",
|
|
5662
|
+
value: input.writeOnly
|
|
5663
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5299
5664
|
method: "typia.assert",
|
|
5300
5665
|
path: _path + ".examples",
|
|
5301
5666
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -5375,7 +5740,17 @@ function assertHttpController(props) {
|
|
|
5375
5740
|
path: _path + ".deprecated",
|
|
5376
5741
|
expected: "(boolean | undefined)",
|
|
5377
5742
|
value: input.deprecated
|
|
5378
|
-
}, _errorFactory)) && true && (undefined === input.
|
|
5743
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5744
|
+
method: "typia.assert",
|
|
5745
|
+
path: _path + ".readOnly",
|
|
5746
|
+
expected: "(boolean | undefined)",
|
|
5747
|
+
value: input.readOnly
|
|
5748
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5749
|
+
method: "typia.assert",
|
|
5750
|
+
path: _path + ".writeOnly",
|
|
5751
|
+
expected: "(boolean | undefined)",
|
|
5752
|
+
value: input.writeOnly
|
|
5753
|
+
}, _errorFactory)) && (undefined === input.minimum || "number" === typeof input.minimum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5379
5754
|
method: "typia.assert",
|
|
5380
5755
|
path: _path + ".minimum",
|
|
5381
5756
|
expected: "(number | undefined)",
|
|
@@ -5410,16 +5785,6 @@ function assertHttpController(props) {
|
|
|
5410
5785
|
path: _path + ".format",
|
|
5411
5786
|
expected: "(string | undefined)",
|
|
5412
5787
|
value: input.format
|
|
5413
|
-
}, _errorFactory)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5414
|
-
method: "typia.assert",
|
|
5415
|
-
path: _path + ".maxLength",
|
|
5416
|
-
expected: "number & Type<\"uint64\">",
|
|
5417
|
-
value: input.maxLength
|
|
5418
|
-
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5419
|
-
method: "typia.assert",
|
|
5420
|
-
path: _path + ".maxLength",
|
|
5421
|
-
expected: "((number & Type<\"uint64\">) | undefined)",
|
|
5422
|
-
value: input.maxLength
|
|
5423
5788
|
}, _errorFactory)) && (undefined === input.pattern || "string" === typeof input.pattern || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5424
5789
|
method: "typia.assert",
|
|
5425
5790
|
path: _path + ".pattern",
|
|
@@ -5440,6 +5805,16 @@ function assertHttpController(props) {
|
|
|
5440
5805
|
path: _path + ".minLength",
|
|
5441
5806
|
expected: "((number & Type<\"uint64\">) | undefined)",
|
|
5442
5807
|
value: input.minLength
|
|
5808
|
+
}, _errorFactory)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5809
|
+
method: "typia.assert",
|
|
5810
|
+
path: _path + ".maxLength",
|
|
5811
|
+
expected: "number & Type<\"uint64\">",
|
|
5812
|
+
value: input.maxLength
|
|
5813
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5814
|
+
method: "typia.assert",
|
|
5815
|
+
path: _path + ".maxLength",
|
|
5816
|
+
expected: "((number & Type<\"uint64\">) | undefined)",
|
|
5817
|
+
value: input.maxLength
|
|
5443
5818
|
}, _errorFactory)) && ((null !== input.items || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5444
5819
|
method: "typia.assert",
|
|
5445
5820
|
path: _path + ".items",
|
|
@@ -5690,7 +6065,17 @@ function assertHttpController(props) {
|
|
|
5690
6065
|
path: _path + ".deprecated",
|
|
5691
6066
|
expected: "(boolean | undefined)",
|
|
5692
6067
|
value: input.deprecated
|
|
5693
|
-
}, _errorFactory)) && true
|
|
6068
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6069
|
+
method: "typia.assert",
|
|
6070
|
+
path: _path + ".readOnly",
|
|
6071
|
+
expected: "(boolean | undefined)",
|
|
6072
|
+
value: input.readOnly
|
|
6073
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6074
|
+
method: "typia.assert",
|
|
6075
|
+
path: _path + ".writeOnly",
|
|
6076
|
+
expected: "(boolean | undefined)",
|
|
6077
|
+
value: input.writeOnly
|
|
6078
|
+
}, _errorFactory)); const _ao117 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5694
6079
|
method: "typia.assert",
|
|
5695
6080
|
path: _path + ".nullable",
|
|
5696
6081
|
expected: "(boolean | undefined)",
|
|
@@ -5735,7 +6120,17 @@ function assertHttpController(props) {
|
|
|
5735
6120
|
path: _path + ".deprecated",
|
|
5736
6121
|
expected: "(boolean | undefined)",
|
|
5737
6122
|
value: input.deprecated
|
|
5738
|
-
}, _errorFactory)) && true && (
|
|
6123
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6124
|
+
method: "typia.assert",
|
|
6125
|
+
path: _path + ".readOnly",
|
|
6126
|
+
expected: "(boolean | undefined)",
|
|
6127
|
+
value: input.readOnly
|
|
6128
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6129
|
+
method: "typia.assert",
|
|
6130
|
+
path: _path + ".writeOnly",
|
|
6131
|
+
expected: "(boolean | undefined)",
|
|
6132
|
+
value: input.writeOnly
|
|
6133
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5739
6134
|
method: "typia.assert",
|
|
5740
6135
|
path: _path + ".examples",
|
|
5741
6136
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -5855,7 +6250,17 @@ function assertHttpController(props) {
|
|
|
5855
6250
|
path: _path + ".deprecated",
|
|
5856
6251
|
expected: "(boolean | undefined)",
|
|
5857
6252
|
value: input.deprecated
|
|
5858
|
-
}, _errorFactory)) && true && (
|
|
6253
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6254
|
+
method: "typia.assert",
|
|
6255
|
+
path: _path + ".readOnly",
|
|
6256
|
+
expected: "(boolean | undefined)",
|
|
6257
|
+
value: input.readOnly
|
|
6258
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6259
|
+
method: "typia.assert",
|
|
6260
|
+
path: _path + ".writeOnly",
|
|
6261
|
+
expected: "(boolean | undefined)",
|
|
6262
|
+
value: input.writeOnly
|
|
6263
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5859
6264
|
method: "typia.assert",
|
|
5860
6265
|
path: _path + ".examples",
|
|
5861
6266
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -5945,7 +6350,17 @@ function assertHttpController(props) {
|
|
|
5945
6350
|
path: _path + ".deprecated",
|
|
5946
6351
|
expected: "(boolean | undefined)",
|
|
5947
6352
|
value: input.deprecated
|
|
5948
|
-
}, _errorFactory)) && true && (
|
|
6353
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6354
|
+
method: "typia.assert",
|
|
6355
|
+
path: _path + ".readOnly",
|
|
6356
|
+
expected: "(boolean | undefined)",
|
|
6357
|
+
value: input.readOnly
|
|
6358
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6359
|
+
method: "typia.assert",
|
|
6360
|
+
path: _path + ".writeOnly",
|
|
6361
|
+
expected: "(boolean | undefined)",
|
|
6362
|
+
value: input.writeOnly
|
|
6363
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5949
6364
|
method: "typia.assert",
|
|
5950
6365
|
path: _path + ".examples",
|
|
5951
6366
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -6040,7 +6455,17 @@ function assertHttpController(props) {
|
|
|
6040
6455
|
path: _path + ".deprecated",
|
|
6041
6456
|
expected: "(boolean | undefined)",
|
|
6042
6457
|
value: input.deprecated
|
|
6043
|
-
}, _errorFactory)) && true && (
|
|
6458
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6459
|
+
method: "typia.assert",
|
|
6460
|
+
path: _path + ".readOnly",
|
|
6461
|
+
expected: "(boolean | undefined)",
|
|
6462
|
+
value: input.readOnly
|
|
6463
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6464
|
+
method: "typia.assert",
|
|
6465
|
+
path: _path + ".writeOnly",
|
|
6466
|
+
expected: "(boolean | undefined)",
|
|
6467
|
+
value: input.writeOnly
|
|
6468
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6044
6469
|
method: "typia.assert",
|
|
6045
6470
|
path: _path + ".examples",
|
|
6046
6471
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -6165,7 +6590,17 @@ function assertHttpController(props) {
|
|
|
6165
6590
|
path: _path + ".deprecated",
|
|
6166
6591
|
expected: "(boolean | undefined)",
|
|
6167
6592
|
value: input.deprecated
|
|
6168
|
-
}, _errorFactory)) && true && (
|
|
6593
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6594
|
+
method: "typia.assert",
|
|
6595
|
+
path: _path + ".readOnly",
|
|
6596
|
+
expected: "(boolean | undefined)",
|
|
6597
|
+
value: input.readOnly
|
|
6598
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6599
|
+
method: "typia.assert",
|
|
6600
|
+
path: _path + ".writeOnly",
|
|
6601
|
+
expected: "(boolean | undefined)",
|
|
6602
|
+
value: input.writeOnly
|
|
6603
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6169
6604
|
method: "typia.assert",
|
|
6170
6605
|
path: _path + ".examples",
|
|
6171
6606
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -6215,7 +6650,17 @@ function assertHttpController(props) {
|
|
|
6215
6650
|
path: _path + ".deprecated",
|
|
6216
6651
|
expected: "(boolean | undefined)",
|
|
6217
6652
|
value: input.deprecated
|
|
6218
|
-
}, _errorFactory)) && true
|
|
6653
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6654
|
+
method: "typia.assert",
|
|
6655
|
+
path: _path + ".readOnly",
|
|
6656
|
+
expected: "(boolean | undefined)",
|
|
6657
|
+
value: input.readOnly
|
|
6658
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6659
|
+
method: "typia.assert",
|
|
6660
|
+
path: _path + ".writeOnly",
|
|
6661
|
+
expected: "(boolean | undefined)",
|
|
6662
|
+
value: input.writeOnly
|
|
6663
|
+
}, _errorFactory)); const _ao123 = (input, _path, _exceptionable = true) => ("string" === typeof input.$recursiveRef || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6219
6664
|
method: "typia.assert",
|
|
6220
6665
|
path: _path + ".$recursiveRef",
|
|
6221
6666
|
expected: "string",
|
|
@@ -6250,7 +6695,17 @@ function assertHttpController(props) {
|
|
|
6250
6695
|
path: _path + ".deprecated",
|
|
6251
6696
|
expected: "(boolean | undefined)",
|
|
6252
6697
|
value: input.deprecated
|
|
6253
|
-
}, _errorFactory)) && true
|
|
6698
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6699
|
+
method: "typia.assert",
|
|
6700
|
+
path: _path + ".readOnly",
|
|
6701
|
+
expected: "(boolean | undefined)",
|
|
6702
|
+
value: input.readOnly
|
|
6703
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6704
|
+
method: "typia.assert",
|
|
6705
|
+
path: _path + ".writeOnly",
|
|
6706
|
+
expected: "(boolean | undefined)",
|
|
6707
|
+
value: input.writeOnly
|
|
6708
|
+
}, _errorFactory)); const _ao124 = (input, _path, _exceptionable = true) => ((Array.isArray(input.allOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6254
6709
|
method: "typia.assert",
|
|
6255
6710
|
path: _path + ".allOf",
|
|
6256
6711
|
expected: "Array<OpenApiV3_1.IJsonSchema>",
|
|
@@ -6300,7 +6755,17 @@ function assertHttpController(props) {
|
|
|
6300
6755
|
path: _path + ".deprecated",
|
|
6301
6756
|
expected: "(boolean | undefined)",
|
|
6302
6757
|
value: input.deprecated
|
|
6303
|
-
}, _errorFactory)) && true
|
|
6758
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6759
|
+
method: "typia.assert",
|
|
6760
|
+
path: _path + ".readOnly",
|
|
6761
|
+
expected: "(boolean | undefined)",
|
|
6762
|
+
value: input.readOnly
|
|
6763
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6764
|
+
method: "typia.assert",
|
|
6765
|
+
path: _path + ".writeOnly",
|
|
6766
|
+
expected: "(boolean | undefined)",
|
|
6767
|
+
value: input.writeOnly
|
|
6768
|
+
}, _errorFactory)); const _ao125 = (input, _path, _exceptionable = true) => ((Array.isArray(input.anyOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6304
6769
|
method: "typia.assert",
|
|
6305
6770
|
path: _path + ".anyOf",
|
|
6306
6771
|
expected: "Array<OpenApiV3_1.IJsonSchema>",
|
|
@@ -6350,7 +6815,17 @@ function assertHttpController(props) {
|
|
|
6350
6815
|
path: _path + ".deprecated",
|
|
6351
6816
|
expected: "(boolean | undefined)",
|
|
6352
6817
|
value: input.deprecated
|
|
6353
|
-
}, _errorFactory)) && true
|
|
6818
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6819
|
+
method: "typia.assert",
|
|
6820
|
+
path: _path + ".readOnly",
|
|
6821
|
+
expected: "(boolean | undefined)",
|
|
6822
|
+
value: input.readOnly
|
|
6823
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6824
|
+
method: "typia.assert",
|
|
6825
|
+
path: _path + ".writeOnly",
|
|
6826
|
+
expected: "(boolean | undefined)",
|
|
6827
|
+
value: input.writeOnly
|
|
6828
|
+
}, _errorFactory)); const _ao126 = (input, _path, _exceptionable = true) => ((Array.isArray(input.oneOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6354
6829
|
method: "typia.assert",
|
|
6355
6830
|
path: _path + ".oneOf",
|
|
6356
6831
|
expected: "Array<OpenApiV3_1.IJsonSchema>",
|
|
@@ -6410,7 +6885,17 @@ function assertHttpController(props) {
|
|
|
6410
6885
|
path: _path + ".deprecated",
|
|
6411
6886
|
expected: "(boolean | undefined)",
|
|
6412
6887
|
value: input.deprecated
|
|
6413
|
-
}, _errorFactory)) && true
|
|
6888
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6889
|
+
method: "typia.assert",
|
|
6890
|
+
path: _path + ".readOnly",
|
|
6891
|
+
expected: "(boolean | undefined)",
|
|
6892
|
+
value: input.readOnly
|
|
6893
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6894
|
+
method: "typia.assert",
|
|
6895
|
+
path: _path + ".writeOnly",
|
|
6896
|
+
expected: "(boolean | undefined)",
|
|
6897
|
+
value: input.writeOnly
|
|
6898
|
+
}, _errorFactory)); const _ao127 = (input, _path, _exceptionable = true) => ("string" === typeof input.propertyName || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6414
6899
|
method: "typia.assert",
|
|
6415
6900
|
path: _path + ".propertyName",
|
|
6416
6901
|
expected: "string",
|
|
@@ -6450,7 +6935,17 @@ function assertHttpController(props) {
|
|
|
6450
6935
|
path: _path + ".deprecated",
|
|
6451
6936
|
expected: "(boolean | undefined)",
|
|
6452
6937
|
value: input.deprecated
|
|
6453
|
-
}, _errorFactory)) && true && (
|
|
6938
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6939
|
+
method: "typia.assert",
|
|
6940
|
+
path: _path + ".readOnly",
|
|
6941
|
+
expected: "(boolean | undefined)",
|
|
6942
|
+
value: input.readOnly
|
|
6943
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6944
|
+
method: "typia.assert",
|
|
6945
|
+
path: _path + ".writeOnly",
|
|
6946
|
+
expected: "(boolean | undefined)",
|
|
6947
|
+
value: input.writeOnly
|
|
6948
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6454
6949
|
method: "typia.assert",
|
|
6455
6950
|
path: _path + ".examples",
|
|
6456
6951
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -6490,7 +6985,17 @@ function assertHttpController(props) {
|
|
|
6490
6985
|
path: _path + ".deprecated",
|
|
6491
6986
|
expected: "(boolean | undefined)",
|
|
6492
6987
|
value: input.deprecated
|
|
6493
|
-
}, _errorFactory)) && true && (
|
|
6988
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6989
|
+
method: "typia.assert",
|
|
6990
|
+
path: _path + ".readOnly",
|
|
6991
|
+
expected: "(boolean | undefined)",
|
|
6992
|
+
value: input.readOnly
|
|
6993
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6994
|
+
method: "typia.assert",
|
|
6995
|
+
path: _path + ".writeOnly",
|
|
6996
|
+
expected: "(boolean | undefined)",
|
|
6997
|
+
value: input.writeOnly
|
|
6998
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6494
6999
|
method: "typia.assert",
|
|
6495
7000
|
path: _path + ".examples",
|
|
6496
7001
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -6755,7 +7260,17 @@ function assertHttpController(props) {
|
|
|
6755
7260
|
path: _path + ".deprecated",
|
|
6756
7261
|
expected: "(boolean | undefined)",
|
|
6757
7262
|
value: input.deprecated
|
|
6758
|
-
}, _errorFactory)) && true
|
|
7263
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7264
|
+
method: "typia.assert",
|
|
7265
|
+
path: _path + ".readOnly",
|
|
7266
|
+
expected: "(boolean | undefined)",
|
|
7267
|
+
value: input.readOnly
|
|
7268
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7269
|
+
method: "typia.assert",
|
|
7270
|
+
path: _path + ".writeOnly",
|
|
7271
|
+
expected: "(boolean | undefined)",
|
|
7272
|
+
value: input.writeOnly
|
|
7273
|
+
}, _errorFactory)); const _ao136 = (input, _path, _exceptionable = true) => ("string" === typeof input.$ref && RegExp(/^#\/components\/headers\/(.*)/).test(input.$ref) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6759
7274
|
method: "typia.assert",
|
|
6760
7275
|
path: _path + ".$ref",
|
|
6761
7276
|
expected: "`#/components/headers/${string}`",
|
|
@@ -6790,7 +7305,17 @@ function assertHttpController(props) {
|
|
|
6790
7305
|
path: _path + ".deprecated",
|
|
6791
7306
|
expected: "(boolean | undefined)",
|
|
6792
7307
|
value: input.deprecated
|
|
6793
|
-
}, _errorFactory)) && true
|
|
7308
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7309
|
+
method: "typia.assert",
|
|
7310
|
+
path: _path + ".readOnly",
|
|
7311
|
+
expected: "(boolean | undefined)",
|
|
7312
|
+
value: input.readOnly
|
|
7313
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7314
|
+
method: "typia.assert",
|
|
7315
|
+
path: _path + ".writeOnly",
|
|
7316
|
+
expected: "(boolean | undefined)",
|
|
7317
|
+
value: input.writeOnly
|
|
7318
|
+
}, _errorFactory)); const _ao137 = (input, _path, _exceptionable = true) => ("string" === typeof input.$ref && RegExp(/^#\/components\/parameters\/(.*)/).test(input.$ref) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6794
7319
|
method: "typia.assert",
|
|
6795
7320
|
path: _path + ".$ref",
|
|
6796
7321
|
expected: "`#/components/parameters/${string}`",
|
|
@@ -6825,7 +7350,17 @@ function assertHttpController(props) {
|
|
|
6825
7350
|
path: _path + ".deprecated",
|
|
6826
7351
|
expected: "(boolean | undefined)",
|
|
6827
7352
|
value: input.deprecated
|
|
6828
|
-
}, _errorFactory)) && true
|
|
7353
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7354
|
+
method: "typia.assert",
|
|
7355
|
+
path: _path + ".readOnly",
|
|
7356
|
+
expected: "(boolean | undefined)",
|
|
7357
|
+
value: input.readOnly
|
|
7358
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7359
|
+
method: "typia.assert",
|
|
7360
|
+
path: _path + ".writeOnly",
|
|
7361
|
+
expected: "(boolean | undefined)",
|
|
7362
|
+
value: input.writeOnly
|
|
7363
|
+
}, _errorFactory)); const _ao138 = (input, _path, _exceptionable = true) => (undefined === input.operationId || "string" === typeof input.operationId || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6829
7364
|
method: "typia.assert",
|
|
6830
7365
|
path: _path + ".operationId",
|
|
6831
7366
|
expected: "(string | undefined)",
|
|
@@ -7030,7 +7565,17 @@ function assertHttpController(props) {
|
|
|
7030
7565
|
path: _path + ".deprecated",
|
|
7031
7566
|
expected: "(boolean | undefined)",
|
|
7032
7567
|
value: input.deprecated
|
|
7033
|
-
}, _errorFactory)) && true
|
|
7568
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7569
|
+
method: "typia.assert",
|
|
7570
|
+
path: _path + ".readOnly",
|
|
7571
|
+
expected: "(boolean | undefined)",
|
|
7572
|
+
value: input.readOnly
|
|
7573
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7574
|
+
method: "typia.assert",
|
|
7575
|
+
path: _path + ".writeOnly",
|
|
7576
|
+
expected: "(boolean | undefined)",
|
|
7577
|
+
value: input.writeOnly
|
|
7578
|
+
}, _errorFactory)); const _ao143 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
7034
7579
|
const value = input[key];
|
|
7035
7580
|
if (undefined === value)
|
|
7036
7581
|
return true;
|
|
@@ -7155,7 +7700,17 @@ function assertHttpController(props) {
|
|
|
7155
7700
|
path: _path + ".deprecated",
|
|
7156
7701
|
expected: "(boolean | undefined)",
|
|
7157
7702
|
value: input.deprecated
|
|
7158
|
-
}, _errorFactory)) && true
|
|
7703
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7704
|
+
method: "typia.assert",
|
|
7705
|
+
path: _path + ".readOnly",
|
|
7706
|
+
expected: "(boolean | undefined)",
|
|
7707
|
+
value: input.readOnly
|
|
7708
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7709
|
+
method: "typia.assert",
|
|
7710
|
+
path: _path + ".writeOnly",
|
|
7711
|
+
expected: "(boolean | undefined)",
|
|
7712
|
+
value: input.writeOnly
|
|
7713
|
+
}, _errorFactory)); const _ao148 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
7159
7714
|
const value = input[key];
|
|
7160
7715
|
if (undefined === value)
|
|
7161
7716
|
return true;
|
|
@@ -7490,7 +8045,17 @@ function assertHttpController(props) {
|
|
|
7490
8045
|
path: _path + ".deprecated",
|
|
7491
8046
|
expected: "(boolean | undefined)",
|
|
7492
8047
|
value: input.deprecated
|
|
7493
|
-
}, _errorFactory)) && true
|
|
8048
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8049
|
+
method: "typia.assert",
|
|
8050
|
+
path: _path + ".readOnly",
|
|
8051
|
+
expected: "(boolean | undefined)",
|
|
8052
|
+
value: input.readOnly
|
|
8053
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8054
|
+
method: "typia.assert",
|
|
8055
|
+
path: _path + ".writeOnly",
|
|
8056
|
+
expected: "(boolean | undefined)",
|
|
8057
|
+
value: input.writeOnly
|
|
8058
|
+
}, _errorFactory)); const _ao165 = (input, _path, _exceptionable = true) => ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7494
8059
|
method: "typia.assert",
|
|
7495
8060
|
path: _path + ".name",
|
|
7496
8061
|
expected: "string",
|
|
@@ -7815,6 +8380,16 @@ function assertHttpController(props) {
|
|
|
7815
8380
|
path: _path + ".examples",
|
|
7816
8381
|
expected: "(Record<string, any> | undefined)",
|
|
7817
8382
|
value: input.examples
|
|
8383
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8384
|
+
method: "typia.assert",
|
|
8385
|
+
path: _path + ".readOnly",
|
|
8386
|
+
expected: "(boolean | undefined)",
|
|
8387
|
+
value: input.readOnly
|
|
8388
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8389
|
+
method: "typia.assert",
|
|
8390
|
+
path: _path + ".writeOnly",
|
|
8391
|
+
expected: "(boolean | undefined)",
|
|
8392
|
+
value: input.writeOnly
|
|
7818
8393
|
}, _errorFactory)); const _ao176 = (input, _path, _exceptionable = true) => (undefined === input["default"] || "boolean" === typeof input["default"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7819
8394
|
method: "typia.assert",
|
|
7820
8395
|
path: _path + "[\"default\"]",
|
|
@@ -7850,6 +8425,16 @@ function assertHttpController(props) {
|
|
|
7850
8425
|
path: _path + ".examples",
|
|
7851
8426
|
expected: "(Record<string, any> | undefined)",
|
|
7852
8427
|
value: input.examples
|
|
8428
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8429
|
+
method: "typia.assert",
|
|
8430
|
+
path: _path + ".readOnly",
|
|
8431
|
+
expected: "(boolean | undefined)",
|
|
8432
|
+
value: input.readOnly
|
|
8433
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8434
|
+
method: "typia.assert",
|
|
8435
|
+
path: _path + ".writeOnly",
|
|
8436
|
+
expected: "(boolean | undefined)",
|
|
8437
|
+
value: input.writeOnly
|
|
7853
8438
|
}, _errorFactory)); const _ao177 = (input, _path, _exceptionable = true) => (undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7854
8439
|
method: "typia.assert",
|
|
7855
8440
|
path: _path + "[\"default\"]",
|
|
@@ -7935,6 +8520,16 @@ function assertHttpController(props) {
|
|
|
7935
8520
|
path: _path + ".examples",
|
|
7936
8521
|
expected: "(Record<string, any> | undefined)",
|
|
7937
8522
|
value: input.examples
|
|
8523
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8524
|
+
method: "typia.assert",
|
|
8525
|
+
path: _path + ".readOnly",
|
|
8526
|
+
expected: "(boolean | undefined)",
|
|
8527
|
+
value: input.readOnly
|
|
8528
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8529
|
+
method: "typia.assert",
|
|
8530
|
+
path: _path + ".writeOnly",
|
|
8531
|
+
expected: "(boolean | undefined)",
|
|
8532
|
+
value: input.writeOnly
|
|
7938
8533
|
}, _errorFactory)); const _ao178 = (input, _path, _exceptionable = true) => (undefined === input["default"] || "number" === typeof input["default"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7939
8534
|
method: "typia.assert",
|
|
7940
8535
|
path: _path + "[\"default\"]",
|
|
@@ -8000,6 +8595,16 @@ function assertHttpController(props) {
|
|
|
8000
8595
|
path: _path + ".examples",
|
|
8001
8596
|
expected: "(Record<string, any> | undefined)",
|
|
8002
8597
|
value: input.examples
|
|
8598
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8599
|
+
method: "typia.assert",
|
|
8600
|
+
path: _path + ".readOnly",
|
|
8601
|
+
expected: "(boolean | undefined)",
|
|
8602
|
+
value: input.readOnly
|
|
8603
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8604
|
+
method: "typia.assert",
|
|
8605
|
+
path: _path + ".writeOnly",
|
|
8606
|
+
expected: "(boolean | undefined)",
|
|
8607
|
+
value: input.writeOnly
|
|
8003
8608
|
}, _errorFactory)); const _ao179 = (input, _path, _exceptionable = true) => (undefined === input["default"] || "string" === typeof input["default"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8004
8609
|
method: "typia.assert",
|
|
8005
8610
|
path: _path + "[\"default\"]",
|
|
@@ -8070,6 +8675,16 @@ function assertHttpController(props) {
|
|
|
8070
8675
|
path: _path + ".examples",
|
|
8071
8676
|
expected: "(Record<string, any> | undefined)",
|
|
8072
8677
|
value: input.examples
|
|
8678
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8679
|
+
method: "typia.assert",
|
|
8680
|
+
path: _path + ".readOnly",
|
|
8681
|
+
expected: "(boolean | undefined)",
|
|
8682
|
+
value: input.readOnly
|
|
8683
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8684
|
+
method: "typia.assert",
|
|
8685
|
+
path: _path + ".writeOnly",
|
|
8686
|
+
expected: "(boolean | undefined)",
|
|
8687
|
+
value: input.writeOnly
|
|
8073
8688
|
}, _errorFactory)); const _ao180 = (input, _path, _exceptionable = true) => (("object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8074
8689
|
method: "typia.assert",
|
|
8075
8690
|
path: _path + ".items",
|
|
@@ -8135,6 +8750,16 @@ function assertHttpController(props) {
|
|
|
8135
8750
|
path: _path + ".examples",
|
|
8136
8751
|
expected: "(Record<string, any> | undefined)",
|
|
8137
8752
|
value: input.examples
|
|
8753
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8754
|
+
method: "typia.assert",
|
|
8755
|
+
path: _path + ".readOnly",
|
|
8756
|
+
expected: "(boolean | undefined)",
|
|
8757
|
+
value: input.readOnly
|
|
8758
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8759
|
+
method: "typia.assert",
|
|
8760
|
+
path: _path + ".writeOnly",
|
|
8761
|
+
expected: "(boolean | undefined)",
|
|
8762
|
+
value: input.writeOnly
|
|
8138
8763
|
}, _errorFactory)); const _ao181 = (input, _path, _exceptionable = true) => ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8139
8764
|
method: "typia.assert",
|
|
8140
8765
|
path: _path + ".type",
|
|
@@ -8225,6 +8850,16 @@ function assertHttpController(props) {
|
|
|
8225
8850
|
path: _path + ".examples",
|
|
8226
8851
|
expected: "(Record<string, any> | undefined)",
|
|
8227
8852
|
value: input.examples
|
|
8853
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8854
|
+
method: "typia.assert",
|
|
8855
|
+
path: _path + ".readOnly",
|
|
8856
|
+
expected: "(boolean | undefined)",
|
|
8857
|
+
value: input.readOnly
|
|
8858
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8859
|
+
method: "typia.assert",
|
|
8860
|
+
path: _path + ".writeOnly",
|
|
8861
|
+
expected: "(boolean | undefined)",
|
|
8862
|
+
value: input.writeOnly
|
|
8228
8863
|
}, _errorFactory)); const _ao182 = (input, _path, _exceptionable = true) => (undefined === input.properties || ("object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8229
8864
|
method: "typia.assert",
|
|
8230
8865
|
path: _path + ".properties",
|
|
@@ -8295,6 +8930,16 @@ function assertHttpController(props) {
|
|
|
8295
8930
|
path: _path + ".examples",
|
|
8296
8931
|
expected: "(Record<string, any> | undefined)",
|
|
8297
8932
|
value: input.examples
|
|
8933
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8934
|
+
method: "typia.assert",
|
|
8935
|
+
path: _path + ".readOnly",
|
|
8936
|
+
expected: "(boolean | undefined)",
|
|
8937
|
+
value: input.readOnly
|
|
8938
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8939
|
+
method: "typia.assert",
|
|
8940
|
+
path: _path + ".writeOnly",
|
|
8941
|
+
expected: "(boolean | undefined)",
|
|
8942
|
+
value: input.writeOnly
|
|
8298
8943
|
}, _errorFactory)); const _ao183 = (input, _path, _exceptionable = true) => ("string" === typeof input.$ref || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8299
8944
|
method: "typia.assert",
|
|
8300
8945
|
path: _path + ".$ref",
|
|
@@ -8325,6 +8970,16 @@ function assertHttpController(props) {
|
|
|
8325
8970
|
path: _path + ".examples",
|
|
8326
8971
|
expected: "(Record<string, any> | undefined)",
|
|
8327
8972
|
value: input.examples
|
|
8973
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8974
|
+
method: "typia.assert",
|
|
8975
|
+
path: _path + ".readOnly",
|
|
8976
|
+
expected: "(boolean | undefined)",
|
|
8977
|
+
value: input.readOnly
|
|
8978
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8979
|
+
method: "typia.assert",
|
|
8980
|
+
path: _path + ".writeOnly",
|
|
8981
|
+
expected: "(boolean | undefined)",
|
|
8982
|
+
value: input.writeOnly
|
|
8328
8983
|
}, _errorFactory)); const _ao184 = (input, _path, _exceptionable = true) => ((Array.isArray(input.oneOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8329
8984
|
method: "typia.assert",
|
|
8330
8985
|
path: _path + ".oneOf",
|
|
@@ -8380,6 +9035,16 @@ function assertHttpController(props) {
|
|
|
8380
9035
|
path: _path + ".examples",
|
|
8381
9036
|
expected: "(Record<string, any> | undefined)",
|
|
8382
9037
|
value: input.examples
|
|
9038
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9039
|
+
method: "typia.assert",
|
|
9040
|
+
path: _path + ".readOnly",
|
|
9041
|
+
expected: "(boolean | undefined)",
|
|
9042
|
+
value: input.readOnly
|
|
9043
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9044
|
+
method: "typia.assert",
|
|
9045
|
+
path: _path + ".writeOnly",
|
|
9046
|
+
expected: "(boolean | undefined)",
|
|
9047
|
+
value: input.writeOnly
|
|
8383
9048
|
}, _errorFactory)); const _ao185 = (input, _path, _exceptionable = true) => (null === input["default"] || undefined === input["default"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8384
9049
|
method: "typia.assert",
|
|
8385
9050
|
path: _path + "[\"default\"]",
|
|
@@ -8415,6 +9080,16 @@ function assertHttpController(props) {
|
|
|
8415
9080
|
path: _path + ".examples",
|
|
8416
9081
|
expected: "(Record<string, any> | undefined)",
|
|
8417
9082
|
value: input.examples
|
|
9083
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9084
|
+
method: "typia.assert",
|
|
9085
|
+
path: _path + ".readOnly",
|
|
9086
|
+
expected: "(boolean | undefined)",
|
|
9087
|
+
value: input.readOnly
|
|
9088
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9089
|
+
method: "typia.assert",
|
|
9090
|
+
path: _path + ".writeOnly",
|
|
9091
|
+
expected: "(boolean | undefined)",
|
|
9092
|
+
value: input.writeOnly
|
|
8418
9093
|
}, _errorFactory)); const _ao186 = (input, _path, _exceptionable = true) => true && ((null !== input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8419
9094
|
method: "typia.assert",
|
|
8420
9095
|
path: _path + ".type",
|
|
@@ -8450,6 +9125,16 @@ function assertHttpController(props) {
|
|
|
8450
9125
|
path: _path + ".examples",
|
|
8451
9126
|
expected: "(Record<string, any> | undefined)",
|
|
8452
9127
|
value: input.examples
|
|
9128
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9129
|
+
method: "typia.assert",
|
|
9130
|
+
path: _path + ".readOnly",
|
|
9131
|
+
expected: "(boolean | undefined)",
|
|
9132
|
+
value: input.readOnly
|
|
9133
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9134
|
+
method: "typia.assert",
|
|
9135
|
+
path: _path + ".writeOnly",
|
|
9136
|
+
expected: "(boolean | undefined)",
|
|
9137
|
+
value: input.writeOnly
|
|
8453
9138
|
}, _errorFactory)); const _ao187 = (input, _path, _exceptionable = true) => ("string" === typeof input.propertyName || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8454
9139
|
method: "typia.assert",
|
|
8455
9140
|
path: _path + ".propertyName",
|
|
@@ -9606,9 +10291,8 @@ function assertHttpController(props) {
|
|
|
9606
10291
|
protocol: "http",
|
|
9607
10292
|
name: props.name,
|
|
9608
10293
|
application: openapi_1.HttpLlm.application({
|
|
9609
|
-
model: props.model,
|
|
9610
10294
|
document,
|
|
9611
|
-
|
|
10295
|
+
config: props.config,
|
|
9612
10296
|
}),
|
|
9613
10297
|
execute: props.execute,
|
|
9614
10298
|
connection: props.connection,
|