@agentica/core 0.15.7 → 0.16.1
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 +21 -21
- package/lib/Agentica.js +29 -29
- package/lib/Agentica.js.map +1 -1
- package/lib/MicroAgentica.d.ts +115 -0
- package/lib/MicroAgentica.js +279 -0
- package/lib/MicroAgentica.js.map +1 -0
- package/lib/constants/AgenticaDefaultPrompt.d.ts +2 -1
- package/lib/constants/AgenticaDefaultPrompt.js +4 -4
- package/lib/constants/AgenticaDefaultPrompt.js.map +1 -1
- package/lib/context/AgenticaCancelPrompt.d.ts +3 -3
- package/lib/context/AgenticaContext.d.ts +12 -12
- package/lib/context/AgenticaOperationCollection.d.ts +1 -1
- package/lib/context/MicroAgenticaContext.d.ts +75 -0
- package/lib/{prompts/AgenticaCancelPrompt.js → context/MicroAgenticaContext.js} +1 -1
- package/lib/context/MicroAgenticaContext.js.map +1 -0
- package/lib/context/internal/AgenticaOperationComposer.d.ts +2 -1
- package/lib/context/internal/AgenticaOperationComposer.js +3 -2
- package/lib/context/internal/AgenticaOperationComposer.js.map +1 -1
- package/lib/context/internal/isAgenticaContext.d.ts +1 -0
- package/lib/context/internal/isAgenticaContext.js +10 -0
- package/lib/context/internal/isAgenticaContext.js.map +1 -0
- package/lib/events/AgenticaDescribeEvent.d.ts +4 -4
- package/lib/events/AgenticaEvent.d.ts +1 -0
- package/lib/events/AgenticaExecuteEvent.d.ts +5 -5
- package/lib/events/AgenticaSelectEvent.d.ts +2 -2
- package/lib/events/AgenticaTextEvent.d.ts +2 -2
- package/lib/events/MicroAgenticaEvent.d.ts +32 -0
- package/lib/{prompts/AgenticaTextPrompt.js → events/MicroAgenticaEvent.js} +1 -1
- package/lib/events/MicroAgenticaEvent.js.map +1 -0
- package/lib/factory/events.d.ts +2 -2
- package/lib/factory/events.js +5 -5
- package/lib/factory/events.js.map +1 -1
- package/lib/factory/histories.d.ts +33 -0
- package/lib/factory/{prompts.js → histories.js} +13 -13
- package/lib/factory/histories.js.map +1 -0
- package/lib/factory/index.d.ts +1 -1
- package/lib/factory/index.js +1 -1
- package/lib/factory/index.js.map +1 -1
- package/lib/functional/assertHttpLlmApplication.js +577 -387
- package/lib/functional/assertHttpLlmApplication.js.map +1 -1
- package/lib/functional/validateHttpLlmApplication.js +500 -348
- package/lib/functional/validateHttpLlmApplication.js.map +1 -1
- package/lib/histories/AgenticaCancelHistory.d.ts +8 -0
- package/lib/{prompts/AgenticaExecutePrompt.js → histories/AgenticaCancelHistory.js} +1 -1
- package/lib/histories/AgenticaCancelHistory.js.map +1 -0
- package/lib/histories/AgenticaDescribeHistory.d.ts +16 -0
- package/lib/histories/AgenticaDescribeHistory.js +3 -0
- package/lib/histories/AgenticaDescribeHistory.js.map +1 -0
- package/lib/{prompts/AgenticaExecutePrompt.d.ts → histories/AgenticaExecuteHistory.d.ts} +5 -5
- package/lib/{prompts/AgenticaDescribePrompt.js → histories/AgenticaExecuteHistory.js} +1 -1
- package/lib/histories/AgenticaExecuteHistory.js.map +1 -0
- package/lib/histories/AgenticaHistory.d.ts +17 -0
- package/lib/{prompts/AgenticaPrompt.js → histories/AgenticaHistory.js} +1 -1
- package/lib/histories/AgenticaHistory.js.map +1 -0
- package/lib/{prompts/AgenticaPromptBase.d.ts → histories/AgenticaHistoryBase.d.ts} +4 -4
- package/lib/{json/IAgenticaPromptJson.js → histories/AgenticaHistoryBase.js} +1 -1
- package/lib/histories/AgenticaHistoryBase.js.map +1 -0
- package/lib/histories/AgenticaSelectHistory.d.ts +8 -0
- package/lib/histories/AgenticaSelectHistory.js +3 -0
- package/lib/histories/AgenticaSelectHistory.js.map +1 -0
- package/lib/histories/AgenticaTextHistory.d.ts +6 -0
- package/lib/{prompts/AgenticaPromptBase.js → histories/AgenticaTextHistory.js} +1 -1
- package/lib/histories/AgenticaTextHistory.js.map +1 -0
- package/lib/histories/MicroAgenticaHistory.d.ts +13 -0
- package/lib/histories/MicroAgenticaHistory.js +3 -0
- package/lib/histories/MicroAgenticaHistory.js.map +1 -0
- package/lib/index.d.ts +12 -7
- package/lib/index.js +12 -7
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +1408 -917
- package/lib/index.mjs.map +1 -1
- package/lib/json/IAgenticaEventJson.d.ts +6 -5
- package/lib/json/{IAgenticaPromptJson.d.ts → IAgenticaHistoryJson.d.ts} +8 -8
- package/lib/json/IAgenticaHistoryJson.js +3 -0
- package/lib/json/IAgenticaHistoryJson.js.map +1 -0
- package/lib/json/IAgenticaOperationSelectionJson.d.ts +7 -1
- package/lib/json/IMicroAgenticaEventJson.d.ts +13 -0
- package/lib/json/IMicroAgenticaEventJson.js +3 -0
- package/lib/json/IMicroAgenticaEventJson.js.map +1 -0
- package/lib/json/IMicroAgenticaHistoryJson.d.ts +19 -0
- package/lib/json/IMicroAgenticaHistoryJson.js +3 -0
- package/lib/json/IMicroAgenticaHistoryJson.js.map +1 -0
- package/lib/orchestrate/call.d.ts +4 -2
- package/lib/orchestrate/call.js +58 -49
- package/lib/orchestrate/call.js.map +1 -1
- package/lib/orchestrate/cancel.js +4 -4
- package/lib/orchestrate/cancel.js.map +1 -1
- package/lib/orchestrate/describe.d.ts +4 -3
- package/lib/orchestrate/describe.js +5 -5
- package/lib/orchestrate/describe.js.map +1 -1
- package/lib/orchestrate/execute.d.ts +2 -2
- package/lib/orchestrate/execute.js +1 -1
- package/lib/orchestrate/execute.js.map +1 -1
- package/lib/orchestrate/initialize.d.ts +2 -2
- package/lib/orchestrate/initialize.js +5 -5
- package/lib/orchestrate/initialize.js.map +1 -1
- package/lib/orchestrate/internal/selectFunction.d.ts +1 -5
- package/lib/orchestrate/internal/selectFunction.js +5 -2
- package/lib/orchestrate/internal/selectFunction.js.map +1 -1
- package/lib/orchestrate/select.d.ts +2 -2
- package/lib/orchestrate/select.js +5 -5
- package/lib/orchestrate/select.js.map +1 -1
- package/lib/structures/IAgenticaConfig.d.ts +6 -5
- package/lib/structures/IAgenticaController.d.ts +1 -1
- package/lib/structures/IAgenticaExecutor.d.ts +11 -9
- package/lib/structures/IAgenticaProps.d.ts +3 -3
- package/lib/structures/IAgenticaSystemPrompt.d.ts +13 -13
- package/lib/structures/IAgenticaVendor.d.ts +1 -1
- package/lib/structures/IMicroAgenticaConfig.d.ts +74 -0
- package/lib/structures/IMicroAgenticaConfig.js +3 -0
- package/lib/structures/IMicroAgenticaConfig.js.map +1 -0
- package/lib/structures/IMicroAgenticaExecutor.d.ts +57 -0
- package/lib/structures/IMicroAgenticaExecutor.js +3 -0
- package/lib/structures/IMicroAgenticaExecutor.js.map +1 -0
- package/lib/structures/IMicroAgenticaProps.d.ts +63 -0
- package/lib/structures/IMicroAgenticaProps.js +3 -0
- package/lib/structures/IMicroAgenticaProps.js.map +1 -0
- package/lib/structures/IMicroAgenticaSystemPrompt.d.ts +66 -0
- package/lib/structures/IMicroAgenticaSystemPrompt.js +3 -0
- package/lib/structures/IMicroAgenticaSystemPrompt.js.map +1 -0
- package/lib/transformers/AgenticaPromptTransformer.d.ts +19 -19
- package/lib/transformers/AgenticaPromptTransformer.js +27 -27
- package/lib/transformers/AgenticaPromptTransformer.js.map +1 -1
- package/package.json +7 -7
- package/src/Agentica.ts +36 -36
- package/src/MicroAgentica.ts +337 -0
- package/src/constants/AgenticaDefaultPrompt.ts +4 -2
- package/src/context/AgenticaCancelPrompt.ts +3 -3
- package/src/context/AgenticaContext.ts +12 -12
- package/src/context/AgenticaOperationCollection.ts +1 -1
- package/src/context/MicroAgenticaContext.ts +95 -0
- package/src/context/internal/AgenticaOperationComposer.ts +6 -3
- package/src/context/internal/isAgenticaContext.ts +13 -0
- package/src/events/AgenticaDescribeEvent.ts +4 -4
- package/src/events/AgenticaEvent.ts +6 -0
- package/src/events/AgenticaExecuteEvent.ts +5 -5
- package/src/events/AgenticaSelectEvent.ts +2 -2
- package/src/events/AgenticaTextEvent.ts +2 -2
- package/src/events/MicroAgenticaEvent.ts +41 -0
- package/src/factory/events.ts +8 -8
- package/src/factory/{prompts.ts → histories.ts} +18 -18
- package/src/factory/index.ts +1 -1
- package/src/histories/AgenticaCancelHistory.ts +13 -0
- package/src/histories/AgenticaDescribeHistory.ts +22 -0
- package/src/{prompts/AgenticaExecutePrompt.ts → histories/AgenticaExecuteHistory.ts} +7 -7
- package/src/histories/AgenticaHistory.ts +25 -0
- package/src/{prompts/AgenticaPromptBase.ts → histories/AgenticaHistoryBase.ts} +4 -4
- package/src/histories/AgenticaSelectHistory.ts +13 -0
- package/src/histories/AgenticaTextHistory.ts +10 -0
- package/src/histories/MicroAgenticaHistory.ts +18 -0
- package/src/index.ts +18 -15
- package/src/json/IAgenticaEventJson.ts +6 -5
- package/src/json/{IAgenticaPromptJson.ts → IAgenticaHistoryJson.ts} +13 -13
- package/src/json/IAgenticaOperationSelectionJson.ts +8 -1
- package/src/json/IMicroAgenticaEventJson.ts +21 -0
- package/src/json/IMicroAgenticaHistoryJson.ts +23 -0
- package/src/orchestrate/call.ts +91 -67
- package/src/orchestrate/cancel.ts +4 -4
- package/src/orchestrate/describe.ts +13 -9
- package/src/orchestrate/execute.ts +7 -7
- package/src/orchestrate/initialize.ts +8 -8
- package/src/orchestrate/internal/selectFunction.ts +5 -2
- package/src/orchestrate/select.ts +13 -13
- package/src/structures/IAgenticaConfig.ts +6 -5
- package/src/structures/IAgenticaController.ts +1 -1
- package/src/structures/IAgenticaExecutor.ts +12 -10
- package/src/structures/IAgenticaProps.ts +3 -3
- package/src/structures/IAgenticaSystemPrompt.ts +13 -13
- package/src/structures/IAgenticaVendor.ts +1 -1
- package/src/structures/IMicroAgenticaConfig.ts +82 -0
- package/src/structures/IMicroAgenticaExecutor.ts +63 -0
- package/src/structures/IMicroAgenticaProps.ts +70 -0
- package/src/structures/IMicroAgenticaSystemPrompt.ts +71 -0
- package/src/transformers/AgenticaPromptTransformer.ts +46 -46
- package/lib/factory/prompts.d.ts +0 -33
- package/lib/factory/prompts.js.map +0 -1
- package/lib/json/IAgenticaPromptJson.js.map +0 -1
- package/lib/prompts/AgenticaCancelPrompt.d.ts +0 -8
- package/lib/prompts/AgenticaCancelPrompt.js.map +0 -1
- package/lib/prompts/AgenticaDescribePrompt.d.ts +0 -16
- package/lib/prompts/AgenticaDescribePrompt.js.map +0 -1
- package/lib/prompts/AgenticaExecutePrompt.js.map +0 -1
- package/lib/prompts/AgenticaPrompt.d.ts +0 -17
- package/lib/prompts/AgenticaPrompt.js.map +0 -1
- package/lib/prompts/AgenticaPromptBase.js.map +0 -1
- package/lib/prompts/AgenticaSelectPrompt.d.ts +0 -8
- package/lib/prompts/AgenticaSelectPrompt.js +0 -3
- package/lib/prompts/AgenticaSelectPrompt.js.map +0 -1
- package/lib/prompts/AgenticaTextPrompt.d.ts +0 -6
- package/lib/prompts/AgenticaTextPrompt.js.map +0 -1
- package/src/prompts/AgenticaCancelPrompt.ts +0 -13
- package/src/prompts/AgenticaDescribePrompt.ts +0 -22
- package/src/prompts/AgenticaPrompt.ts +0 -25
- package/src/prompts/AgenticaSelectPrompt.ts +0 -13
- package/src/prompts/AgenticaTextPrompt.ts +0 -10
|
@@ -66,12 +66,12 @@ function assertHttpLlmApplication(props) {
|
|
|
66
66
|
if (undefined === value)
|
|
67
67
|
return true;
|
|
68
68
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu0(value);
|
|
69
|
-
}); 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 || "boolean" === typeof input.exclusiveMinimum) && (undefined === 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 || "boolean" === typeof input.exclusiveMinimum) && (undefined === 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 => {
|
|
69
|
+
}); 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 => {
|
|
70
70
|
const value = input[key];
|
|
71
71
|
if (undefined === value)
|
|
72
72
|
return true;
|
|
73
73
|
return "object" === typeof value && null !== value && _iu9(value);
|
|
74
|
-
}); 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 || "boolean" === typeof input.exclusiveMinimum) && (undefined === 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 || "boolean" === typeof input.exclusiveMinimum) && (undefined === 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 => {
|
|
74
|
+
}); 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 => {
|
|
75
75
|
const value = input[key];
|
|
76
76
|
if (undefined === value)
|
|
77
77
|
return true;
|
|
@@ -111,12 +111,12 @@ function assertHttpLlmApplication(props) {
|
|
|
111
111
|
if (undefined === value)
|
|
112
112
|
return true;
|
|
113
113
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu3(value);
|
|
114
|
-
}); 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.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io58 = input => Object.keys(input).every(key => {
|
|
114
|
+
}); 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 => {
|
|
115
115
|
const value = input[key];
|
|
116
116
|
if (undefined === value)
|
|
117
117
|
return true;
|
|
118
118
|
return true;
|
|
119
|
-
}); 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 || "boolean" === typeof input.exclusiveMinimum) && (undefined === 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.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 || "boolean" === typeof input.exclusiveMinimum) && (undefined === 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.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.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.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.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io64 = 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 _io65 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu3(elem)) && (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 _io66 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu3(elem)) && (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 _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)) && (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 _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.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.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io71 = input => Object.keys(input).every(key => {
|
|
119
|
+
}); 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 => {
|
|
120
120
|
const value = input[key];
|
|
121
121
|
if (undefined === value)
|
|
122
122
|
return true;
|
|
@@ -131,12 +131,12 @@ function assertHttpLlmApplication(props) {
|
|
|
131
131
|
if (undefined === value)
|
|
132
132
|
return true;
|
|
133
133
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu12(value);
|
|
134
|
-
}); 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) && (undefined === input.
|
|
134
|
+
}); 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 => {
|
|
135
135
|
const value = input[key];
|
|
136
136
|
if (undefined === value)
|
|
137
137
|
return true;
|
|
138
138
|
return "object" === typeof value && null !== value && _iu13(value);
|
|
139
|
-
}); 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) && (undefined === input.
|
|
139
|
+
}); 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 => {
|
|
140
140
|
const value = input[key];
|
|
141
141
|
if (undefined === value)
|
|
142
142
|
return true;
|
|
@@ -166,12 +166,12 @@ function assertHttpLlmApplication(props) {
|
|
|
166
166
|
if (undefined === value)
|
|
167
167
|
return true;
|
|
168
168
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io98(value);
|
|
169
|
-
}); 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.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.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io100(input.options)) && (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) && (undefined === input.
|
|
169
|
+
}); 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.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.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io100(input.options)) && (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 => {
|
|
170
170
|
const value = input[key];
|
|
171
171
|
if (undefined === value)
|
|
172
172
|
return true;
|
|
173
173
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu16(value);
|
|
174
|
-
}); const _io103 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/responses\/(.*)/).test(input.$ref) && (undefined === input.
|
|
174
|
+
}); 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 => {
|
|
175
175
|
const value = input[key];
|
|
176
176
|
if (undefined === value)
|
|
177
177
|
return true;
|
|
@@ -181,7 +181,7 @@ function assertHttpLlmApplication(props) {
|
|
|
181
181
|
if (undefined === value)
|
|
182
182
|
return true;
|
|
183
183
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu5(value);
|
|
184
|
-
}); const _io114 = 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) && (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.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) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && (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)) && (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 _io115 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable) && (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 _io116 = 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.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io117 = 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.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"]) && (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.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"] || "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.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.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.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) && (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.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io122 = 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 _io123 = input => "string" === typeof input.$recursiveRef && (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 _io124 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) && (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 _io125 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) && (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 _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)) && (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 _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.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.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io130 = input => Object.keys(input).every(key => {
|
|
184
|
+
}); const _io114 = 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.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) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && (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)) && (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 _io115 = 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 _io116 = 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 _io117 = 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 _io118 = 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 _io119 = 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 _io120 = 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 _io121 = 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 _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 => {
|
|
185
185
|
const value = input[key];
|
|
186
186
|
if (undefined === value)
|
|
187
187
|
return true;
|
|
@@ -191,12 +191,12 @@ function assertHttpLlmApplication(props) {
|
|
|
191
191
|
if (undefined === value)
|
|
192
192
|
return true;
|
|
193
193
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu17(value);
|
|
194
|
-
}); 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) && (undefined === input.
|
|
194
|
+
}); 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 => {
|
|
195
195
|
const value = input[key];
|
|
196
196
|
if (undefined === value)
|
|
197
197
|
return true;
|
|
198
198
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io141(value);
|
|
199
|
-
}); 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) && (undefined === input.
|
|
199
|
+
}); 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 => {
|
|
200
200
|
const value = input[key];
|
|
201
201
|
if (undefined === value)
|
|
202
202
|
return true;
|
|
@@ -206,7 +206,7 @@ function assertHttpLlmApplication(props) {
|
|
|
206
206
|
if (undefined === value)
|
|
207
207
|
return true;
|
|
208
208
|
return "object" === typeof value && null !== value && _iu20(value);
|
|
209
|
-
}); 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) && (undefined === input.
|
|
209
|
+
}); 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 => {
|
|
210
210
|
const value = input[key];
|
|
211
211
|
if (undefined === value)
|
|
212
212
|
return true;
|
|
@@ -241,7 +241,7 @@ function assertHttpLlmApplication(props) {
|
|
|
241
241
|
if (undefined === value)
|
|
242
242
|
return true;
|
|
243
243
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu22(value);
|
|
244
|
-
}); const _io164 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/pathItems\/(.*)/).test(input.$ref) && (undefined === input.
|
|
244
|
+
}); 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 => {
|
|
245
245
|
const value = input[key];
|
|
246
246
|
if (undefined === value)
|
|
247
247
|
return true;
|
|
@@ -251,7 +251,7 @@ function assertHttpLlmApplication(props) {
|
|
|
251
251
|
if (undefined === value)
|
|
252
252
|
return true;
|
|
253
253
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu7(value);
|
|
254
|
-
}); 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 || "boolean" === typeof input.exclusiveMinimum) && (undefined === 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.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 || "boolean" === typeof input.exclusiveMinimum) && (undefined === 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.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 => {
|
|
254
|
+
}); 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 => {
|
|
255
255
|
const value = input[key];
|
|
256
256
|
if (undefined === value)
|
|
257
257
|
return true;
|
|
@@ -633,7 +633,7 @@ function assertHttpLlmApplication(props) {
|
|
|
633
633
|
return _io48(input);
|
|
634
634
|
else if ("string" === typeof input.openapi && RegExp(/^3\.1\.[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.openapi))
|
|
635
635
|
return _io105(input);
|
|
636
|
-
else if (undefined !== input["x-samchon-emended"])
|
|
636
|
+
else if (undefined !== input["x-samchon-emended-v4"])
|
|
637
637
|
return _io166(input);
|
|
638
638
|
else
|
|
639
639
|
return false;
|
|
@@ -967,15 +967,15 @@ function assertHttpLlmApplication(props) {
|
|
|
967
967
|
path: _path + ".maximum",
|
|
968
968
|
expected: "((number & Type<\"int64\">) | undefined)",
|
|
969
969
|
value: input.maximum
|
|
970
|
-
}, _errorFactory)) && (undefined === input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
970
|
+
}, _errorFactory)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
971
971
|
method: "typia.assert",
|
|
972
972
|
path: _path + ".exclusiveMinimum",
|
|
973
|
-
expected: "(boolean | undefined)",
|
|
973
|
+
expected: "(boolean | number | undefined)",
|
|
974
974
|
value: input.exclusiveMinimum
|
|
975
|
-
}, _errorFactory)) && (undefined === input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
975
|
+
}, _errorFactory)) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
976
976
|
method: "typia.assert",
|
|
977
977
|
path: _path + ".exclusiveMaximum",
|
|
978
|
-
expected: "(boolean | undefined)",
|
|
978
|
+
expected: "(boolean | number | undefined)",
|
|
979
979
|
value: input.exclusiveMaximum
|
|
980
980
|
}, _errorFactory)) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
981
981
|
method: "typia.assert",
|
|
@@ -1052,15 +1052,15 @@ function assertHttpLlmApplication(props) {
|
|
|
1052
1052
|
path: _path + ".maximum",
|
|
1053
1053
|
expected: "(number | undefined)",
|
|
1054
1054
|
value: input.maximum
|
|
1055
|
-
}, _errorFactory)) && (undefined === input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1055
|
+
}, _errorFactory)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1056
1056
|
method: "typia.assert",
|
|
1057
1057
|
path: _path + ".exclusiveMinimum",
|
|
1058
|
-
expected: "(boolean | undefined)",
|
|
1058
|
+
expected: "(boolean | number | undefined)",
|
|
1059
1059
|
value: input.exclusiveMinimum
|
|
1060
|
-
}, _errorFactory)) && (undefined === input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1060
|
+
}, _errorFactory)) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1061
1061
|
method: "typia.assert",
|
|
1062
1062
|
path: _path + ".exclusiveMaximum",
|
|
1063
|
-
expected: "(boolean | undefined)",
|
|
1063
|
+
expected: "(boolean | number | undefined)",
|
|
1064
1064
|
value: input.exclusiveMaximum
|
|
1065
1065
|
}, _errorFactory)) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (0 < input.multipleOf || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1066
1066
|
method: "typia.assert",
|
|
@@ -1612,15 +1612,15 @@ function assertHttpLlmApplication(props) {
|
|
|
1612
1612
|
path: _path + ".maximum",
|
|
1613
1613
|
expected: "((number & Type<\"int64\">) | undefined)",
|
|
1614
1614
|
value: input.maximum
|
|
1615
|
-
}, _errorFactory)) && (undefined === input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1615
|
+
}, _errorFactory)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1616
1616
|
method: "typia.assert",
|
|
1617
1617
|
path: _path + ".exclusiveMinimum",
|
|
1618
|
-
expected: "(boolean | undefined)",
|
|
1618
|
+
expected: "(boolean | number | undefined)",
|
|
1619
1619
|
value: input.exclusiveMinimum
|
|
1620
|
-
}, _errorFactory)) && (undefined === input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1620
|
+
}, _errorFactory)) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1621
1621
|
method: "typia.assert",
|
|
1622
1622
|
path: _path + ".exclusiveMaximum",
|
|
1623
|
-
expected: "(boolean | undefined)",
|
|
1623
|
+
expected: "(boolean | number | undefined)",
|
|
1624
1624
|
value: input.exclusiveMaximum
|
|
1625
1625
|
}, _errorFactory)) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1626
1626
|
method: "typia.assert",
|
|
@@ -1707,15 +1707,15 @@ function assertHttpLlmApplication(props) {
|
|
|
1707
1707
|
path: _path + ".maximum",
|
|
1708
1708
|
expected: "(number | undefined)",
|
|
1709
1709
|
value: input.maximum
|
|
1710
|
-
}, _errorFactory)) && (undefined === input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1710
|
+
}, _errorFactory)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1711
1711
|
method: "typia.assert",
|
|
1712
1712
|
path: _path + ".exclusiveMinimum",
|
|
1713
|
-
expected: "(boolean | undefined)",
|
|
1713
|
+
expected: "(boolean | number | undefined)",
|
|
1714
1714
|
value: input.exclusiveMinimum
|
|
1715
|
-
}, _errorFactory)) && (undefined === input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1715
|
+
}, _errorFactory)) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1716
1716
|
method: "typia.assert",
|
|
1717
1717
|
path: _path + ".exclusiveMaximum",
|
|
1718
|
-
expected: "(boolean | undefined)",
|
|
1718
|
+
expected: "(boolean | number | undefined)",
|
|
1719
1719
|
value: input.exclusiveMaximum
|
|
1720
1720
|
}, _errorFactory)) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (0 < input.multipleOf || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1721
1721
|
method: "typia.assert",
|
|
@@ -3172,17 +3172,22 @@ function assertHttpLlmApplication(props) {
|
|
|
3172
3172
|
path: _path + ".deprecated",
|
|
3173
3173
|
expected: "(boolean | undefined)",
|
|
3174
3174
|
value: input.deprecated
|
|
3175
|
-
}, _errorFactory)) && true && (
|
|
3175
|
+
}, _errorFactory)) && true && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3176
3176
|
method: "typia.assert",
|
|
3177
3177
|
path: _path + ".examples",
|
|
3178
|
-
expected: "(Record<string, any> | undefined)",
|
|
3178
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3179
3179
|
value: input.examples
|
|
3180
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3180
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3181
3181
|
method: "typia.assert",
|
|
3182
3182
|
path: _path + ".examples",
|
|
3183
|
-
expected: "(Record<string, any> | undefined)",
|
|
3183
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3184
|
+
value: input.examples
|
|
3185
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3186
|
+
method: "typia.assert",
|
|
3187
|
+
path: _path + ".examples",
|
|
3188
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3184
3189
|
value: input.examples
|
|
3185
|
-
}, _errorFactory)); const _ao58 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
3190
|
+
}, _errorFactory))); const _ao58 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
3186
3191
|
const value = input[key];
|
|
3187
3192
|
if (undefined === value)
|
|
3188
3193
|
return true;
|
|
@@ -3237,15 +3242,15 @@ function assertHttpLlmApplication(props) {
|
|
|
3237
3242
|
path: _path + ".maximum",
|
|
3238
3243
|
expected: "((number & Type<\"int64\">) | undefined)",
|
|
3239
3244
|
value: input.maximum
|
|
3240
|
-
}, _errorFactory)) && (undefined === input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3245
|
+
}, _errorFactory)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3241
3246
|
method: "typia.assert",
|
|
3242
3247
|
path: _path + ".exclusiveMinimum",
|
|
3243
|
-
expected: "(boolean | undefined)",
|
|
3248
|
+
expected: "(boolean | number | undefined)",
|
|
3244
3249
|
value: input.exclusiveMinimum
|
|
3245
|
-
}, _errorFactory)) && (undefined === input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3250
|
+
}, _errorFactory)) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3246
3251
|
method: "typia.assert",
|
|
3247
3252
|
path: _path + ".exclusiveMaximum",
|
|
3248
|
-
expected: "(boolean | undefined)",
|
|
3253
|
+
expected: "(boolean | number | undefined)",
|
|
3249
3254
|
value: input.exclusiveMaximum
|
|
3250
3255
|
}, _errorFactory)) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3251
3256
|
method: "typia.assert",
|
|
@@ -3282,17 +3287,22 @@ function assertHttpLlmApplication(props) {
|
|
|
3282
3287
|
path: _path + ".deprecated",
|
|
3283
3288
|
expected: "(boolean | undefined)",
|
|
3284
3289
|
value: input.deprecated
|
|
3285
|
-
}, _errorFactory)) && true && (
|
|
3290
|
+
}, _errorFactory)) && true && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3286
3291
|
method: "typia.assert",
|
|
3287
3292
|
path: _path + ".examples",
|
|
3288
|
-
expected: "(Record<string, any> | undefined)",
|
|
3293
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3289
3294
|
value: input.examples
|
|
3290
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3295
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3291
3296
|
method: "typia.assert",
|
|
3292
3297
|
path: _path + ".examples",
|
|
3293
|
-
expected: "(Record<string, any> | undefined)",
|
|
3298
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3299
|
+
value: input.examples
|
|
3300
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3301
|
+
method: "typia.assert",
|
|
3302
|
+
path: _path + ".examples",
|
|
3303
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3294
3304
|
value: input.examples
|
|
3295
|
-
}, _errorFactory)); const _ao60 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3305
|
+
}, _errorFactory))); const _ao60 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3296
3306
|
method: "typia.assert",
|
|
3297
3307
|
path: _path + ".nullable",
|
|
3298
3308
|
expected: "(boolean | undefined)",
|
|
@@ -3327,15 +3337,15 @@ function assertHttpLlmApplication(props) {
|
|
|
3327
3337
|
path: _path + ".maximum",
|
|
3328
3338
|
expected: "(number | undefined)",
|
|
3329
3339
|
value: input.maximum
|
|
3330
|
-
}, _errorFactory)) && (undefined === input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3340
|
+
}, _errorFactory)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3331
3341
|
method: "typia.assert",
|
|
3332
3342
|
path: _path + ".exclusiveMinimum",
|
|
3333
|
-
expected: "(boolean | undefined)",
|
|
3343
|
+
expected: "(boolean | number | undefined)",
|
|
3334
3344
|
value: input.exclusiveMinimum
|
|
3335
|
-
}, _errorFactory)) && (undefined === input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3345
|
+
}, _errorFactory)) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3336
3346
|
method: "typia.assert",
|
|
3337
3347
|
path: _path + ".exclusiveMaximum",
|
|
3338
|
-
expected: "(boolean | undefined)",
|
|
3348
|
+
expected: "(boolean | number | undefined)",
|
|
3339
3349
|
value: input.exclusiveMaximum
|
|
3340
3350
|
}, _errorFactory)) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (0 < input.multipleOf || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3341
3351
|
method: "typia.assert",
|
|
@@ -3367,17 +3377,22 @@ function assertHttpLlmApplication(props) {
|
|
|
3367
3377
|
path: _path + ".deprecated",
|
|
3368
3378
|
expected: "(boolean | undefined)",
|
|
3369
3379
|
value: input.deprecated
|
|
3370
|
-
}, _errorFactory)) && true && (
|
|
3380
|
+
}, _errorFactory)) && true && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3371
3381
|
method: "typia.assert",
|
|
3372
3382
|
path: _path + ".examples",
|
|
3373
|
-
expected: "(Record<string, any> | undefined)",
|
|
3383
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3374
3384
|
value: input.examples
|
|
3375
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3385
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3376
3386
|
method: "typia.assert",
|
|
3377
3387
|
path: _path + ".examples",
|
|
3378
|
-
expected: "(Record<string, any> | undefined)",
|
|
3388
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3379
3389
|
value: input.examples
|
|
3380
|
-
}, _errorFactory))
|
|
3390
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3391
|
+
method: "typia.assert",
|
|
3392
|
+
path: _path + ".examples",
|
|
3393
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3394
|
+
value: input.examples
|
|
3395
|
+
}, _errorFactory))); const _ao61 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3381
3396
|
method: "typia.assert",
|
|
3382
3397
|
path: _path + ".nullable",
|
|
3383
3398
|
expected: "(boolean | undefined)",
|
|
@@ -3452,17 +3467,22 @@ function assertHttpLlmApplication(props) {
|
|
|
3452
3467
|
path: _path + ".deprecated",
|
|
3453
3468
|
expected: "(boolean | undefined)",
|
|
3454
3469
|
value: input.deprecated
|
|
3455
|
-
}, _errorFactory)) && true && (
|
|
3470
|
+
}, _errorFactory)) && true && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3456
3471
|
method: "typia.assert",
|
|
3457
3472
|
path: _path + ".examples",
|
|
3458
|
-
expected: "(Record<string, any> | undefined)",
|
|
3473
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3459
3474
|
value: input.examples
|
|
3460
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3475
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3461
3476
|
method: "typia.assert",
|
|
3462
3477
|
path: _path + ".examples",
|
|
3463
|
-
expected: "(Record<string, any> | undefined)",
|
|
3478
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3464
3479
|
value: input.examples
|
|
3465
|
-
}, _errorFactory))
|
|
3480
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3481
|
+
method: "typia.assert",
|
|
3482
|
+
path: _path + ".examples",
|
|
3483
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3484
|
+
value: input.examples
|
|
3485
|
+
}, _errorFactory))); const _ao62 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3466
3486
|
method: "typia.assert",
|
|
3467
3487
|
path: _path + ".nullable",
|
|
3468
3488
|
expected: "(boolean | undefined)",
|
|
@@ -3522,17 +3542,22 @@ function assertHttpLlmApplication(props) {
|
|
|
3522
3542
|
path: _path + ".deprecated",
|
|
3523
3543
|
expected: "(boolean | undefined)",
|
|
3524
3544
|
value: input.deprecated
|
|
3525
|
-
}, _errorFactory)) && true && (
|
|
3545
|
+
}, _errorFactory)) && true && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3526
3546
|
method: "typia.assert",
|
|
3527
3547
|
path: _path + ".examples",
|
|
3528
|
-
expected: "(Record<string, any> | undefined)",
|
|
3548
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3529
3549
|
value: input.examples
|
|
3530
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3550
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3531
3551
|
method: "typia.assert",
|
|
3532
3552
|
path: _path + ".examples",
|
|
3533
|
-
expected: "(Record<string, any> | undefined)",
|
|
3553
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3534
3554
|
value: input.examples
|
|
3535
|
-
}, _errorFactory))
|
|
3555
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3556
|
+
method: "typia.assert",
|
|
3557
|
+
path: _path + ".examples",
|
|
3558
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3559
|
+
value: input.examples
|
|
3560
|
+
}, _errorFactory))); const _ao63 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3536
3561
|
method: "typia.assert",
|
|
3537
3562
|
path: _path + ".nullable",
|
|
3538
3563
|
expected: "(boolean | undefined)",
|
|
@@ -3607,22 +3632,42 @@ function assertHttpLlmApplication(props) {
|
|
|
3607
3632
|
path: _path + ".deprecated",
|
|
3608
3633
|
expected: "(boolean | undefined)",
|
|
3609
3634
|
value: input.deprecated
|
|
3610
|
-
}, _errorFactory)) && true && (
|
|
3635
|
+
}, _errorFactory)) && true && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3611
3636
|
method: "typia.assert",
|
|
3612
3637
|
path: _path + ".examples",
|
|
3613
|
-
expected: "(Record<string, any> | undefined)",
|
|
3638
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3614
3639
|
value: input.examples
|
|
3615
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3640
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3616
3641
|
method: "typia.assert",
|
|
3617
3642
|
path: _path + ".examples",
|
|
3618
|
-
expected: "(Record<string, any> | undefined)",
|
|
3643
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3619
3644
|
value: input.examples
|
|
3620
|
-
}, _errorFactory))
|
|
3645
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3646
|
+
method: "typia.assert",
|
|
3647
|
+
path: _path + ".examples",
|
|
3648
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3649
|
+
value: input.examples
|
|
3650
|
+
}, _errorFactory))); const _ao64 = (input, _path, _exceptionable = true) => ("string" === typeof input.$ref || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3621
3651
|
method: "typia.assert",
|
|
3622
3652
|
path: _path + ".$ref",
|
|
3623
3653
|
expected: "string",
|
|
3624
3654
|
value: input.$ref
|
|
3625
|
-
}, _errorFactory)) && (
|
|
3655
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3656
|
+
method: "typia.assert",
|
|
3657
|
+
path: _path + ".examples",
|
|
3658
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3659
|
+
value: input.examples
|
|
3660
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3661
|
+
method: "typia.assert",
|
|
3662
|
+
path: _path + ".examples",
|
|
3663
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3664
|
+
value: input.examples
|
|
3665
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3666
|
+
method: "typia.assert",
|
|
3667
|
+
path: _path + ".examples",
|
|
3668
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3669
|
+
value: input.examples
|
|
3670
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3626
3671
|
method: "typia.assert",
|
|
3627
3672
|
path: _path + ".title",
|
|
3628
3673
|
expected: "(string | undefined)",
|
|
@@ -3637,17 +3682,7 @@ function assertHttpLlmApplication(props) {
|
|
|
3637
3682
|
path: _path + ".deprecated",
|
|
3638
3683
|
expected: "(boolean | undefined)",
|
|
3639
3684
|
value: input.deprecated
|
|
3640
|
-
}, _errorFactory)) && true
|
|
3641
|
-
method: "typia.assert",
|
|
3642
|
-
path: _path + ".examples",
|
|
3643
|
-
expected: "(Record<string, any> | undefined)",
|
|
3644
|
-
value: input.examples
|
|
3645
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3646
|
-
method: "typia.assert",
|
|
3647
|
-
path: _path + ".examples",
|
|
3648
|
-
expected: "(Record<string, any> | undefined)",
|
|
3649
|
-
value: input.examples
|
|
3650
|
-
}, _errorFactory)); const _ao65 = (input, _path, _exceptionable = true) => ((Array.isArray(input.allOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3685
|
+
}, _errorFactory)) && true; const _ao65 = (input, _path, _exceptionable = true) => ((Array.isArray(input.allOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3651
3686
|
method: "typia.assert",
|
|
3652
3687
|
path: _path + ".allOf",
|
|
3653
3688
|
expected: "Array<OpenApiV3.IJsonSchema>",
|
|
@@ -3667,7 +3702,22 @@ function assertHttpLlmApplication(props) {
|
|
|
3667
3702
|
path: _path + ".allOf",
|
|
3668
3703
|
expected: "Array<OpenApiV3.IJsonSchema>",
|
|
3669
3704
|
value: input.allOf
|
|
3670
|
-
}, _errorFactory)) && (
|
|
3705
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3706
|
+
method: "typia.assert",
|
|
3707
|
+
path: _path + ".examples",
|
|
3708
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3709
|
+
value: input.examples
|
|
3710
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3711
|
+
method: "typia.assert",
|
|
3712
|
+
path: _path + ".examples",
|
|
3713
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3714
|
+
value: input.examples
|
|
3715
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3716
|
+
method: "typia.assert",
|
|
3717
|
+
path: _path + ".examples",
|
|
3718
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3719
|
+
value: input.examples
|
|
3720
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3671
3721
|
method: "typia.assert",
|
|
3672
3722
|
path: _path + ".title",
|
|
3673
3723
|
expected: "(string | undefined)",
|
|
@@ -3682,17 +3732,7 @@ function assertHttpLlmApplication(props) {
|
|
|
3682
3732
|
path: _path + ".deprecated",
|
|
3683
3733
|
expected: "(boolean | undefined)",
|
|
3684
3734
|
value: input.deprecated
|
|
3685
|
-
}, _errorFactory)) && true
|
|
3686
|
-
method: "typia.assert",
|
|
3687
|
-
path: _path + ".examples",
|
|
3688
|
-
expected: "(Record<string, any> | undefined)",
|
|
3689
|
-
value: input.examples
|
|
3690
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3691
|
-
method: "typia.assert",
|
|
3692
|
-
path: _path + ".examples",
|
|
3693
|
-
expected: "(Record<string, any> | undefined)",
|
|
3694
|
-
value: input.examples
|
|
3695
|
-
}, _errorFactory)); const _ao66 = (input, _path, _exceptionable = true) => ((Array.isArray(input.anyOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3735
|
+
}, _errorFactory)) && true; const _ao66 = (input, _path, _exceptionable = true) => ((Array.isArray(input.anyOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3696
3736
|
method: "typia.assert",
|
|
3697
3737
|
path: _path + ".anyOf",
|
|
3698
3738
|
expected: "Array<OpenApiV3.IJsonSchema>",
|
|
@@ -3712,7 +3752,22 @@ function assertHttpLlmApplication(props) {
|
|
|
3712
3752
|
path: _path + ".anyOf",
|
|
3713
3753
|
expected: "Array<OpenApiV3.IJsonSchema>",
|
|
3714
3754
|
value: input.anyOf
|
|
3715
|
-
}, _errorFactory)) && (
|
|
3755
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3756
|
+
method: "typia.assert",
|
|
3757
|
+
path: _path + ".examples",
|
|
3758
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3759
|
+
value: input.examples
|
|
3760
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3761
|
+
method: "typia.assert",
|
|
3762
|
+
path: _path + ".examples",
|
|
3763
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3764
|
+
value: input.examples
|
|
3765
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3766
|
+
method: "typia.assert",
|
|
3767
|
+
path: _path + ".examples",
|
|
3768
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3769
|
+
value: input.examples
|
|
3770
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3716
3771
|
method: "typia.assert",
|
|
3717
3772
|
path: _path + ".title",
|
|
3718
3773
|
expected: "(string | undefined)",
|
|
@@ -3727,17 +3782,7 @@ function assertHttpLlmApplication(props) {
|
|
|
3727
3782
|
path: _path + ".deprecated",
|
|
3728
3783
|
expected: "(boolean | undefined)",
|
|
3729
3784
|
value: input.deprecated
|
|
3730
|
-
}, _errorFactory)) && true
|
|
3731
|
-
method: "typia.assert",
|
|
3732
|
-
path: _path + ".examples",
|
|
3733
|
-
expected: "(Record<string, any> | undefined)",
|
|
3734
|
-
value: input.examples
|
|
3735
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3736
|
-
method: "typia.assert",
|
|
3737
|
-
path: _path + ".examples",
|
|
3738
|
-
expected: "(Record<string, any> | undefined)",
|
|
3739
|
-
value: input.examples
|
|
3740
|
-
}, _errorFactory)); const _ao67 = (input, _path, _exceptionable = true) => ((Array.isArray(input.oneOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3785
|
+
}, _errorFactory)) && true; const _ao67 = (input, _path, _exceptionable = true) => ((Array.isArray(input.oneOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3741
3786
|
method: "typia.assert",
|
|
3742
3787
|
path: _path + ".oneOf",
|
|
3743
3788
|
expected: "Array<OpenApiV3.IJsonSchema>",
|
|
@@ -3767,7 +3812,22 @@ function assertHttpLlmApplication(props) {
|
|
|
3767
3812
|
path: _path + ".discriminator",
|
|
3768
3813
|
expected: "(OpenApiV3.IJsonSchema.IOneOf.IDiscriminator | undefined)",
|
|
3769
3814
|
value: input.discriminator
|
|
3770
|
-
}, _errorFactory)) && (
|
|
3815
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3816
|
+
method: "typia.assert",
|
|
3817
|
+
path: _path + ".examples",
|
|
3818
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3819
|
+
value: input.examples
|
|
3820
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3821
|
+
method: "typia.assert",
|
|
3822
|
+
path: _path + ".examples",
|
|
3823
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3824
|
+
value: input.examples
|
|
3825
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3826
|
+
method: "typia.assert",
|
|
3827
|
+
path: _path + ".examples",
|
|
3828
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3829
|
+
value: input.examples
|
|
3830
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3771
3831
|
method: "typia.assert",
|
|
3772
3832
|
path: _path + ".title",
|
|
3773
3833
|
expected: "(string | undefined)",
|
|
@@ -3782,17 +3842,7 @@ function assertHttpLlmApplication(props) {
|
|
|
3782
3842
|
path: _path + ".deprecated",
|
|
3783
3843
|
expected: "(boolean | undefined)",
|
|
3784
3844
|
value: input.deprecated
|
|
3785
|
-
}, _errorFactory)) && true
|
|
3786
|
-
method: "typia.assert",
|
|
3787
|
-
path: _path + ".examples",
|
|
3788
|
-
expected: "(Record<string, any> | undefined)",
|
|
3789
|
-
value: input.examples
|
|
3790
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3791
|
-
method: "typia.assert",
|
|
3792
|
-
path: _path + ".examples",
|
|
3793
|
-
expected: "(Record<string, any> | undefined)",
|
|
3794
|
-
value: input.examples
|
|
3795
|
-
}, _errorFactory)); const _ao68 = (input, _path, _exceptionable = true) => ("string" === typeof input.propertyName || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3845
|
+
}, _errorFactory)) && true; const _ao68 = (input, _path, _exceptionable = true) => ("string" === typeof input.propertyName || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3796
3846
|
method: "typia.assert",
|
|
3797
3847
|
path: _path + ".propertyName",
|
|
3798
3848
|
expected: "string",
|
|
@@ -3832,17 +3882,22 @@ function assertHttpLlmApplication(props) {
|
|
|
3832
3882
|
path: _path + ".deprecated",
|
|
3833
3883
|
expected: "(boolean | undefined)",
|
|
3834
3884
|
value: input.deprecated
|
|
3835
|
-
}, _errorFactory)) && true && (
|
|
3885
|
+
}, _errorFactory)) && true && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3836
3886
|
method: "typia.assert",
|
|
3837
3887
|
path: _path + ".examples",
|
|
3838
|
-
expected: "(Record<string, any> | undefined)",
|
|
3888
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3839
3889
|
value: input.examples
|
|
3840
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3890
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3841
3891
|
method: "typia.assert",
|
|
3842
3892
|
path: _path + ".examples",
|
|
3843
|
-
expected: "(Record<string, any> | undefined)",
|
|
3893
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3844
3894
|
value: input.examples
|
|
3845
|
-
}, _errorFactory))
|
|
3895
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3896
|
+
method: "typia.assert",
|
|
3897
|
+
path: _path + ".examples",
|
|
3898
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3899
|
+
value: input.examples
|
|
3900
|
+
}, _errorFactory))); const _ao70 = (input, _path, _exceptionable = true) => true && ((null !== input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3846
3901
|
method: "typia.assert",
|
|
3847
3902
|
path: _path + ".type",
|
|
3848
3903
|
expected: "undefined",
|
|
@@ -3867,17 +3922,22 @@ function assertHttpLlmApplication(props) {
|
|
|
3867
3922
|
path: _path + ".deprecated",
|
|
3868
3923
|
expected: "(boolean | undefined)",
|
|
3869
3924
|
value: input.deprecated
|
|
3870
|
-
}, _errorFactory)) && true && (
|
|
3925
|
+
}, _errorFactory)) && true && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3871
3926
|
method: "typia.assert",
|
|
3872
3927
|
path: _path + ".examples",
|
|
3873
|
-
expected: "(Record<string, any> | undefined)",
|
|
3928
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3874
3929
|
value: input.examples
|
|
3875
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3930
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3876
3931
|
method: "typia.assert",
|
|
3877
3932
|
path: _path + ".examples",
|
|
3878
|
-
expected: "(Record<string, any> | undefined)",
|
|
3933
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3879
3934
|
value: input.examples
|
|
3880
|
-
}, _errorFactory))
|
|
3935
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3936
|
+
method: "typia.assert",
|
|
3937
|
+
path: _path + ".examples",
|
|
3938
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3939
|
+
value: input.examples
|
|
3940
|
+
}, _errorFactory))); const _ao71 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
3881
3941
|
const value = input[key];
|
|
3882
3942
|
if (undefined === value)
|
|
3883
3943
|
return true;
|
|
@@ -3987,7 +4047,22 @@ function assertHttpLlmApplication(props) {
|
|
|
3987
4047
|
path: _path + ".$ref",
|
|
3988
4048
|
expected: "`#/components/examples/${string}`",
|
|
3989
4049
|
value: input.$ref
|
|
3990
|
-
}, _errorFactory)) && (
|
|
4050
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4051
|
+
method: "typia.assert",
|
|
4052
|
+
path: _path + ".examples",
|
|
4053
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4054
|
+
value: input.examples
|
|
4055
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4056
|
+
method: "typia.assert",
|
|
4057
|
+
path: _path + ".examples",
|
|
4058
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4059
|
+
value: input.examples
|
|
4060
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4061
|
+
method: "typia.assert",
|
|
4062
|
+
path: _path + ".examples",
|
|
4063
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4064
|
+
value: input.examples
|
|
4065
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3991
4066
|
method: "typia.assert",
|
|
3992
4067
|
path: _path + ".title",
|
|
3993
4068
|
expected: "(string | undefined)",
|
|
@@ -4002,17 +4077,7 @@ function assertHttpLlmApplication(props) {
|
|
|
4002
4077
|
path: _path + ".deprecated",
|
|
4003
4078
|
expected: "(boolean | undefined)",
|
|
4004
4079
|
value: input.deprecated
|
|
4005
|
-
}, _errorFactory)) && true
|
|
4006
|
-
method: "typia.assert",
|
|
4007
|
-
path: _path + ".examples",
|
|
4008
|
-
expected: "(Record<string, any> | undefined)",
|
|
4009
|
-
value: input.examples
|
|
4010
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4011
|
-
method: "typia.assert",
|
|
4012
|
-
path: _path + ".examples",
|
|
4013
|
-
expected: "(Record<string, any> | undefined)",
|
|
4014
|
-
value: input.examples
|
|
4015
|
-
}, _errorFactory)); const _ao78 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
4080
|
+
}, _errorFactory)) && true; const _ao78 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
4016
4081
|
const value = input[key];
|
|
4017
4082
|
if (undefined === value)
|
|
4018
4083
|
return true;
|
|
@@ -4067,7 +4132,22 @@ function assertHttpLlmApplication(props) {
|
|
|
4067
4132
|
path: _path + ".$ref",
|
|
4068
4133
|
expected: "`#/components/headers/${string}`",
|
|
4069
4134
|
value: input.$ref
|
|
4070
|
-
}, _errorFactory)) && (
|
|
4135
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4136
|
+
method: "typia.assert",
|
|
4137
|
+
path: _path + ".examples",
|
|
4138
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4139
|
+
value: input.examples
|
|
4140
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4141
|
+
method: "typia.assert",
|
|
4142
|
+
path: _path + ".examples",
|
|
4143
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4144
|
+
value: input.examples
|
|
4145
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4146
|
+
method: "typia.assert",
|
|
4147
|
+
path: _path + ".examples",
|
|
4148
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4149
|
+
value: input.examples
|
|
4150
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4071
4151
|
method: "typia.assert",
|
|
4072
4152
|
path: _path + ".title",
|
|
4073
4153
|
expected: "(string | undefined)",
|
|
@@ -4082,17 +4162,7 @@ function assertHttpLlmApplication(props) {
|
|
|
4082
4162
|
path: _path + ".deprecated",
|
|
4083
4163
|
expected: "(boolean | undefined)",
|
|
4084
4164
|
value: input.deprecated
|
|
4085
|
-
}, _errorFactory)) && true
|
|
4086
|
-
method: "typia.assert",
|
|
4087
|
-
path: _path + ".examples",
|
|
4088
|
-
expected: "(Record<string, any> | undefined)",
|
|
4089
|
-
value: input.examples
|
|
4090
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4091
|
-
method: "typia.assert",
|
|
4092
|
-
path: _path + ".examples",
|
|
4093
|
-
expected: "(Record<string, any> | undefined)",
|
|
4094
|
-
value: input.examples
|
|
4095
|
-
}, _errorFactory)); const _ao81 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
4165
|
+
}, _errorFactory)) && true; const _ao81 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
4096
4166
|
const value = input[key];
|
|
4097
4167
|
if (undefined === value)
|
|
4098
4168
|
return true;
|
|
@@ -4572,7 +4642,22 @@ function assertHttpLlmApplication(props) {
|
|
|
4572
4642
|
path: _path + ".$ref",
|
|
4573
4643
|
expected: "`#/components/parameters/${string}`",
|
|
4574
4644
|
value: input.$ref
|
|
4575
|
-
}, _errorFactory)) && (
|
|
4645
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4646
|
+
method: "typia.assert",
|
|
4647
|
+
path: _path + ".examples",
|
|
4648
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4649
|
+
value: input.examples
|
|
4650
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4651
|
+
method: "typia.assert",
|
|
4652
|
+
path: _path + ".examples",
|
|
4653
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4654
|
+
value: input.examples
|
|
4655
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4656
|
+
method: "typia.assert",
|
|
4657
|
+
path: _path + ".examples",
|
|
4658
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4659
|
+
value: input.examples
|
|
4660
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4576
4661
|
method: "typia.assert",
|
|
4577
4662
|
path: _path + ".title",
|
|
4578
4663
|
expected: "(string | undefined)",
|
|
@@ -4587,17 +4672,7 @@ function assertHttpLlmApplication(props) {
|
|
|
4587
4672
|
path: _path + ".deprecated",
|
|
4588
4673
|
expected: "(boolean | undefined)",
|
|
4589
4674
|
value: input.deprecated
|
|
4590
|
-
}, _errorFactory)) && true
|
|
4591
|
-
method: "typia.assert",
|
|
4592
|
-
path: _path + ".examples",
|
|
4593
|
-
expected: "(Record<string, any> | undefined)",
|
|
4594
|
-
value: input.examples
|
|
4595
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4596
|
-
method: "typia.assert",
|
|
4597
|
-
path: _path + ".examples",
|
|
4598
|
-
expected: "(Record<string, any> | undefined)",
|
|
4599
|
-
value: input.examples
|
|
4600
|
-
}, _errorFactory)); const _ao100 = (input, _path, _exceptionable = true) => (undefined === input.operationId || "string" === typeof input.operationId || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4675
|
+
}, _errorFactory)) && true; const _ao100 = (input, _path, _exceptionable = true) => (undefined === input.operationId || "string" === typeof input.operationId || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4601
4676
|
method: "typia.assert",
|
|
4602
4677
|
path: _path + ".operationId",
|
|
4603
4678
|
expected: "(string | undefined)",
|
|
@@ -4717,9 +4792,24 @@ function assertHttpLlmApplication(props) {
|
|
|
4717
4792
|
path: _path + ".$ref",
|
|
4718
4793
|
expected: "`#/components/requestBodies/${string}`",
|
|
4719
4794
|
value: input.$ref
|
|
4720
|
-
}, _errorFactory)) && (
|
|
4795
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4721
4796
|
method: "typia.assert",
|
|
4722
|
-
path: _path + ".
|
|
4797
|
+
path: _path + ".examples",
|
|
4798
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4799
|
+
value: input.examples
|
|
4800
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4801
|
+
method: "typia.assert",
|
|
4802
|
+
path: _path + ".examples",
|
|
4803
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4804
|
+
value: input.examples
|
|
4805
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4806
|
+
method: "typia.assert",
|
|
4807
|
+
path: _path + ".examples",
|
|
4808
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4809
|
+
value: input.examples
|
|
4810
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4811
|
+
method: "typia.assert",
|
|
4812
|
+
path: _path + ".title",
|
|
4723
4813
|
expected: "(string | undefined)",
|
|
4724
4814
|
value: input.title
|
|
4725
4815
|
}, _errorFactory)) && (undefined === input.description || "string" === typeof input.description || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -4732,17 +4822,7 @@ function assertHttpLlmApplication(props) {
|
|
|
4732
4822
|
path: _path + ".deprecated",
|
|
4733
4823
|
expected: "(boolean | undefined)",
|
|
4734
4824
|
value: input.deprecated
|
|
4735
|
-
}, _errorFactory)) && true
|
|
4736
|
-
method: "typia.assert",
|
|
4737
|
-
path: _path + ".examples",
|
|
4738
|
-
expected: "(Record<string, any> | undefined)",
|
|
4739
|
-
value: input.examples
|
|
4740
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4741
|
-
method: "typia.assert",
|
|
4742
|
-
path: _path + ".examples",
|
|
4743
|
-
expected: "(Record<string, any> | undefined)",
|
|
4744
|
-
value: input.examples
|
|
4745
|
-
}, _errorFactory)); const _ao102 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
4825
|
+
}, _errorFactory)) && true; const _ao102 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
4746
4826
|
const value = input[key];
|
|
4747
4827
|
if (undefined === value)
|
|
4748
4828
|
return true;
|
|
@@ -4762,7 +4842,22 @@ function assertHttpLlmApplication(props) {
|
|
|
4762
4842
|
path: _path + ".$ref",
|
|
4763
4843
|
expected: "`#/components/responses/${string}`",
|
|
4764
4844
|
value: input.$ref
|
|
4765
|
-
}, _errorFactory)) && (
|
|
4845
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4846
|
+
method: "typia.assert",
|
|
4847
|
+
path: _path + ".examples",
|
|
4848
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4849
|
+
value: input.examples
|
|
4850
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4851
|
+
method: "typia.assert",
|
|
4852
|
+
path: _path + ".examples",
|
|
4853
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4854
|
+
value: input.examples
|
|
4855
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4856
|
+
method: "typia.assert",
|
|
4857
|
+
path: _path + ".examples",
|
|
4858
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4859
|
+
value: input.examples
|
|
4860
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4766
4861
|
method: "typia.assert",
|
|
4767
4862
|
path: _path + ".title",
|
|
4768
4863
|
expected: "(string | undefined)",
|
|
@@ -4777,17 +4872,7 @@ function assertHttpLlmApplication(props) {
|
|
|
4777
4872
|
path: _path + ".deprecated",
|
|
4778
4873
|
expected: "(boolean | undefined)",
|
|
4779
4874
|
value: input.deprecated
|
|
4780
|
-
}, _errorFactory)) && true
|
|
4781
|
-
method: "typia.assert",
|
|
4782
|
-
path: _path + ".examples",
|
|
4783
|
-
expected: "(Record<string, any> | undefined)",
|
|
4784
|
-
value: input.examples
|
|
4785
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4786
|
-
method: "typia.assert",
|
|
4787
|
-
path: _path + ".examples",
|
|
4788
|
-
expected: "(Record<string, any> | undefined)",
|
|
4789
|
-
value: input.examples
|
|
4790
|
-
}, _errorFactory)); const _ao104 = (input, _path, _exceptionable = true) => ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4875
|
+
}, _errorFactory)) && true; const _ao104 = (input, _path, _exceptionable = true) => ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4791
4876
|
method: "typia.assert",
|
|
4792
4877
|
path: _path + ".name",
|
|
4793
4878
|
expected: "string",
|
|
@@ -5172,7 +5257,22 @@ function assertHttpLlmApplication(props) {
|
|
|
5172
5257
|
path: _path + ".nullable",
|
|
5173
5258
|
expected: "(boolean | undefined)",
|
|
5174
5259
|
value: input.nullable
|
|
5175
|
-
}, _errorFactory)) && (
|
|
5260
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5261
|
+
method: "typia.assert",
|
|
5262
|
+
path: _path + ".examples",
|
|
5263
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5264
|
+
value: input.examples
|
|
5265
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5266
|
+
method: "typia.assert",
|
|
5267
|
+
path: _path + ".examples",
|
|
5268
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5269
|
+
value: input.examples
|
|
5270
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5271
|
+
method: "typia.assert",
|
|
5272
|
+
path: _path + ".examples",
|
|
5273
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5274
|
+
value: input.examples
|
|
5275
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5176
5276
|
method: "typia.assert",
|
|
5177
5277
|
path: _path + ".title",
|
|
5178
5278
|
expected: "(string | undefined)",
|
|
@@ -5187,17 +5287,7 @@ function assertHttpLlmApplication(props) {
|
|
|
5187
5287
|
path: _path + ".deprecated",
|
|
5188
5288
|
expected: "(boolean | undefined)",
|
|
5189
5289
|
value: input.deprecated
|
|
5190
|
-
}, _errorFactory)) && true && (undefined === input.
|
|
5191
|
-
method: "typia.assert",
|
|
5192
|
-
path: _path + ".examples",
|
|
5193
|
-
expected: "(Record<string, any> | undefined)",
|
|
5194
|
-
value: input.examples
|
|
5195
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5196
|
-
method: "typia.assert",
|
|
5197
|
-
path: _path + ".examples",
|
|
5198
|
-
expected: "(Record<string, any> | undefined)",
|
|
5199
|
-
value: input.examples
|
|
5200
|
-
}, _errorFactory)) && (undefined === input.minimum || "number" === typeof input.minimum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5290
|
+
}, _errorFactory)) && true && (undefined === input.minimum || "number" === typeof input.minimum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5201
5291
|
method: "typia.assert",
|
|
5202
5292
|
path: _path + ".minimum",
|
|
5203
5293
|
expected: "(number | undefined)",
|
|
@@ -5482,7 +5572,22 @@ function assertHttpLlmApplication(props) {
|
|
|
5482
5572
|
path: _path + ".nullable",
|
|
5483
5573
|
expected: "(boolean | undefined)",
|
|
5484
5574
|
value: input.nullable
|
|
5485
|
-
}, _errorFactory)) && (
|
|
5575
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5576
|
+
method: "typia.assert",
|
|
5577
|
+
path: _path + ".examples",
|
|
5578
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5579
|
+
value: input.examples
|
|
5580
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5581
|
+
method: "typia.assert",
|
|
5582
|
+
path: _path + ".examples",
|
|
5583
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5584
|
+
value: input.examples
|
|
5585
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5586
|
+
method: "typia.assert",
|
|
5587
|
+
path: _path + ".examples",
|
|
5588
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5589
|
+
value: input.examples
|
|
5590
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5486
5591
|
method: "typia.assert",
|
|
5487
5592
|
path: _path + ".title",
|
|
5488
5593
|
expected: "(string | undefined)",
|
|
@@ -5497,17 +5602,7 @@ function assertHttpLlmApplication(props) {
|
|
|
5497
5602
|
path: _path + ".deprecated",
|
|
5498
5603
|
expected: "(boolean | undefined)",
|
|
5499
5604
|
value: input.deprecated
|
|
5500
|
-
}, _errorFactory)) && true
|
|
5501
|
-
method: "typia.assert",
|
|
5502
|
-
path: _path + ".examples",
|
|
5503
|
-
expected: "(Record<string, any> | undefined)",
|
|
5504
|
-
value: input.examples
|
|
5505
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5506
|
-
method: "typia.assert",
|
|
5507
|
-
path: _path + ".examples",
|
|
5508
|
-
expected: "(Record<string, any> | undefined)",
|
|
5509
|
-
value: input.examples
|
|
5510
|
-
}, _errorFactory)); const _ao116 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5605
|
+
}, _errorFactory)) && true; const _ao116 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5511
5606
|
method: "typia.assert",
|
|
5512
5607
|
path: _path + ".nullable",
|
|
5513
5608
|
expected: "(boolean | undefined)",
|
|
@@ -5552,17 +5647,22 @@ function assertHttpLlmApplication(props) {
|
|
|
5552
5647
|
path: _path + ".deprecated",
|
|
5553
5648
|
expected: "(boolean | undefined)",
|
|
5554
5649
|
value: input.deprecated
|
|
5555
|
-
}, _errorFactory)) && true && (
|
|
5650
|
+
}, _errorFactory)) && true && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5556
5651
|
method: "typia.assert",
|
|
5557
5652
|
path: _path + ".examples",
|
|
5558
|
-
expected: "(Record<string, any> | undefined)",
|
|
5653
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5559
5654
|
value: input.examples
|
|
5560
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5655
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5561
5656
|
method: "typia.assert",
|
|
5562
5657
|
path: _path + ".examples",
|
|
5563
|
-
expected: "(Record<string, any> | undefined)",
|
|
5658
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5659
|
+
value: input.examples
|
|
5660
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5661
|
+
method: "typia.assert",
|
|
5662
|
+
path: _path + ".examples",
|
|
5663
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5564
5664
|
value: input.examples
|
|
5565
|
-
}, _errorFactory)); const _ao117 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5665
|
+
}, _errorFactory))); const _ao117 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5566
5666
|
method: "typia.assert",
|
|
5567
5667
|
path: _path + ".nullable",
|
|
5568
5668
|
expected: "(boolean | undefined)",
|
|
@@ -5667,17 +5767,22 @@ function assertHttpLlmApplication(props) {
|
|
|
5667
5767
|
path: _path + ".deprecated",
|
|
5668
5768
|
expected: "(boolean | undefined)",
|
|
5669
5769
|
value: input.deprecated
|
|
5670
|
-
}, _errorFactory)) && true && (
|
|
5770
|
+
}, _errorFactory)) && true && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5671
5771
|
method: "typia.assert",
|
|
5672
5772
|
path: _path + ".examples",
|
|
5673
|
-
expected: "(Record<string, any> | undefined)",
|
|
5773
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5674
5774
|
value: input.examples
|
|
5675
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5775
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5676
5776
|
method: "typia.assert",
|
|
5677
5777
|
path: _path + ".examples",
|
|
5678
|
-
expected: "(Record<string, any> | undefined)",
|
|
5778
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5779
|
+
value: input.examples
|
|
5780
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5781
|
+
method: "typia.assert",
|
|
5782
|
+
path: _path + ".examples",
|
|
5783
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5679
5784
|
value: input.examples
|
|
5680
|
-
}, _errorFactory)); const _ao118 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5785
|
+
}, _errorFactory))); const _ao118 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5681
5786
|
method: "typia.assert",
|
|
5682
5787
|
path: _path + ".nullable",
|
|
5683
5788
|
expected: "(boolean | undefined)",
|
|
@@ -5752,17 +5857,22 @@ function assertHttpLlmApplication(props) {
|
|
|
5752
5857
|
path: _path + ".deprecated",
|
|
5753
5858
|
expected: "(boolean | undefined)",
|
|
5754
5859
|
value: input.deprecated
|
|
5755
|
-
}, _errorFactory)) && true && (
|
|
5860
|
+
}, _errorFactory)) && true && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5756
5861
|
method: "typia.assert",
|
|
5757
5862
|
path: _path + ".examples",
|
|
5758
|
-
expected: "(Record<string, any> | undefined)",
|
|
5863
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5759
5864
|
value: input.examples
|
|
5760
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5865
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5761
5866
|
method: "typia.assert",
|
|
5762
5867
|
path: _path + ".examples",
|
|
5763
|
-
expected: "(Record<string, any> | undefined)",
|
|
5868
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5764
5869
|
value: input.examples
|
|
5765
|
-
}, _errorFactory))
|
|
5870
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5871
|
+
method: "typia.assert",
|
|
5872
|
+
path: _path + ".examples",
|
|
5873
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5874
|
+
value: input.examples
|
|
5875
|
+
}, _errorFactory))); const _ao119 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5766
5876
|
method: "typia.assert",
|
|
5767
5877
|
path: _path + ".nullable",
|
|
5768
5878
|
expected: "(boolean | undefined)",
|
|
@@ -5842,17 +5952,22 @@ function assertHttpLlmApplication(props) {
|
|
|
5842
5952
|
path: _path + ".deprecated",
|
|
5843
5953
|
expected: "(boolean | undefined)",
|
|
5844
5954
|
value: input.deprecated
|
|
5845
|
-
}, _errorFactory)) && true && (
|
|
5955
|
+
}, _errorFactory)) && true && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5846
5956
|
method: "typia.assert",
|
|
5847
5957
|
path: _path + ".examples",
|
|
5848
|
-
expected: "(Record<string, any> | undefined)",
|
|
5958
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5849
5959
|
value: input.examples
|
|
5850
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5960
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5851
5961
|
method: "typia.assert",
|
|
5852
5962
|
path: _path + ".examples",
|
|
5853
|
-
expected: "(Record<string, any> | undefined)",
|
|
5963
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5964
|
+
value: input.examples
|
|
5965
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5966
|
+
method: "typia.assert",
|
|
5967
|
+
path: _path + ".examples",
|
|
5968
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5854
5969
|
value: input.examples
|
|
5855
|
-
}, _errorFactory)); const _ao120 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5970
|
+
}, _errorFactory))); const _ao120 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5856
5971
|
method: "typia.assert",
|
|
5857
5972
|
path: _path + ".nullable",
|
|
5858
5973
|
expected: "(boolean | undefined)",
|
|
@@ -5962,17 +6077,22 @@ function assertHttpLlmApplication(props) {
|
|
|
5962
6077
|
path: _path + ".deprecated",
|
|
5963
6078
|
expected: "(boolean | undefined)",
|
|
5964
6079
|
value: input.deprecated
|
|
5965
|
-
}, _errorFactory)) && true && (
|
|
6080
|
+
}, _errorFactory)) && true && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5966
6081
|
method: "typia.assert",
|
|
5967
6082
|
path: _path + ".examples",
|
|
5968
|
-
expected: "(Record<string, any> | undefined)",
|
|
6083
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5969
6084
|
value: input.examples
|
|
5970
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6085
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5971
6086
|
method: "typia.assert",
|
|
5972
6087
|
path: _path + ".examples",
|
|
5973
|
-
expected: "(Record<string, any> | undefined)",
|
|
6088
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6089
|
+
value: input.examples
|
|
6090
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6091
|
+
method: "typia.assert",
|
|
6092
|
+
path: _path + ".examples",
|
|
6093
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5974
6094
|
value: input.examples
|
|
5975
|
-
}, _errorFactory)); const _ao121 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6095
|
+
}, _errorFactory))); const _ao121 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5976
6096
|
method: "typia.assert",
|
|
5977
6097
|
path: _path + ".nullable",
|
|
5978
6098
|
expected: "(boolean | undefined)",
|
|
@@ -6047,22 +6167,42 @@ function assertHttpLlmApplication(props) {
|
|
|
6047
6167
|
path: _path + ".deprecated",
|
|
6048
6168
|
expected: "(boolean | undefined)",
|
|
6049
6169
|
value: input.deprecated
|
|
6050
|
-
}, _errorFactory)) && true && (
|
|
6170
|
+
}, _errorFactory)) && true && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6051
6171
|
method: "typia.assert",
|
|
6052
6172
|
path: _path + ".examples",
|
|
6053
|
-
expected: "(Record<string, any> | undefined)",
|
|
6173
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6054
6174
|
value: input.examples
|
|
6055
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6175
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6056
6176
|
method: "typia.assert",
|
|
6057
6177
|
path: _path + ".examples",
|
|
6058
|
-
expected: "(Record<string, any> | undefined)",
|
|
6178
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6059
6179
|
value: input.examples
|
|
6060
|
-
}, _errorFactory))
|
|
6180
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6181
|
+
method: "typia.assert",
|
|
6182
|
+
path: _path + ".examples",
|
|
6183
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6184
|
+
value: input.examples
|
|
6185
|
+
}, _errorFactory))); const _ao122 = (input, _path, _exceptionable = true) => ("string" === typeof input.$ref || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6061
6186
|
method: "typia.assert",
|
|
6062
6187
|
path: _path + ".$ref",
|
|
6063
6188
|
expected: "string",
|
|
6064
6189
|
value: input.$ref
|
|
6065
|
-
}, _errorFactory)) && (
|
|
6190
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6191
|
+
method: "typia.assert",
|
|
6192
|
+
path: _path + ".examples",
|
|
6193
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6194
|
+
value: input.examples
|
|
6195
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6196
|
+
method: "typia.assert",
|
|
6197
|
+
path: _path + ".examples",
|
|
6198
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6199
|
+
value: input.examples
|
|
6200
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6201
|
+
method: "typia.assert",
|
|
6202
|
+
path: _path + ".examples",
|
|
6203
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6204
|
+
value: input.examples
|
|
6205
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6066
6206
|
method: "typia.assert",
|
|
6067
6207
|
path: _path + ".title",
|
|
6068
6208
|
expected: "(string | undefined)",
|
|
@@ -6077,22 +6217,27 @@ function assertHttpLlmApplication(props) {
|
|
|
6077
6217
|
path: _path + ".deprecated",
|
|
6078
6218
|
expected: "(boolean | undefined)",
|
|
6079
6219
|
value: input.deprecated
|
|
6080
|
-
}, _errorFactory)) && true
|
|
6220
|
+
}, _errorFactory)) && true; const _ao123 = (input, _path, _exceptionable = true) => ("string" === typeof input.$recursiveRef || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6221
|
+
method: "typia.assert",
|
|
6222
|
+
path: _path + ".$recursiveRef",
|
|
6223
|
+
expected: "string",
|
|
6224
|
+
value: input.$recursiveRef
|
|
6225
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6081
6226
|
method: "typia.assert",
|
|
6082
6227
|
path: _path + ".examples",
|
|
6083
|
-
expected: "(Record<string, any> | undefined)",
|
|
6228
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6084
6229
|
value: input.examples
|
|
6085
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6230
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6086
6231
|
method: "typia.assert",
|
|
6087
6232
|
path: _path + ".examples",
|
|
6088
|
-
expected: "(Record<string, any> | undefined)",
|
|
6233
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6089
6234
|
value: input.examples
|
|
6090
|
-
}, _errorFactory))
|
|
6235
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6091
6236
|
method: "typia.assert",
|
|
6092
|
-
path: _path + "
|
|
6093
|
-
expected: "string",
|
|
6094
|
-
value: input
|
|
6095
|
-
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6237
|
+
path: _path + ".examples",
|
|
6238
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6239
|
+
value: input.examples
|
|
6240
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6096
6241
|
method: "typia.assert",
|
|
6097
6242
|
path: _path + ".title",
|
|
6098
6243
|
expected: "(string | undefined)",
|
|
@@ -6107,17 +6252,7 @@ function assertHttpLlmApplication(props) {
|
|
|
6107
6252
|
path: _path + ".deprecated",
|
|
6108
6253
|
expected: "(boolean | undefined)",
|
|
6109
6254
|
value: input.deprecated
|
|
6110
|
-
}, _errorFactory)) && true
|
|
6111
|
-
method: "typia.assert",
|
|
6112
|
-
path: _path + ".examples",
|
|
6113
|
-
expected: "(Record<string, any> | undefined)",
|
|
6114
|
-
value: input.examples
|
|
6115
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6116
|
-
method: "typia.assert",
|
|
6117
|
-
path: _path + ".examples",
|
|
6118
|
-
expected: "(Record<string, any> | undefined)",
|
|
6119
|
-
value: input.examples
|
|
6120
|
-
}, _errorFactory)); const _ao124 = (input, _path, _exceptionable = true) => ((Array.isArray(input.allOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6255
|
+
}, _errorFactory)) && true; const _ao124 = (input, _path, _exceptionable = true) => ((Array.isArray(input.allOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6121
6256
|
method: "typia.assert",
|
|
6122
6257
|
path: _path + ".allOf",
|
|
6123
6258
|
expected: "Array<OpenApiV3_1.IJsonSchema>",
|
|
@@ -6137,7 +6272,22 @@ function assertHttpLlmApplication(props) {
|
|
|
6137
6272
|
path: _path + ".allOf",
|
|
6138
6273
|
expected: "Array<OpenApiV3_1.IJsonSchema>",
|
|
6139
6274
|
value: input.allOf
|
|
6140
|
-
}, _errorFactory)) && (
|
|
6275
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6276
|
+
method: "typia.assert",
|
|
6277
|
+
path: _path + ".examples",
|
|
6278
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6279
|
+
value: input.examples
|
|
6280
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6281
|
+
method: "typia.assert",
|
|
6282
|
+
path: _path + ".examples",
|
|
6283
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6284
|
+
value: input.examples
|
|
6285
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6286
|
+
method: "typia.assert",
|
|
6287
|
+
path: _path + ".examples",
|
|
6288
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6289
|
+
value: input.examples
|
|
6290
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6141
6291
|
method: "typia.assert",
|
|
6142
6292
|
path: _path + ".title",
|
|
6143
6293
|
expected: "(string | undefined)",
|
|
@@ -6152,17 +6302,7 @@ function assertHttpLlmApplication(props) {
|
|
|
6152
6302
|
path: _path + ".deprecated",
|
|
6153
6303
|
expected: "(boolean | undefined)",
|
|
6154
6304
|
value: input.deprecated
|
|
6155
|
-
}, _errorFactory)) && true
|
|
6156
|
-
method: "typia.assert",
|
|
6157
|
-
path: _path + ".examples",
|
|
6158
|
-
expected: "(Record<string, any> | undefined)",
|
|
6159
|
-
value: input.examples
|
|
6160
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6161
|
-
method: "typia.assert",
|
|
6162
|
-
path: _path + ".examples",
|
|
6163
|
-
expected: "(Record<string, any> | undefined)",
|
|
6164
|
-
value: input.examples
|
|
6165
|
-
}, _errorFactory)); const _ao125 = (input, _path, _exceptionable = true) => ((Array.isArray(input.anyOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6305
|
+
}, _errorFactory)) && true; const _ao125 = (input, _path, _exceptionable = true) => ((Array.isArray(input.anyOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6166
6306
|
method: "typia.assert",
|
|
6167
6307
|
path: _path + ".anyOf",
|
|
6168
6308
|
expected: "Array<OpenApiV3_1.IJsonSchema>",
|
|
@@ -6182,7 +6322,22 @@ function assertHttpLlmApplication(props) {
|
|
|
6182
6322
|
path: _path + ".anyOf",
|
|
6183
6323
|
expected: "Array<OpenApiV3_1.IJsonSchema>",
|
|
6184
6324
|
value: input.anyOf
|
|
6185
|
-
}, _errorFactory)) && (
|
|
6325
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6326
|
+
method: "typia.assert",
|
|
6327
|
+
path: _path + ".examples",
|
|
6328
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6329
|
+
value: input.examples
|
|
6330
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6331
|
+
method: "typia.assert",
|
|
6332
|
+
path: _path + ".examples",
|
|
6333
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6334
|
+
value: input.examples
|
|
6335
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6336
|
+
method: "typia.assert",
|
|
6337
|
+
path: _path + ".examples",
|
|
6338
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6339
|
+
value: input.examples
|
|
6340
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6186
6341
|
method: "typia.assert",
|
|
6187
6342
|
path: _path + ".title",
|
|
6188
6343
|
expected: "(string | undefined)",
|
|
@@ -6197,17 +6352,7 @@ function assertHttpLlmApplication(props) {
|
|
|
6197
6352
|
path: _path + ".deprecated",
|
|
6198
6353
|
expected: "(boolean | undefined)",
|
|
6199
6354
|
value: input.deprecated
|
|
6200
|
-
}, _errorFactory)) && true
|
|
6201
|
-
method: "typia.assert",
|
|
6202
|
-
path: _path + ".examples",
|
|
6203
|
-
expected: "(Record<string, any> | undefined)",
|
|
6204
|
-
value: input.examples
|
|
6205
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6206
|
-
method: "typia.assert",
|
|
6207
|
-
path: _path + ".examples",
|
|
6208
|
-
expected: "(Record<string, any> | undefined)",
|
|
6209
|
-
value: input.examples
|
|
6210
|
-
}, _errorFactory)); const _ao126 = (input, _path, _exceptionable = true) => ((Array.isArray(input.oneOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6355
|
+
}, _errorFactory)) && true; const _ao126 = (input, _path, _exceptionable = true) => ((Array.isArray(input.oneOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6211
6356
|
method: "typia.assert",
|
|
6212
6357
|
path: _path + ".oneOf",
|
|
6213
6358
|
expected: "Array<OpenApiV3_1.IJsonSchema>",
|
|
@@ -6237,7 +6382,22 @@ function assertHttpLlmApplication(props) {
|
|
|
6237
6382
|
path: _path + ".discriminator",
|
|
6238
6383
|
expected: "(OpenApiV3_1.IJsonSchema.IOneOf.IDiscriminator | undefined)",
|
|
6239
6384
|
value: input.discriminator
|
|
6240
|
-
}, _errorFactory)) && (
|
|
6385
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6386
|
+
method: "typia.assert",
|
|
6387
|
+
path: _path + ".examples",
|
|
6388
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6389
|
+
value: input.examples
|
|
6390
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6391
|
+
method: "typia.assert",
|
|
6392
|
+
path: _path + ".examples",
|
|
6393
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6394
|
+
value: input.examples
|
|
6395
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6396
|
+
method: "typia.assert",
|
|
6397
|
+
path: _path + ".examples",
|
|
6398
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6399
|
+
value: input.examples
|
|
6400
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6241
6401
|
method: "typia.assert",
|
|
6242
6402
|
path: _path + ".title",
|
|
6243
6403
|
expected: "(string | undefined)",
|
|
@@ -6252,17 +6412,7 @@ function assertHttpLlmApplication(props) {
|
|
|
6252
6412
|
path: _path + ".deprecated",
|
|
6253
6413
|
expected: "(boolean | undefined)",
|
|
6254
6414
|
value: input.deprecated
|
|
6255
|
-
}, _errorFactory)) && true
|
|
6256
|
-
method: "typia.assert",
|
|
6257
|
-
path: _path + ".examples",
|
|
6258
|
-
expected: "(Record<string, any> | undefined)",
|
|
6259
|
-
value: input.examples
|
|
6260
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6261
|
-
method: "typia.assert",
|
|
6262
|
-
path: _path + ".examples",
|
|
6263
|
-
expected: "(Record<string, any> | undefined)",
|
|
6264
|
-
value: input.examples
|
|
6265
|
-
}, _errorFactory)); const _ao127 = (input, _path, _exceptionable = true) => ("string" === typeof input.propertyName || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6415
|
+
}, _errorFactory)) && true; const _ao127 = (input, _path, _exceptionable = true) => ("string" === typeof input.propertyName || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6266
6416
|
method: "typia.assert",
|
|
6267
6417
|
path: _path + ".propertyName",
|
|
6268
6418
|
expected: "string",
|
|
@@ -6302,17 +6452,22 @@ function assertHttpLlmApplication(props) {
|
|
|
6302
6452
|
path: _path + ".deprecated",
|
|
6303
6453
|
expected: "(boolean | undefined)",
|
|
6304
6454
|
value: input.deprecated
|
|
6305
|
-
}, _errorFactory)) && true && (
|
|
6455
|
+
}, _errorFactory)) && true && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6306
6456
|
method: "typia.assert",
|
|
6307
6457
|
path: _path + ".examples",
|
|
6308
|
-
expected: "(Record<string, any> | undefined)",
|
|
6458
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6309
6459
|
value: input.examples
|
|
6310
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6460
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6311
6461
|
method: "typia.assert",
|
|
6312
6462
|
path: _path + ".examples",
|
|
6313
|
-
expected: "(Record<string, any> | undefined)",
|
|
6463
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6464
|
+
value: input.examples
|
|
6465
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6466
|
+
method: "typia.assert",
|
|
6467
|
+
path: _path + ".examples",
|
|
6468
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6314
6469
|
value: input.examples
|
|
6315
|
-
}, _errorFactory)); const _ao129 = (input, _path, _exceptionable = true) => (null !== input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6470
|
+
}, _errorFactory))); const _ao129 = (input, _path, _exceptionable = true) => (null !== input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6316
6471
|
method: "typia.assert",
|
|
6317
6472
|
path: _path + ".type",
|
|
6318
6473
|
expected: "undefined",
|
|
@@ -6337,17 +6492,22 @@ function assertHttpLlmApplication(props) {
|
|
|
6337
6492
|
path: _path + ".deprecated",
|
|
6338
6493
|
expected: "(boolean | undefined)",
|
|
6339
6494
|
value: input.deprecated
|
|
6340
|
-
}, _errorFactory)) && true && (
|
|
6495
|
+
}, _errorFactory)) && true && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6341
6496
|
method: "typia.assert",
|
|
6342
6497
|
path: _path + ".examples",
|
|
6343
|
-
expected: "(Record<string, any> | undefined)",
|
|
6498
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6344
6499
|
value: input.examples
|
|
6345
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6500
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6346
6501
|
method: "typia.assert",
|
|
6347
6502
|
path: _path + ".examples",
|
|
6348
|
-
expected: "(Record<string, any> | undefined)",
|
|
6503
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6349
6504
|
value: input.examples
|
|
6350
|
-
}, _errorFactory))
|
|
6505
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6506
|
+
method: "typia.assert",
|
|
6507
|
+
path: _path + ".examples",
|
|
6508
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6509
|
+
value: input.examples
|
|
6510
|
+
}, _errorFactory))); const _ao130 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
6351
6511
|
const value = input[key];
|
|
6352
6512
|
if (undefined === value)
|
|
6353
6513
|
return true;
|
|
@@ -6567,7 +6727,22 @@ function assertHttpLlmApplication(props) {
|
|
|
6567
6727
|
path: _path + ".$ref",
|
|
6568
6728
|
expected: "`#/components/examples/${string}`",
|
|
6569
6729
|
value: input.$ref
|
|
6570
|
-
}, _errorFactory)) && (
|
|
6730
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6731
|
+
method: "typia.assert",
|
|
6732
|
+
path: _path + ".examples",
|
|
6733
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6734
|
+
value: input.examples
|
|
6735
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6736
|
+
method: "typia.assert",
|
|
6737
|
+
path: _path + ".examples",
|
|
6738
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6739
|
+
value: input.examples
|
|
6740
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6741
|
+
method: "typia.assert",
|
|
6742
|
+
path: _path + ".examples",
|
|
6743
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6744
|
+
value: input.examples
|
|
6745
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6571
6746
|
method: "typia.assert",
|
|
6572
6747
|
path: _path + ".title",
|
|
6573
6748
|
expected: "(string | undefined)",
|
|
@@ -6582,22 +6757,27 @@ function assertHttpLlmApplication(props) {
|
|
|
6582
6757
|
path: _path + ".deprecated",
|
|
6583
6758
|
expected: "(boolean | undefined)",
|
|
6584
6759
|
value: input.deprecated
|
|
6585
|
-
}, _errorFactory)) && true
|
|
6760
|
+
}, _errorFactory)) && true; const _ao136 = (input, _path, _exceptionable = true) => ("string" === typeof input.$ref && RegExp(/^#\/components\/headers\/(.*)/).test(input.$ref) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6761
|
+
method: "typia.assert",
|
|
6762
|
+
path: _path + ".$ref",
|
|
6763
|
+
expected: "`#/components/headers/${string}`",
|
|
6764
|
+
value: input.$ref
|
|
6765
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6586
6766
|
method: "typia.assert",
|
|
6587
6767
|
path: _path + ".examples",
|
|
6588
|
-
expected: "(Record<string, any> | undefined)",
|
|
6768
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6589
6769
|
value: input.examples
|
|
6590
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6770
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6591
6771
|
method: "typia.assert",
|
|
6592
6772
|
path: _path + ".examples",
|
|
6593
|
-
expected: "(Record<string, any> | undefined)",
|
|
6773
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6594
6774
|
value: input.examples
|
|
6595
|
-
}, _errorFactory))
|
|
6775
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6596
6776
|
method: "typia.assert",
|
|
6597
|
-
path: _path + "
|
|
6598
|
-
expected: "
|
|
6599
|
-
value: input
|
|
6600
|
-
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6777
|
+
path: _path + ".examples",
|
|
6778
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6779
|
+
value: input.examples
|
|
6780
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6601
6781
|
method: "typia.assert",
|
|
6602
6782
|
path: _path + ".title",
|
|
6603
6783
|
expected: "(string | undefined)",
|
|
@@ -6612,22 +6792,27 @@ function assertHttpLlmApplication(props) {
|
|
|
6612
6792
|
path: _path + ".deprecated",
|
|
6613
6793
|
expected: "(boolean | undefined)",
|
|
6614
6794
|
value: input.deprecated
|
|
6615
|
-
}, _errorFactory)) && true
|
|
6795
|
+
}, _errorFactory)) && true; const _ao137 = (input, _path, _exceptionable = true) => ("string" === typeof input.$ref && RegExp(/^#\/components\/parameters\/(.*)/).test(input.$ref) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6796
|
+
method: "typia.assert",
|
|
6797
|
+
path: _path + ".$ref",
|
|
6798
|
+
expected: "`#/components/parameters/${string}`",
|
|
6799
|
+
value: input.$ref
|
|
6800
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6616
6801
|
method: "typia.assert",
|
|
6617
6802
|
path: _path + ".examples",
|
|
6618
|
-
expected: "(Record<string, any> | undefined)",
|
|
6803
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6619
6804
|
value: input.examples
|
|
6620
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6805
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6621
6806
|
method: "typia.assert",
|
|
6622
6807
|
path: _path + ".examples",
|
|
6623
|
-
expected: "(Record<string, any> | undefined)",
|
|
6808
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6624
6809
|
value: input.examples
|
|
6625
|
-
}, _errorFactory))
|
|
6810
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6626
6811
|
method: "typia.assert",
|
|
6627
|
-
path: _path + "
|
|
6628
|
-
expected: "
|
|
6629
|
-
value: input
|
|
6630
|
-
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6812
|
+
path: _path + ".examples",
|
|
6813
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6814
|
+
value: input.examples
|
|
6815
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6631
6816
|
method: "typia.assert",
|
|
6632
6817
|
path: _path + ".title",
|
|
6633
6818
|
expected: "(string | undefined)",
|
|
@@ -6642,17 +6827,7 @@ function assertHttpLlmApplication(props) {
|
|
|
6642
6827
|
path: _path + ".deprecated",
|
|
6643
6828
|
expected: "(boolean | undefined)",
|
|
6644
6829
|
value: input.deprecated
|
|
6645
|
-
}, _errorFactory)) && true
|
|
6646
|
-
method: "typia.assert",
|
|
6647
|
-
path: _path + ".examples",
|
|
6648
|
-
expected: "(Record<string, any> | undefined)",
|
|
6649
|
-
value: input.examples
|
|
6650
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6651
|
-
method: "typia.assert",
|
|
6652
|
-
path: _path + ".examples",
|
|
6653
|
-
expected: "(Record<string, any> | undefined)",
|
|
6654
|
-
value: input.examples
|
|
6655
|
-
}, _errorFactory)); const _ao138 = (input, _path, _exceptionable = true) => (undefined === input.operationId || "string" === typeof input.operationId || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6830
|
+
}, _errorFactory)) && true; const _ao138 = (input, _path, _exceptionable = true) => (undefined === input.operationId || "string" === typeof input.operationId || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6656
6831
|
method: "typia.assert",
|
|
6657
6832
|
path: _path + ".operationId",
|
|
6658
6833
|
expected: "(string | undefined)",
|
|
@@ -6827,7 +7002,22 @@ function assertHttpLlmApplication(props) {
|
|
|
6827
7002
|
path: _path + ".$ref",
|
|
6828
7003
|
expected: "`#/components/requestBodies/${string}`",
|
|
6829
7004
|
value: input.$ref
|
|
6830
|
-
}, _errorFactory)) && (
|
|
7005
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7006
|
+
method: "typia.assert",
|
|
7007
|
+
path: _path + ".examples",
|
|
7008
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
7009
|
+
value: input.examples
|
|
7010
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7011
|
+
method: "typia.assert",
|
|
7012
|
+
path: _path + ".examples",
|
|
7013
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
7014
|
+
value: input.examples
|
|
7015
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7016
|
+
method: "typia.assert",
|
|
7017
|
+
path: _path + ".examples",
|
|
7018
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
7019
|
+
value: input.examples
|
|
7020
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6831
7021
|
method: "typia.assert",
|
|
6832
7022
|
path: _path + ".title",
|
|
6833
7023
|
expected: "(string | undefined)",
|
|
@@ -6842,17 +7032,7 @@ function assertHttpLlmApplication(props) {
|
|
|
6842
7032
|
path: _path + ".deprecated",
|
|
6843
7033
|
expected: "(boolean | undefined)",
|
|
6844
7034
|
value: input.deprecated
|
|
6845
|
-
}, _errorFactory)) && true
|
|
6846
|
-
method: "typia.assert",
|
|
6847
|
-
path: _path + ".examples",
|
|
6848
|
-
expected: "(Record<string, any> | undefined)",
|
|
6849
|
-
value: input.examples
|
|
6850
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6851
|
-
method: "typia.assert",
|
|
6852
|
-
path: _path + ".examples",
|
|
6853
|
-
expected: "(Record<string, any> | undefined)",
|
|
6854
|
-
value: input.examples
|
|
6855
|
-
}, _errorFactory)); const _ao143 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
7035
|
+
}, _errorFactory)) && true; const _ao143 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
6856
7036
|
const value = input[key];
|
|
6857
7037
|
if (undefined === value)
|
|
6858
7038
|
return true;
|
|
@@ -6947,7 +7127,22 @@ function assertHttpLlmApplication(props) {
|
|
|
6947
7127
|
path: _path + ".$ref",
|
|
6948
7128
|
expected: "`#/components/responses/${string}`",
|
|
6949
7129
|
value: input.$ref
|
|
6950
|
-
}, _errorFactory)) && (
|
|
7130
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7131
|
+
method: "typia.assert",
|
|
7132
|
+
path: _path + ".examples",
|
|
7133
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
7134
|
+
value: input.examples
|
|
7135
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7136
|
+
method: "typia.assert",
|
|
7137
|
+
path: _path + ".examples",
|
|
7138
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
7139
|
+
value: input.examples
|
|
7140
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7141
|
+
method: "typia.assert",
|
|
7142
|
+
path: _path + ".examples",
|
|
7143
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
7144
|
+
value: input.examples
|
|
7145
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6951
7146
|
method: "typia.assert",
|
|
6952
7147
|
path: _path + ".title",
|
|
6953
7148
|
expected: "(string | undefined)",
|
|
@@ -6962,17 +7157,7 @@ function assertHttpLlmApplication(props) {
|
|
|
6962
7157
|
path: _path + ".deprecated",
|
|
6963
7158
|
expected: "(boolean | undefined)",
|
|
6964
7159
|
value: input.deprecated
|
|
6965
|
-
}, _errorFactory)) && true
|
|
6966
|
-
method: "typia.assert",
|
|
6967
|
-
path: _path + ".examples",
|
|
6968
|
-
expected: "(Record<string, any> | undefined)",
|
|
6969
|
-
value: input.examples
|
|
6970
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6971
|
-
method: "typia.assert",
|
|
6972
|
-
path: _path + ".examples",
|
|
6973
|
-
expected: "(Record<string, any> | undefined)",
|
|
6974
|
-
value: input.examples
|
|
6975
|
-
}, _errorFactory)); const _ao148 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
7160
|
+
}, _errorFactory)) && true; const _ao148 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
6976
7161
|
const value = input[key];
|
|
6977
7162
|
if (undefined === value)
|
|
6978
7163
|
return true;
|
|
@@ -7277,7 +7462,22 @@ function assertHttpLlmApplication(props) {
|
|
|
7277
7462
|
path: _path + ".$ref",
|
|
7278
7463
|
expected: "`#/components/pathItems/${string}`",
|
|
7279
7464
|
value: input.$ref
|
|
7280
|
-
}, _errorFactory)) && (
|
|
7465
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7466
|
+
method: "typia.assert",
|
|
7467
|
+
path: _path + ".examples",
|
|
7468
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
7469
|
+
value: input.examples
|
|
7470
|
+
}, _errorFactory)) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7471
|
+
method: "typia.assert",
|
|
7472
|
+
path: _path + ".examples",
|
|
7473
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
7474
|
+
value: input.examples
|
|
7475
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7476
|
+
method: "typia.assert",
|
|
7477
|
+
path: _path + ".examples",
|
|
7478
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
7479
|
+
value: input.examples
|
|
7480
|
+
}, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7281
7481
|
method: "typia.assert",
|
|
7282
7482
|
path: _path + ".title",
|
|
7283
7483
|
expected: "(string | undefined)",
|
|
@@ -7292,17 +7492,7 @@ function assertHttpLlmApplication(props) {
|
|
|
7292
7492
|
path: _path + ".deprecated",
|
|
7293
7493
|
expected: "(boolean | undefined)",
|
|
7294
7494
|
value: input.deprecated
|
|
7295
|
-
}, _errorFactory)) && true
|
|
7296
|
-
method: "typia.assert",
|
|
7297
|
-
path: _path + ".examples",
|
|
7298
|
-
expected: "(Record<string, any> | undefined)",
|
|
7299
|
-
value: input.examples
|
|
7300
|
-
}, _errorFactory)) && _ao58(input.examples, _path + ".examples", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7301
|
-
method: "typia.assert",
|
|
7302
|
-
path: _path + ".examples",
|
|
7303
|
-
expected: "(Record<string, any> | undefined)",
|
|
7304
|
-
value: input.examples
|
|
7305
|
-
}, _errorFactory)); const _ao165 = (input, _path, _exceptionable = true) => ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7495
|
+
}, _errorFactory)) && true; const _ao165 = (input, _path, _exceptionable = true) => ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7306
7496
|
method: "typia.assert",
|
|
7307
7497
|
path: _path + ".name",
|
|
7308
7498
|
expected: "string",
|
|
@@ -7417,11 +7607,11 @@ function assertHttpLlmApplication(props) {
|
|
|
7417
7607
|
path: _path + ".tags",
|
|
7418
7608
|
expected: "(Array<OpenApi.IDocument.ITag> | undefined)",
|
|
7419
7609
|
value: input.tags
|
|
7420
|
-
}, _errorFactory)) && (true === input["x-samchon-emended"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7610
|
+
}, _errorFactory)) && (true === input["x-samchon-emended-v4"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7421
7611
|
method: "typia.assert",
|
|
7422
|
-
path: _path + "[\"x-samchon-emended\"]",
|
|
7612
|
+
path: _path + "[\"x-samchon-emended-v4\"]",
|
|
7423
7613
|
expected: "true",
|
|
7424
|
-
value: input["x-samchon-emended"]
|
|
7614
|
+
value: input["x-samchon-emended-v4"]
|
|
7425
7615
|
}, _errorFactory)); const _ao167 = (input, _path, _exceptionable = true) => ("string" === typeof input.url || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7426
7616
|
method: "typia.assert",
|
|
7427
7617
|
path: _path + ".url",
|
|
@@ -7692,15 +7882,15 @@ function assertHttpLlmApplication(props) {
|
|
|
7692
7882
|
path: _path + ".maximum",
|
|
7693
7883
|
expected: "((number & Type<\"int64\">) | undefined)",
|
|
7694
7884
|
value: input.maximum
|
|
7695
|
-
}, _errorFactory)) && (undefined === input.exclusiveMinimum || "
|
|
7885
|
+
}, _errorFactory)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7696
7886
|
method: "typia.assert",
|
|
7697
7887
|
path: _path + ".exclusiveMinimum",
|
|
7698
|
-
expected: "(
|
|
7888
|
+
expected: "(number | undefined)",
|
|
7699
7889
|
value: input.exclusiveMinimum
|
|
7700
|
-
}, _errorFactory)) && (undefined === input.exclusiveMaximum || "
|
|
7890
|
+
}, _errorFactory)) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7701
7891
|
method: "typia.assert",
|
|
7702
7892
|
path: _path + ".exclusiveMaximum",
|
|
7703
|
-
expected: "(
|
|
7893
|
+
expected: "(number | undefined)",
|
|
7704
7894
|
value: input.exclusiveMaximum
|
|
7705
7895
|
}, _errorFactory)) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7706
7896
|
method: "typia.assert",
|
|
@@ -7762,15 +7952,15 @@ function assertHttpLlmApplication(props) {
|
|
|
7762
7952
|
path: _path + ".maximum",
|
|
7763
7953
|
expected: "(number | undefined)",
|
|
7764
7954
|
value: input.maximum
|
|
7765
|
-
}, _errorFactory)) && (undefined === input.exclusiveMinimum || "
|
|
7955
|
+
}, _errorFactory)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7766
7956
|
method: "typia.assert",
|
|
7767
7957
|
path: _path + ".exclusiveMinimum",
|
|
7768
|
-
expected: "(
|
|
7958
|
+
expected: "(number | undefined)",
|
|
7769
7959
|
value: input.exclusiveMinimum
|
|
7770
|
-
}, _errorFactory)) && (undefined === input.exclusiveMaximum || "
|
|
7960
|
+
}, _errorFactory)) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7771
7961
|
method: "typia.assert",
|
|
7772
7962
|
path: _path + ".exclusiveMaximum",
|
|
7773
|
-
expected: "(
|
|
7963
|
+
expected: "(number | undefined)",
|
|
7774
7964
|
value: input.exclusiveMaximum
|
|
7775
7965
|
}, _errorFactory)) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (0 < input.multipleOf || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7776
7966
|
method: "typia.assert",
|
|
@@ -9393,7 +9583,7 @@ function assertHttpLlmApplication(props) {
|
|
|
9393
9583
|
return _ao48(input, _path, true && _exceptionable);
|
|
9394
9584
|
else if ("string" === typeof input.openapi && RegExp(/^3\.1\.[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.openapi))
|
|
9395
9585
|
return _ao105(input, _path, true && _exceptionable);
|
|
9396
|
-
else if (undefined !== input["x-samchon-emended"])
|
|
9586
|
+
else if (undefined !== input["x-samchon-emended-v4"])
|
|
9397
9587
|
return _ao166(input, _path, true && _exceptionable);
|
|
9398
9588
|
else
|
|
9399
9589
|
return __typia_transform__assertGuard._assertGuard(_exceptionable, {
|