@agentica/core 0.15.6 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/Agentica.d.ts +21 -21
- package/lib/Agentica.js +27 -27
- 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 +7 -5
- 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 +1393 -902
- 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 +50 -41
- 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 +3 -3
- 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 +3 -3
- package/lib/orchestrate/initialize.js.map +1 -1
- package/lib/orchestrate/internal/selectFunction.d.ts +1 -5
- package/lib/orchestrate/internal/selectFunction.js +3 -0
- 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 +34 -34
- package/src/MicroAgentica.ts +337 -0
- package/src/constants/AgenticaDefaultPrompt.ts +7 -3
- 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 +83 -59
- package/src/orchestrate/cancel.ts +4 -4
- package/src/orchestrate/describe.ts +11 -7
- package/src/orchestrate/execute.ts +7 -7
- package/src/orchestrate/initialize.ts +6 -6
- package/src/orchestrate/internal/selectFunction.ts +3 -0
- 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
|
@@ -64,12 +64,12 @@ function validateHttpLlmApplication(props) {
|
|
|
64
64
|
if (undefined === value)
|
|
65
65
|
return true;
|
|
66
66
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu0(value);
|
|
67
|
-
}); const _io5 = input => (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io6 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "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 => {
|
|
67
|
+
}); const _io5 = input => (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io6 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io7 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io8 = input => (null === input["default"] || undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "string" === typeof elem)) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io9 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu0(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io10 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io4(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu0(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io11 = input => "string" === typeof input.$ref && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io12 = input => Array.isArray(input["x-anyOf"]) && input["x-anyOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu0(elem)) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io13 = input => Array.isArray(input["x-oneOf"]) && input["x-oneOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu0(elem)) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io14 = input => "null" === input.type && (null === input["default"] || undefined === input["default"]) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io15 = input => null !== input.type && undefined === input.type && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io16 = input => Object.keys(input).every(key => {
|
|
68
68
|
const value = input[key];
|
|
69
69
|
if (undefined === value)
|
|
70
70
|
return true;
|
|
71
71
|
return "object" === typeof value && null !== value && _iu9(value);
|
|
72
|
-
}); const _io17 = input => (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io18 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "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 => {
|
|
72
|
+
}); const _io17 = input => (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io18 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io19 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io20 = input => (null === input["default"] || undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "string" === typeof elem)) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io21 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu0(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io22 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io4(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu0(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io23 = input => "string" === typeof input.$ref && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && "string" === typeof input.name && "string" === typeof input["in"]; const _io24 = input => Array.isArray(input["x-anyOf"]) && input["x-anyOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu0(elem)) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && "string" === typeof input.name && "string" === typeof input["in"]; const _io25 = input => Array.isArray(input["x-oneOf"]) && input["x-oneOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu0(elem)) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && "string" === typeof input.name && "string" === typeof input["in"]; const _io26 = input => "null" === input.type && (null === input["default"] || undefined === input["default"]) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && "string" === typeof input.name && "string" === typeof input["in"]; const _io27 = input => null !== input.type && undefined === input.type && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && "string" === typeof input.name && "string" === typeof input["in"]; const _io28 = input => "object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu0(input.schema) && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description) && (undefined === input.required || "boolean" === typeof input.required); const _io29 = input => Object.keys(input).every(key => {
|
|
73
73
|
const value = input[key];
|
|
74
74
|
if (undefined === value)
|
|
75
75
|
return true;
|
|
@@ -109,12 +109,12 @@ function validateHttpLlmApplication(props) {
|
|
|
109
109
|
if (undefined === value)
|
|
110
110
|
return true;
|
|
111
111
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu3(value);
|
|
112
|
-
}); const _io57 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (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 => {
|
|
112
|
+
}); const _io57 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io58 = input => Object.keys(input).every(key => {
|
|
113
113
|
const value = input[key];
|
|
114
114
|
if (undefined === value)
|
|
115
115
|
return true;
|
|
116
116
|
return true;
|
|
117
|
-
}); const _io59 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "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 => {
|
|
117
|
+
}); const _io59 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io60 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io61 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "string" === typeof elem)) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io62 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && ("object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu3(input.items)) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io63 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io56(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu3(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io64 = input => "string" === typeof input.$ref && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io65 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu3(elem)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io66 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu3(elem)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io67 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu3(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io68(input.discriminator)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io68 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io35(input.mapping)); const _io69 = input => (null === input["default"] || undefined === input["default"]) && "null" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io70 = input => true && (null !== input.type && undefined === input.type) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io71 = input => Object.keys(input).every(key => {
|
|
118
118
|
const value = input[key];
|
|
119
119
|
if (undefined === value)
|
|
120
120
|
return true;
|
|
@@ -129,12 +129,12 @@ function validateHttpLlmApplication(props) {
|
|
|
129
129
|
if (undefined === value)
|
|
130
130
|
return true;
|
|
131
131
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu12(value);
|
|
132
|
-
}); const _io76 = input => (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.externalValue || "string" === typeof input.externalValue); const _io77 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/examples\/(.*)/).test(input.$ref) && (undefined === input.
|
|
132
|
+
}); const _io76 = input => (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.externalValue || "string" === typeof input.externalValue); const _io77 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/examples\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io78 = input => Object.keys(input).every(key => {
|
|
133
133
|
const value = input[key];
|
|
134
134
|
if (undefined === value)
|
|
135
135
|
return true;
|
|
136
136
|
return "object" === typeof value && null !== value && _iu13(value);
|
|
137
|
-
}); const _io79 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io75(input.examples)) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu3(input.schema)); const _io80 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/headers\/(.*)/).test(input.$ref) && (undefined === input.
|
|
137
|
+
}); const _io79 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io75(input.examples)) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu3(input.schema)); const _io80 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/headers\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io81 = input => Object.keys(input).every(key => {
|
|
138
138
|
const value = input[key];
|
|
139
139
|
if (undefined === value)
|
|
140
140
|
return true;
|
|
@@ -164,12 +164,12 @@ function validateHttpLlmApplication(props) {
|
|
|
164
164
|
if (undefined === value)
|
|
165
165
|
return true;
|
|
166
166
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io98(value);
|
|
167
|
-
}); const _io98 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu4(elem))) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io49(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.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.
|
|
167
|
+
}); const _io98 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu4(elem))) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io49(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.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 => {
|
|
168
168
|
const value = input[key];
|
|
169
169
|
if (undefined === value)
|
|
170
170
|
return true;
|
|
171
171
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu16(value);
|
|
172
|
-
}); const _io103 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/responses\/(.*)/).test(input.$ref) && (undefined === input.
|
|
172
|
+
}); const _io103 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/responses\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io104 = input => "string" === typeof input.name && (undefined === input.description || "string" === typeof input.description); const _io105 = input => "string" === typeof input.openapi && RegExp(/^3\.1\.[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.openapi) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io106(elem))) && (undefined === input.info || "object" === typeof input.info && null !== input.info && _io109(input.info)) && (undefined === input.components || "object" === typeof input.components && null !== input.components && false === Array.isArray(input.components) && _io112(input.components)) && (undefined === input.paths || "object" === typeof input.paths && null !== input.paths && false === Array.isArray(input.paths) && _io130(input.paths)) && (undefined === input.webhooks || "object" === typeof input.webhooks && null !== input.webhooks && false === Array.isArray(input.webhooks) && _io163(input.webhooks)) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "object" === typeof elem && null !== elem && _io165(elem))); const _io106 = input => "string" === typeof input.url && (undefined === input.description || "string" === typeof input.description) && (undefined === input.variables || "object" === typeof input.variables && null !== input.variables && false === Array.isArray(input.variables) && _io107(input.variables)); const _io107 = input => Object.keys(input).every(key => {
|
|
173
173
|
const value = input[key];
|
|
174
174
|
if (undefined === value)
|
|
175
175
|
return true;
|
|
@@ -179,7 +179,7 @@ function validateHttpLlmApplication(props) {
|
|
|
179
179
|
if (undefined === value)
|
|
180
180
|
return true;
|
|
181
181
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu5(value);
|
|
182
|
-
}); const _io114 = input => 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 => {
|
|
182
|
+
}); 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 => {
|
|
183
183
|
const value = input[key];
|
|
184
184
|
if (undefined === value)
|
|
185
185
|
return true;
|
|
@@ -189,12 +189,12 @@ function validateHttpLlmApplication(props) {
|
|
|
189
189
|
if (undefined === value)
|
|
190
190
|
return true;
|
|
191
191
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu17(value);
|
|
192
|
-
}); const _io134 = input => (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.externalValue || "string" === typeof input.externalValue); const _io135 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/examples\/(.*)/).test(input.$ref) && (undefined === input.
|
|
192
|
+
}); const _io134 = input => (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.externalValue || "string" === typeof input.externalValue); const _io135 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/examples\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io136 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/headers\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io137 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/parameters\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io138 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu6(elem))) && (undefined === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && false === Array.isArray(input.requestBody) && _iu18(input.requestBody)) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io143(input.responses)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io106(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated); const _io139 = input => (undefined === input.description || "string" === typeof input.description) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.content || "object" === typeof input.content && null !== input.content && false === Array.isArray(input.content) && _io140(input.content)); const _io140 = input => Object.keys(input).every(key => {
|
|
193
193
|
const value = input[key];
|
|
194
194
|
if (undefined === value)
|
|
195
195
|
return true;
|
|
196
196
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io141(value);
|
|
197
|
-
}); const _io141 = input => (undefined === input.schema || "object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu5(input.schema)) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io133(input.examples)); const _io142 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/requestBodies\/(.*)/).test(input.$ref) && (undefined === input.
|
|
197
|
+
}); const _io141 = input => (undefined === input.schema || "object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu5(input.schema)) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io133(input.examples)); const _io142 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/requestBodies\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io143 = input => Object.keys(input).every(key => {
|
|
198
198
|
const value = input[key];
|
|
199
199
|
if (undefined === value)
|
|
200
200
|
return true;
|
|
@@ -204,7 +204,7 @@ function validateHttpLlmApplication(props) {
|
|
|
204
204
|
if (undefined === value)
|
|
205
205
|
return true;
|
|
206
206
|
return "object" === typeof value && null !== value && _iu20(value);
|
|
207
|
-
}); const _io146 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io133(input.examples)) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu5(input.schema)); const _io147 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/responses\/(.*)/).test(input.$ref) && (undefined === input.
|
|
207
|
+
}); const _io146 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io133(input.examples)) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu5(input.schema)); const _io147 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/responses\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io148 = input => Object.keys(input).every(key => {
|
|
208
208
|
const value = input[key];
|
|
209
209
|
if (undefined === value)
|
|
210
210
|
return true;
|
|
@@ -239,7 +239,7 @@ function validateHttpLlmApplication(props) {
|
|
|
239
239
|
if (undefined === value)
|
|
240
240
|
return true;
|
|
241
241
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu22(value);
|
|
242
|
-
}); const _io164 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/pathItems\/(.*)/).test(input.$ref) && (undefined === input.
|
|
242
|
+
}); const _io164 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/pathItems\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io165 = input => "string" === typeof input.name && (undefined === input.description || "string" === typeof input.description); const _io166 = input => "string" === typeof input.openapi && RegExp(/^3\.1\.[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.openapi) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io167(elem))) && (undefined === input.info || "object" === typeof input.info && null !== input.info && _io170(input.info)) && ("object" === typeof input.components && null !== input.components && false === Array.isArray(input.components) && _io173(input.components)) && (undefined === input.paths || "object" === typeof input.paths && null !== input.paths && false === Array.isArray(input.paths) && _io198(input.paths)) && (undefined === input.webhooks || "object" === typeof input.webhooks && null !== input.webhooks && false === Array.isArray(input.webhooks) && _io198(input.webhooks)) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "object" === typeof elem && null !== elem && _io210(elem))) && true === input["x-samchon-emended-v4"]; const _io167 = input => "string" === typeof input.url && (undefined === input.description || "string" === typeof input.description) && (undefined === input.variables || "object" === typeof input.variables && null !== input.variables && false === Array.isArray(input.variables) && _io168(input.variables)); const _io168 = input => Object.keys(input).every(key => {
|
|
243
243
|
const value = input[key];
|
|
244
244
|
if (undefined === value)
|
|
245
245
|
return true;
|
|
@@ -249,7 +249,7 @@ function validateHttpLlmApplication(props) {
|
|
|
249
249
|
if (undefined === value)
|
|
250
250
|
return true;
|
|
251
251
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu7(value);
|
|
252
|
-
}); const _io175 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io176 = input => (undefined === input["default"] || "boolean" === typeof input["default"]) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io177 = input => (undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "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 => {
|
|
252
|
+
}); const _io175 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io176 = input => (undefined === input["default"] || "boolean" === typeof input["default"]) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io177 = input => (undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io178 = input => (undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io179 = input => (undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io180 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu7(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io181 = input => "array" === input.type && (Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem))) && (null !== input.additionalItems && (undefined === input.additionalItems || "boolean" === typeof input.additionalItems || "object" === typeof input.additionalItems && null !== input.additionalItems && false === Array.isArray(input.additionalItems) && _iu7(input.additionalItems))) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io182 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io174(input.properties)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu7(input.additionalProperties))) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io183 = input => "string" === typeof input.$ref && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io184 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu8(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io187(input.discriminator)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io185 = input => (null === input["default"] || undefined === input["default"]) && "null" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io186 = input => true && (null !== input.type && undefined === input.type) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)); const _io187 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io35(input.mapping)); const _io188 = input => Object.keys(input).every(key => {
|
|
253
253
|
const value = input[key];
|
|
254
254
|
if (undefined === value)
|
|
255
255
|
return true;
|
|
@@ -631,7 +631,7 @@ function validateHttpLlmApplication(props) {
|
|
|
631
631
|
return _io48(input);
|
|
632
632
|
else if ("string" === typeof input.openapi && RegExp(/^3\.1\.[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.openapi))
|
|
633
633
|
return _io105(input);
|
|
634
|
-
else if (undefined !== input["x-samchon-emended"])
|
|
634
|
+
else if (undefined !== input["x-samchon-emended-v4"])
|
|
635
635
|
return _io166(input);
|
|
636
636
|
else
|
|
637
637
|
return false;
|
|
@@ -900,13 +900,13 @@ function validateHttpLlmApplication(props) {
|
|
|
900
900
|
path: _path + ".maximum",
|
|
901
901
|
expected: "((number & Type<\"int64\">) | undefined)",
|
|
902
902
|
value: input.maximum
|
|
903
|
-
}), undefined === input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
903
|
+
}), undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
904
904
|
path: _path + ".exclusiveMinimum",
|
|
905
|
-
expected: "(boolean | undefined)",
|
|
905
|
+
expected: "(boolean | number | undefined)",
|
|
906
906
|
value: input.exclusiveMinimum
|
|
907
|
-
}), undefined === input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
907
|
+
}), undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
908
908
|
path: _path + ".exclusiveMaximum",
|
|
909
|
-
expected: "(boolean | undefined)",
|
|
909
|
+
expected: "(boolean | number | undefined)",
|
|
910
910
|
value: input.exclusiveMaximum
|
|
911
911
|
}), undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 || _report(_exceptionable, {
|
|
912
912
|
path: _path + ".multipleOf",
|
|
@@ -968,13 +968,13 @@ function validateHttpLlmApplication(props) {
|
|
|
968
968
|
path: _path + ".maximum",
|
|
969
969
|
expected: "(number | undefined)",
|
|
970
970
|
value: input.maximum
|
|
971
|
-
}), undefined === input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
971
|
+
}), undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
972
972
|
path: _path + ".exclusiveMinimum",
|
|
973
|
-
expected: "(boolean | undefined)",
|
|
973
|
+
expected: "(boolean | number | undefined)",
|
|
974
974
|
value: input.exclusiveMinimum
|
|
975
|
-
}), undefined === input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
975
|
+
}), undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
976
976
|
path: _path + ".exclusiveMaximum",
|
|
977
|
-
expected: "(boolean | undefined)",
|
|
977
|
+
expected: "(boolean | number | undefined)",
|
|
978
978
|
value: input.exclusiveMaximum
|
|
979
979
|
}), undefined === input.multipleOf || "number" === typeof input.multipleOf && (0 < input.multipleOf || _report(_exceptionable, {
|
|
980
980
|
path: _path + ".multipleOf",
|
|
@@ -1417,13 +1417,13 @@ function validateHttpLlmApplication(props) {
|
|
|
1417
1417
|
path: _path + ".maximum",
|
|
1418
1418
|
expected: "((number & Type<\"int64\">) | undefined)",
|
|
1419
1419
|
value: input.maximum
|
|
1420
|
-
}), undefined === input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
1420
|
+
}), undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
1421
1421
|
path: _path + ".exclusiveMinimum",
|
|
1422
|
-
expected: "(boolean | undefined)",
|
|
1422
|
+
expected: "(boolean | number | undefined)",
|
|
1423
1423
|
value: input.exclusiveMinimum
|
|
1424
|
-
}), undefined === input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
1424
|
+
}), undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
1425
1425
|
path: _path + ".exclusiveMaximum",
|
|
1426
|
-
expected: "(boolean | undefined)",
|
|
1426
|
+
expected: "(boolean | number | undefined)",
|
|
1427
1427
|
value: input.exclusiveMaximum
|
|
1428
1428
|
}), undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 || _report(_exceptionable, {
|
|
1429
1429
|
path: _path + ".multipleOf",
|
|
@@ -1493,13 +1493,13 @@ function validateHttpLlmApplication(props) {
|
|
|
1493
1493
|
path: _path + ".maximum",
|
|
1494
1494
|
expected: "(number | undefined)",
|
|
1495
1495
|
value: input.maximum
|
|
1496
|
-
}), undefined === input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
1496
|
+
}), undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
1497
1497
|
path: _path + ".exclusiveMinimum",
|
|
1498
|
-
expected: "(boolean | undefined)",
|
|
1498
|
+
expected: "(boolean | number | undefined)",
|
|
1499
1499
|
value: input.exclusiveMinimum
|
|
1500
|
-
}), undefined === input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
1500
|
+
}), undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
1501
1501
|
path: _path + ".exclusiveMaximum",
|
|
1502
|
-
expected: "(boolean | undefined)",
|
|
1502
|
+
expected: "(boolean | number | undefined)",
|
|
1503
1503
|
value: input.exclusiveMaximum
|
|
1504
1504
|
}), undefined === input.multipleOf || "number" === typeof input.multipleOf && (0 < input.multipleOf || _report(_exceptionable, {
|
|
1505
1505
|
path: _path + ".multipleOf",
|
|
@@ -2673,15 +2673,19 @@ function validateHttpLlmApplication(props) {
|
|
|
2673
2673
|
path: _path + ".deprecated",
|
|
2674
2674
|
expected: "(boolean | undefined)",
|
|
2675
2675
|
value: input.deprecated
|
|
2676
|
-
}), true,
|
|
2676
|
+
}), true, (null !== input.examples || _report(_exceptionable, {
|
|
2677
2677
|
path: _path + ".examples",
|
|
2678
|
-
expected: "(Record<string, any> | undefined)",
|
|
2678
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
2679
2679
|
value: input.examples
|
|
2680
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
2680
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
2681
2681
|
path: _path + ".examples",
|
|
2682
|
-
expected: "(Record<string, any> | undefined)",
|
|
2682
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
2683
2683
|
value: input.examples
|
|
2684
|
-
})
|
|
2684
|
+
})) || _report(_exceptionable, {
|
|
2685
|
+
path: _path + ".examples",
|
|
2686
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
2687
|
+
value: input.examples
|
|
2688
|
+
}))].every(flag => flag); const _vo58 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
2685
2689
|
const value = input[key];
|
|
2686
2690
|
if (undefined === value)
|
|
2687
2691
|
return true;
|
|
@@ -2726,13 +2730,13 @@ function validateHttpLlmApplication(props) {
|
|
|
2726
2730
|
path: _path + ".maximum",
|
|
2727
2731
|
expected: "((number & Type<\"int64\">) | undefined)",
|
|
2728
2732
|
value: input.maximum
|
|
2729
|
-
}), undefined === input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
2733
|
+
}), undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
2730
2734
|
path: _path + ".exclusiveMinimum",
|
|
2731
|
-
expected: "(boolean | undefined)",
|
|
2735
|
+
expected: "(boolean | number | undefined)",
|
|
2732
2736
|
value: input.exclusiveMinimum
|
|
2733
|
-
}), undefined === input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
2737
|
+
}), undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
2734
2738
|
path: _path + ".exclusiveMaximum",
|
|
2735
|
-
expected: "(boolean | undefined)",
|
|
2739
|
+
expected: "(boolean | number | undefined)",
|
|
2736
2740
|
value: input.exclusiveMaximum
|
|
2737
2741
|
}), undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 || _report(_exceptionable, {
|
|
2738
2742
|
path: _path + ".multipleOf",
|
|
@@ -2762,15 +2766,19 @@ function validateHttpLlmApplication(props) {
|
|
|
2762
2766
|
path: _path + ".deprecated",
|
|
2763
2767
|
expected: "(boolean | undefined)",
|
|
2764
2768
|
value: input.deprecated
|
|
2765
|
-
}), true,
|
|
2769
|
+
}), true, (null !== input.examples || _report(_exceptionable, {
|
|
2766
2770
|
path: _path + ".examples",
|
|
2767
|
-
expected: "(Record<string, any> | undefined)",
|
|
2771
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
2768
2772
|
value: input.examples
|
|
2769
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
2773
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
2770
2774
|
path: _path + ".examples",
|
|
2771
|
-
expected: "(Record<string, any> | undefined)",
|
|
2775
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
2776
|
+
value: input.examples
|
|
2777
|
+
})) || _report(_exceptionable, {
|
|
2778
|
+
path: _path + ".examples",
|
|
2779
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
2772
2780
|
value: input.examples
|
|
2773
|
-
})].every(flag => flag); const _vo60 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
2781
|
+
}))].every(flag => flag); const _vo60 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
2774
2782
|
path: _path + ".nullable",
|
|
2775
2783
|
expected: "(boolean | undefined)",
|
|
2776
2784
|
value: input.nullable
|
|
@@ -2798,13 +2806,13 @@ function validateHttpLlmApplication(props) {
|
|
|
2798
2806
|
path: _path + ".maximum",
|
|
2799
2807
|
expected: "(number | undefined)",
|
|
2800
2808
|
value: input.maximum
|
|
2801
|
-
}), undefined === input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
2809
|
+
}), undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
2802
2810
|
path: _path + ".exclusiveMinimum",
|
|
2803
|
-
expected: "(boolean | undefined)",
|
|
2811
|
+
expected: "(boolean | number | undefined)",
|
|
2804
2812
|
value: input.exclusiveMinimum
|
|
2805
|
-
}), undefined === input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
2813
|
+
}), undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
2806
2814
|
path: _path + ".exclusiveMaximum",
|
|
2807
|
-
expected: "(boolean | undefined)",
|
|
2815
|
+
expected: "(boolean | number | undefined)",
|
|
2808
2816
|
value: input.exclusiveMaximum
|
|
2809
2817
|
}), undefined === input.multipleOf || "number" === typeof input.multipleOf && (0 < input.multipleOf || _report(_exceptionable, {
|
|
2810
2818
|
path: _path + ".multipleOf",
|
|
@@ -2830,15 +2838,19 @@ function validateHttpLlmApplication(props) {
|
|
|
2830
2838
|
path: _path + ".deprecated",
|
|
2831
2839
|
expected: "(boolean | undefined)",
|
|
2832
2840
|
value: input.deprecated
|
|
2833
|
-
}), true,
|
|
2841
|
+
}), true, (null !== input.examples || _report(_exceptionable, {
|
|
2834
2842
|
path: _path + ".examples",
|
|
2835
|
-
expected: "(Record<string, any> | undefined)",
|
|
2843
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
2836
2844
|
value: input.examples
|
|
2837
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
2845
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
2838
2846
|
path: _path + ".examples",
|
|
2839
|
-
expected: "(Record<string, any> | undefined)",
|
|
2847
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
2848
|
+
value: input.examples
|
|
2849
|
+
})) || _report(_exceptionable, {
|
|
2850
|
+
path: _path + ".examples",
|
|
2851
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
2840
2852
|
value: input.examples
|
|
2841
|
-
})].every(flag => flag); const _vo61 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
2853
|
+
}))].every(flag => flag); const _vo61 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
2842
2854
|
path: _path + ".nullable",
|
|
2843
2855
|
expected: "(boolean | undefined)",
|
|
2844
2856
|
value: input.nullable
|
|
@@ -2898,15 +2910,19 @@ function validateHttpLlmApplication(props) {
|
|
|
2898
2910
|
path: _path + ".deprecated",
|
|
2899
2911
|
expected: "(boolean | undefined)",
|
|
2900
2912
|
value: input.deprecated
|
|
2901
|
-
}), true,
|
|
2913
|
+
}), true, (null !== input.examples || _report(_exceptionable, {
|
|
2902
2914
|
path: _path + ".examples",
|
|
2903
|
-
expected: "(Record<string, any> | undefined)",
|
|
2915
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
2904
2916
|
value: input.examples
|
|
2905
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
2917
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
2906
2918
|
path: _path + ".examples",
|
|
2907
|
-
expected: "(Record<string, any> | undefined)",
|
|
2919
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
2920
|
+
value: input.examples
|
|
2921
|
+
})) || _report(_exceptionable, {
|
|
2922
|
+
path: _path + ".examples",
|
|
2923
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
2908
2924
|
value: input.examples
|
|
2909
|
-
})].every(flag => flag); const _vo62 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
2925
|
+
}))].every(flag => flag); const _vo62 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
2910
2926
|
path: _path + ".nullable",
|
|
2911
2927
|
expected: "(boolean | undefined)",
|
|
2912
2928
|
value: input.nullable
|
|
@@ -2954,15 +2970,19 @@ function validateHttpLlmApplication(props) {
|
|
|
2954
2970
|
path: _path + ".deprecated",
|
|
2955
2971
|
expected: "(boolean | undefined)",
|
|
2956
2972
|
value: input.deprecated
|
|
2957
|
-
}), true,
|
|
2973
|
+
}), true, (null !== input.examples || _report(_exceptionable, {
|
|
2958
2974
|
path: _path + ".examples",
|
|
2959
|
-
expected: "(Record<string, any> | undefined)",
|
|
2975
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
2960
2976
|
value: input.examples
|
|
2961
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
2977
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
2962
2978
|
path: _path + ".examples",
|
|
2963
|
-
expected: "(Record<string, any> | undefined)",
|
|
2979
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
2964
2980
|
value: input.examples
|
|
2965
|
-
})
|
|
2981
|
+
})) || _report(_exceptionable, {
|
|
2982
|
+
path: _path + ".examples",
|
|
2983
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
2984
|
+
value: input.examples
|
|
2985
|
+
}))].every(flag => flag); const _vo63 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
2966
2986
|
path: _path + ".nullable",
|
|
2967
2987
|
expected: "(boolean | undefined)",
|
|
2968
2988
|
value: input.nullable
|
|
@@ -3022,19 +3042,35 @@ function validateHttpLlmApplication(props) {
|
|
|
3022
3042
|
path: _path + ".deprecated",
|
|
3023
3043
|
expected: "(boolean | undefined)",
|
|
3024
3044
|
value: input.deprecated
|
|
3025
|
-
}), true,
|
|
3045
|
+
}), true, (null !== input.examples || _report(_exceptionable, {
|
|
3026
3046
|
path: _path + ".examples",
|
|
3027
|
-
expected: "(Record<string, any> | undefined)",
|
|
3047
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3028
3048
|
value: input.examples
|
|
3029
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3049
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3030
3050
|
path: _path + ".examples",
|
|
3031
|
-
expected: "(Record<string, any> | undefined)",
|
|
3051
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3052
|
+
value: input.examples
|
|
3053
|
+
})) || _report(_exceptionable, {
|
|
3054
|
+
path: _path + ".examples",
|
|
3055
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3032
3056
|
value: input.examples
|
|
3033
|
-
})].every(flag => flag); const _vo64 = (input, _path, _exceptionable = true) => ["string" === typeof input.$ref || _report(_exceptionable, {
|
|
3057
|
+
}))].every(flag => flag); const _vo64 = (input, _path, _exceptionable = true) => ["string" === typeof input.$ref || _report(_exceptionable, {
|
|
3034
3058
|
path: _path + ".$ref",
|
|
3035
3059
|
expected: "string",
|
|
3036
3060
|
value: input.$ref
|
|
3037
|
-
}),
|
|
3061
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
3062
|
+
path: _path + ".examples",
|
|
3063
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3064
|
+
value: input.examples
|
|
3065
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3066
|
+
path: _path + ".examples",
|
|
3067
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3068
|
+
value: input.examples
|
|
3069
|
+
})) || _report(_exceptionable, {
|
|
3070
|
+
path: _path + ".examples",
|
|
3071
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3072
|
+
value: input.examples
|
|
3073
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
3038
3074
|
path: _path + ".title",
|
|
3039
3075
|
expected: "(string | undefined)",
|
|
3040
3076
|
value: input.title
|
|
@@ -3046,15 +3082,7 @@ function validateHttpLlmApplication(props) {
|
|
|
3046
3082
|
path: _path + ".deprecated",
|
|
3047
3083
|
expected: "(boolean | undefined)",
|
|
3048
3084
|
value: input.deprecated
|
|
3049
|
-
}), true
|
|
3050
|
-
path: _path + ".examples",
|
|
3051
|
-
expected: "(Record<string, any> | undefined)",
|
|
3052
|
-
value: input.examples
|
|
3053
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3054
|
-
path: _path + ".examples",
|
|
3055
|
-
expected: "(Record<string, any> | undefined)",
|
|
3056
|
-
value: input.examples
|
|
3057
|
-
})].every(flag => flag); const _vo65 = (input, _path, _exceptionable = true) => [(Array.isArray(input.allOf) || _report(_exceptionable, {
|
|
3085
|
+
}), true].every(flag => flag); const _vo65 = (input, _path, _exceptionable = true) => [(Array.isArray(input.allOf) || _report(_exceptionable, {
|
|
3058
3086
|
path: _path + ".allOf",
|
|
3059
3087
|
expected: "Array<OpenApiV3.IJsonSchema>",
|
|
3060
3088
|
value: input.allOf
|
|
@@ -3070,7 +3098,19 @@ function validateHttpLlmApplication(props) {
|
|
|
3070
3098
|
path: _path + ".allOf",
|
|
3071
3099
|
expected: "Array<OpenApiV3.IJsonSchema>",
|
|
3072
3100
|
value: input.allOf
|
|
3073
|
-
}),
|
|
3101
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
3102
|
+
path: _path + ".examples",
|
|
3103
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3104
|
+
value: input.examples
|
|
3105
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3106
|
+
path: _path + ".examples",
|
|
3107
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3108
|
+
value: input.examples
|
|
3109
|
+
})) || _report(_exceptionable, {
|
|
3110
|
+
path: _path + ".examples",
|
|
3111
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3112
|
+
value: input.examples
|
|
3113
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
3074
3114
|
path: _path + ".title",
|
|
3075
3115
|
expected: "(string | undefined)",
|
|
3076
3116
|
value: input.title
|
|
@@ -3082,15 +3122,7 @@ function validateHttpLlmApplication(props) {
|
|
|
3082
3122
|
path: _path + ".deprecated",
|
|
3083
3123
|
expected: "(boolean | undefined)",
|
|
3084
3124
|
value: input.deprecated
|
|
3085
|
-
}), true
|
|
3086
|
-
path: _path + ".examples",
|
|
3087
|
-
expected: "(Record<string, any> | undefined)",
|
|
3088
|
-
value: input.examples
|
|
3089
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3090
|
-
path: _path + ".examples",
|
|
3091
|
-
expected: "(Record<string, any> | undefined)",
|
|
3092
|
-
value: input.examples
|
|
3093
|
-
})].every(flag => flag); const _vo66 = (input, _path, _exceptionable = true) => [(Array.isArray(input.anyOf) || _report(_exceptionable, {
|
|
3125
|
+
}), true].every(flag => flag); const _vo66 = (input, _path, _exceptionable = true) => [(Array.isArray(input.anyOf) || _report(_exceptionable, {
|
|
3094
3126
|
path: _path + ".anyOf",
|
|
3095
3127
|
expected: "Array<OpenApiV3.IJsonSchema>",
|
|
3096
3128
|
value: input.anyOf
|
|
@@ -3106,7 +3138,19 @@ function validateHttpLlmApplication(props) {
|
|
|
3106
3138
|
path: _path + ".anyOf",
|
|
3107
3139
|
expected: "Array<OpenApiV3.IJsonSchema>",
|
|
3108
3140
|
value: input.anyOf
|
|
3109
|
-
}),
|
|
3141
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
3142
|
+
path: _path + ".examples",
|
|
3143
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3144
|
+
value: input.examples
|
|
3145
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3146
|
+
path: _path + ".examples",
|
|
3147
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3148
|
+
value: input.examples
|
|
3149
|
+
})) || _report(_exceptionable, {
|
|
3150
|
+
path: _path + ".examples",
|
|
3151
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3152
|
+
value: input.examples
|
|
3153
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
3110
3154
|
path: _path + ".title",
|
|
3111
3155
|
expected: "(string | undefined)",
|
|
3112
3156
|
value: input.title
|
|
@@ -3118,15 +3162,7 @@ function validateHttpLlmApplication(props) {
|
|
|
3118
3162
|
path: _path + ".deprecated",
|
|
3119
3163
|
expected: "(boolean | undefined)",
|
|
3120
3164
|
value: input.deprecated
|
|
3121
|
-
}), true
|
|
3122
|
-
path: _path + ".examples",
|
|
3123
|
-
expected: "(Record<string, any> | undefined)",
|
|
3124
|
-
value: input.examples
|
|
3125
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3126
|
-
path: _path + ".examples",
|
|
3127
|
-
expected: "(Record<string, any> | undefined)",
|
|
3128
|
-
value: input.examples
|
|
3129
|
-
})].every(flag => flag); const _vo67 = (input, _path, _exceptionable = true) => [(Array.isArray(input.oneOf) || _report(_exceptionable, {
|
|
3165
|
+
}), true].every(flag => flag); const _vo67 = (input, _path, _exceptionable = true) => [(Array.isArray(input.oneOf) || _report(_exceptionable, {
|
|
3130
3166
|
path: _path + ".oneOf",
|
|
3131
3167
|
expected: "Array<OpenApiV3.IJsonSchema>",
|
|
3132
3168
|
value: input.oneOf
|
|
@@ -3150,7 +3186,19 @@ function validateHttpLlmApplication(props) {
|
|
|
3150
3186
|
path: _path + ".discriminator",
|
|
3151
3187
|
expected: "(OpenApiV3.IJsonSchema.IOneOf.IDiscriminator | undefined)",
|
|
3152
3188
|
value: input.discriminator
|
|
3153
|
-
}),
|
|
3189
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
3190
|
+
path: _path + ".examples",
|
|
3191
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3192
|
+
value: input.examples
|
|
3193
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3194
|
+
path: _path + ".examples",
|
|
3195
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3196
|
+
value: input.examples
|
|
3197
|
+
})) || _report(_exceptionable, {
|
|
3198
|
+
path: _path + ".examples",
|
|
3199
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3200
|
+
value: input.examples
|
|
3201
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
3154
3202
|
path: _path + ".title",
|
|
3155
3203
|
expected: "(string | undefined)",
|
|
3156
3204
|
value: input.title
|
|
@@ -3162,15 +3210,7 @@ function validateHttpLlmApplication(props) {
|
|
|
3162
3210
|
path: _path + ".deprecated",
|
|
3163
3211
|
expected: "(boolean | undefined)",
|
|
3164
3212
|
value: input.deprecated
|
|
3165
|
-
}), true
|
|
3166
|
-
path: _path + ".examples",
|
|
3167
|
-
expected: "(Record<string, any> | undefined)",
|
|
3168
|
-
value: input.examples
|
|
3169
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3170
|
-
path: _path + ".examples",
|
|
3171
|
-
expected: "(Record<string, any> | undefined)",
|
|
3172
|
-
value: input.examples
|
|
3173
|
-
})].every(flag => flag); const _vo68 = (input, _path, _exceptionable = true) => ["string" === typeof input.propertyName || _report(_exceptionable, {
|
|
3213
|
+
}), true].every(flag => flag); const _vo68 = (input, _path, _exceptionable = true) => ["string" === typeof input.propertyName || _report(_exceptionable, {
|
|
3174
3214
|
path: _path + ".propertyName",
|
|
3175
3215
|
expected: "string",
|
|
3176
3216
|
value: input.propertyName
|
|
@@ -3202,15 +3242,19 @@ function validateHttpLlmApplication(props) {
|
|
|
3202
3242
|
path: _path + ".deprecated",
|
|
3203
3243
|
expected: "(boolean | undefined)",
|
|
3204
3244
|
value: input.deprecated
|
|
3205
|
-
}), true,
|
|
3245
|
+
}), true, (null !== input.examples || _report(_exceptionable, {
|
|
3206
3246
|
path: _path + ".examples",
|
|
3207
|
-
expected: "(Record<string, any> | undefined)",
|
|
3247
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3208
3248
|
value: input.examples
|
|
3209
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3249
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3210
3250
|
path: _path + ".examples",
|
|
3211
|
-
expected: "(Record<string, any> | undefined)",
|
|
3251
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3252
|
+
value: input.examples
|
|
3253
|
+
})) || _report(_exceptionable, {
|
|
3254
|
+
path: _path + ".examples",
|
|
3255
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3212
3256
|
value: input.examples
|
|
3213
|
-
})].every(flag => flag); const _vo70 = (input, _path, _exceptionable = true) => [true, (null !== input.type || _report(_exceptionable, {
|
|
3257
|
+
}))].every(flag => flag); const _vo70 = (input, _path, _exceptionable = true) => [true, (null !== input.type || _report(_exceptionable, {
|
|
3214
3258
|
path: _path + ".type",
|
|
3215
3259
|
expected: "undefined",
|
|
3216
3260
|
value: input.type
|
|
@@ -3230,15 +3274,19 @@ function validateHttpLlmApplication(props) {
|
|
|
3230
3274
|
path: _path + ".deprecated",
|
|
3231
3275
|
expected: "(boolean | undefined)",
|
|
3232
3276
|
value: input.deprecated
|
|
3233
|
-
}), true,
|
|
3277
|
+
}), true, (null !== input.examples || _report(_exceptionable, {
|
|
3234
3278
|
path: _path + ".examples",
|
|
3235
|
-
expected: "(Record<string, any> | undefined)",
|
|
3279
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3236
3280
|
value: input.examples
|
|
3237
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3281
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3238
3282
|
path: _path + ".examples",
|
|
3239
|
-
expected: "(Record<string, any> | undefined)",
|
|
3283
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3284
|
+
value: input.examples
|
|
3285
|
+
})) || _report(_exceptionable, {
|
|
3286
|
+
path: _path + ".examples",
|
|
3287
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3240
3288
|
value: input.examples
|
|
3241
|
-
})].every(flag => flag); const _vo71 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
3289
|
+
}))].every(flag => flag); const _vo71 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
3242
3290
|
const value = input[key];
|
|
3243
3291
|
if (undefined === value)
|
|
3244
3292
|
return true;
|
|
@@ -3329,7 +3377,19 @@ function validateHttpLlmApplication(props) {
|
|
|
3329
3377
|
path: _path + ".$ref",
|
|
3330
3378
|
expected: "`#/components/examples/${string}`",
|
|
3331
3379
|
value: input.$ref
|
|
3332
|
-
}),
|
|
3380
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
3381
|
+
path: _path + ".examples",
|
|
3382
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3383
|
+
value: input.examples
|
|
3384
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3385
|
+
path: _path + ".examples",
|
|
3386
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3387
|
+
value: input.examples
|
|
3388
|
+
})) || _report(_exceptionable, {
|
|
3389
|
+
path: _path + ".examples",
|
|
3390
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3391
|
+
value: input.examples
|
|
3392
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
3333
3393
|
path: _path + ".title",
|
|
3334
3394
|
expected: "(string | undefined)",
|
|
3335
3395
|
value: input.title
|
|
@@ -3341,15 +3401,7 @@ function validateHttpLlmApplication(props) {
|
|
|
3341
3401
|
path: _path + ".deprecated",
|
|
3342
3402
|
expected: "(boolean | undefined)",
|
|
3343
3403
|
value: input.deprecated
|
|
3344
|
-
}), true
|
|
3345
|
-
path: _path + ".examples",
|
|
3346
|
-
expected: "(Record<string, any> | undefined)",
|
|
3347
|
-
value: input.examples
|
|
3348
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3349
|
-
path: _path + ".examples",
|
|
3350
|
-
expected: "(Record<string, any> | undefined)",
|
|
3351
|
-
value: input.examples
|
|
3352
|
-
})].every(flag => flag); const _vo78 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
3404
|
+
}), true].every(flag => flag); const _vo78 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
3353
3405
|
const value = input[key];
|
|
3354
3406
|
if (undefined === value)
|
|
3355
3407
|
return true;
|
|
@@ -3394,7 +3446,19 @@ function validateHttpLlmApplication(props) {
|
|
|
3394
3446
|
path: _path + ".$ref",
|
|
3395
3447
|
expected: "`#/components/headers/${string}`",
|
|
3396
3448
|
value: input.$ref
|
|
3397
|
-
}),
|
|
3449
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
3450
|
+
path: _path + ".examples",
|
|
3451
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3452
|
+
value: input.examples
|
|
3453
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3454
|
+
path: _path + ".examples",
|
|
3455
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3456
|
+
value: input.examples
|
|
3457
|
+
})) || _report(_exceptionable, {
|
|
3458
|
+
path: _path + ".examples",
|
|
3459
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3460
|
+
value: input.examples
|
|
3461
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
3398
3462
|
path: _path + ".title",
|
|
3399
3463
|
expected: "(string | undefined)",
|
|
3400
3464
|
value: input.title
|
|
@@ -3406,15 +3470,7 @@ function validateHttpLlmApplication(props) {
|
|
|
3406
3470
|
path: _path + ".deprecated",
|
|
3407
3471
|
expected: "(boolean | undefined)",
|
|
3408
3472
|
value: input.deprecated
|
|
3409
|
-
}), true
|
|
3410
|
-
path: _path + ".examples",
|
|
3411
|
-
expected: "(Record<string, any> | undefined)",
|
|
3412
|
-
value: input.examples
|
|
3413
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3414
|
-
path: _path + ".examples",
|
|
3415
|
-
expected: "(Record<string, any> | undefined)",
|
|
3416
|
-
value: input.examples
|
|
3417
|
-
})].every(flag => flag); const _vo81 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
3473
|
+
}), true].every(flag => flag); const _vo81 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
3418
3474
|
const value = input[key];
|
|
3419
3475
|
if (undefined === value)
|
|
3420
3476
|
return true;
|
|
@@ -3804,7 +3860,19 @@ function validateHttpLlmApplication(props) {
|
|
|
3804
3860
|
path: _path + ".$ref",
|
|
3805
3861
|
expected: "`#/components/parameters/${string}`",
|
|
3806
3862
|
value: input.$ref
|
|
3807
|
-
}),
|
|
3863
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
3864
|
+
path: _path + ".examples",
|
|
3865
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3866
|
+
value: input.examples
|
|
3867
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3868
|
+
path: _path + ".examples",
|
|
3869
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3870
|
+
value: input.examples
|
|
3871
|
+
})) || _report(_exceptionable, {
|
|
3872
|
+
path: _path + ".examples",
|
|
3873
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3874
|
+
value: input.examples
|
|
3875
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
3808
3876
|
path: _path + ".title",
|
|
3809
3877
|
expected: "(string | undefined)",
|
|
3810
3878
|
value: input.title
|
|
@@ -3816,15 +3884,7 @@ function validateHttpLlmApplication(props) {
|
|
|
3816
3884
|
path: _path + ".deprecated",
|
|
3817
3885
|
expected: "(boolean | undefined)",
|
|
3818
3886
|
value: input.deprecated
|
|
3819
|
-
}), true
|
|
3820
|
-
path: _path + ".examples",
|
|
3821
|
-
expected: "(Record<string, any> | undefined)",
|
|
3822
|
-
value: input.examples
|
|
3823
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3824
|
-
path: _path + ".examples",
|
|
3825
|
-
expected: "(Record<string, any> | undefined)",
|
|
3826
|
-
value: input.examples
|
|
3827
|
-
})].every(flag => flag); const _vo100 = (input, _path, _exceptionable = true) => [undefined === input.operationId || "string" === typeof input.operationId || _report(_exceptionable, {
|
|
3887
|
+
}), true].every(flag => flag); const _vo100 = (input, _path, _exceptionable = true) => [undefined === input.operationId || "string" === typeof input.operationId || _report(_exceptionable, {
|
|
3828
3888
|
path: _path + ".operationId",
|
|
3829
3889
|
expected: "(string | undefined)",
|
|
3830
3890
|
value: input.operationId
|
|
@@ -3920,7 +3980,19 @@ function validateHttpLlmApplication(props) {
|
|
|
3920
3980
|
path: _path + ".$ref",
|
|
3921
3981
|
expected: "`#/components/requestBodies/${string}`",
|
|
3922
3982
|
value: input.$ref
|
|
3923
|
-
}),
|
|
3983
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
3984
|
+
path: _path + ".examples",
|
|
3985
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3986
|
+
value: input.examples
|
|
3987
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3988
|
+
path: _path + ".examples",
|
|
3989
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3990
|
+
value: input.examples
|
|
3991
|
+
})) || _report(_exceptionable, {
|
|
3992
|
+
path: _path + ".examples",
|
|
3993
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
3994
|
+
value: input.examples
|
|
3995
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
3924
3996
|
path: _path + ".title",
|
|
3925
3997
|
expected: "(string | undefined)",
|
|
3926
3998
|
value: input.title
|
|
@@ -3932,15 +4004,7 @@ function validateHttpLlmApplication(props) {
|
|
|
3932
4004
|
path: _path + ".deprecated",
|
|
3933
4005
|
expected: "(boolean | undefined)",
|
|
3934
4006
|
value: input.deprecated
|
|
3935
|
-
}), true
|
|
3936
|
-
path: _path + ".examples",
|
|
3937
|
-
expected: "(Record<string, any> | undefined)",
|
|
3938
|
-
value: input.examples
|
|
3939
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3940
|
-
path: _path + ".examples",
|
|
3941
|
-
expected: "(Record<string, any> | undefined)",
|
|
3942
|
-
value: input.examples
|
|
3943
|
-
})].every(flag => flag); const _vo102 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
4007
|
+
}), true].every(flag => flag); const _vo102 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
3944
4008
|
const value = input[key];
|
|
3945
4009
|
if (undefined === value)
|
|
3946
4010
|
return true;
|
|
@@ -3957,7 +4021,19 @@ function validateHttpLlmApplication(props) {
|
|
|
3957
4021
|
path: _path + ".$ref",
|
|
3958
4022
|
expected: "`#/components/responses/${string}`",
|
|
3959
4023
|
value: input.$ref
|
|
3960
|
-
}),
|
|
4024
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
4025
|
+
path: _path + ".examples",
|
|
4026
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4027
|
+
value: input.examples
|
|
4028
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
4029
|
+
path: _path + ".examples",
|
|
4030
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4031
|
+
value: input.examples
|
|
4032
|
+
})) || _report(_exceptionable, {
|
|
4033
|
+
path: _path + ".examples",
|
|
4034
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4035
|
+
value: input.examples
|
|
4036
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
3961
4037
|
path: _path + ".title",
|
|
3962
4038
|
expected: "(string | undefined)",
|
|
3963
4039
|
value: input.title
|
|
@@ -3969,15 +4045,7 @@ function validateHttpLlmApplication(props) {
|
|
|
3969
4045
|
path: _path + ".deprecated",
|
|
3970
4046
|
expected: "(boolean | undefined)",
|
|
3971
4047
|
value: input.deprecated
|
|
3972
|
-
}), true
|
|
3973
|
-
path: _path + ".examples",
|
|
3974
|
-
expected: "(Record<string, any> | undefined)",
|
|
3975
|
-
value: input.examples
|
|
3976
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
3977
|
-
path: _path + ".examples",
|
|
3978
|
-
expected: "(Record<string, any> | undefined)",
|
|
3979
|
-
value: input.examples
|
|
3980
|
-
})].every(flag => flag); const _vo104 = (input, _path, _exceptionable = true) => ["string" === typeof input.name || _report(_exceptionable, {
|
|
4048
|
+
}), true].every(flag => flag); const _vo104 = (input, _path, _exceptionable = true) => ["string" === typeof input.name || _report(_exceptionable, {
|
|
3981
4049
|
path: _path + ".name",
|
|
3982
4050
|
expected: "string",
|
|
3983
4051
|
value: input.name
|
|
@@ -4287,7 +4355,19 @@ function validateHttpLlmApplication(props) {
|
|
|
4287
4355
|
path: _path + ".nullable",
|
|
4288
4356
|
expected: "(boolean | undefined)",
|
|
4289
4357
|
value: input.nullable
|
|
4290
|
-
}),
|
|
4358
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
4359
|
+
path: _path + ".examples",
|
|
4360
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4361
|
+
value: input.examples
|
|
4362
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
4363
|
+
path: _path + ".examples",
|
|
4364
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4365
|
+
value: input.examples
|
|
4366
|
+
})) || _report(_exceptionable, {
|
|
4367
|
+
path: _path + ".examples",
|
|
4368
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4369
|
+
value: input.examples
|
|
4370
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
4291
4371
|
path: _path + ".title",
|
|
4292
4372
|
expected: "(string | undefined)",
|
|
4293
4373
|
value: input.title
|
|
@@ -4299,15 +4379,7 @@ function validateHttpLlmApplication(props) {
|
|
|
4299
4379
|
path: _path + ".deprecated",
|
|
4300
4380
|
expected: "(boolean | undefined)",
|
|
4301
4381
|
value: input.deprecated
|
|
4302
|
-
}), true, undefined === input.
|
|
4303
|
-
path: _path + ".examples",
|
|
4304
|
-
expected: "(Record<string, any> | undefined)",
|
|
4305
|
-
value: input.examples
|
|
4306
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
4307
|
-
path: _path + ".examples",
|
|
4308
|
-
expected: "(Record<string, any> | undefined)",
|
|
4309
|
-
value: input.examples
|
|
4310
|
-
}), undefined === input.minimum || "number" === typeof input.minimum || _report(_exceptionable, {
|
|
4382
|
+
}), true, undefined === input.minimum || "number" === typeof input.minimum || _report(_exceptionable, {
|
|
4311
4383
|
path: _path + ".minimum",
|
|
4312
4384
|
expected: "(number | undefined)",
|
|
4313
4385
|
value: input.minimum
|
|
@@ -4535,7 +4607,19 @@ function validateHttpLlmApplication(props) {
|
|
|
4535
4607
|
path: _path + ".nullable",
|
|
4536
4608
|
expected: "(boolean | undefined)",
|
|
4537
4609
|
value: input.nullable
|
|
4538
|
-
}),
|
|
4610
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
4611
|
+
path: _path + ".examples",
|
|
4612
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4613
|
+
value: input.examples
|
|
4614
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
4615
|
+
path: _path + ".examples",
|
|
4616
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4617
|
+
value: input.examples
|
|
4618
|
+
})) || _report(_exceptionable, {
|
|
4619
|
+
path: _path + ".examples",
|
|
4620
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4621
|
+
value: input.examples
|
|
4622
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
4539
4623
|
path: _path + ".title",
|
|
4540
4624
|
expected: "(string | undefined)",
|
|
4541
4625
|
value: input.title
|
|
@@ -4547,15 +4631,7 @@ function validateHttpLlmApplication(props) {
|
|
|
4547
4631
|
path: _path + ".deprecated",
|
|
4548
4632
|
expected: "(boolean | undefined)",
|
|
4549
4633
|
value: input.deprecated
|
|
4550
|
-
}), true
|
|
4551
|
-
path: _path + ".examples",
|
|
4552
|
-
expected: "(Record<string, any> | undefined)",
|
|
4553
|
-
value: input.examples
|
|
4554
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
4555
|
-
path: _path + ".examples",
|
|
4556
|
-
expected: "(Record<string, any> | undefined)",
|
|
4557
|
-
value: input.examples
|
|
4558
|
-
})].every(flag => flag); const _vo116 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
4634
|
+
}), true].every(flag => flag); const _vo116 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
4559
4635
|
path: _path + ".nullable",
|
|
4560
4636
|
expected: "(boolean | undefined)",
|
|
4561
4637
|
value: input.nullable
|
|
@@ -4591,15 +4667,19 @@ function validateHttpLlmApplication(props) {
|
|
|
4591
4667
|
path: _path + ".deprecated",
|
|
4592
4668
|
expected: "(boolean | undefined)",
|
|
4593
4669
|
value: input.deprecated
|
|
4594
|
-
}), true,
|
|
4670
|
+
}), true, (null !== input.examples || _report(_exceptionable, {
|
|
4595
4671
|
path: _path + ".examples",
|
|
4596
|
-
expected: "(Record<string, any> | undefined)",
|
|
4672
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4597
4673
|
value: input.examples
|
|
4598
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
4674
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
4599
4675
|
path: _path + ".examples",
|
|
4600
|
-
expected: "(Record<string, any> | undefined)",
|
|
4676
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4677
|
+
value: input.examples
|
|
4678
|
+
})) || _report(_exceptionable, {
|
|
4679
|
+
path: _path + ".examples",
|
|
4680
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4601
4681
|
value: input.examples
|
|
4602
|
-
})].every(flag => flag); const _vo117 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
4682
|
+
}))].every(flag => flag); const _vo117 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
4603
4683
|
path: _path + ".nullable",
|
|
4604
4684
|
expected: "(boolean | undefined)",
|
|
4605
4685
|
value: input.nullable
|
|
@@ -4683,15 +4763,19 @@ function validateHttpLlmApplication(props) {
|
|
|
4683
4763
|
path: _path + ".deprecated",
|
|
4684
4764
|
expected: "(boolean | undefined)",
|
|
4685
4765
|
value: input.deprecated
|
|
4686
|
-
}), true,
|
|
4766
|
+
}), true, (null !== input.examples || _report(_exceptionable, {
|
|
4687
4767
|
path: _path + ".examples",
|
|
4688
|
-
expected: "(Record<string, any> | undefined)",
|
|
4768
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4689
4769
|
value: input.examples
|
|
4690
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
4770
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
4691
4771
|
path: _path + ".examples",
|
|
4692
|
-
expected: "(Record<string, any> | undefined)",
|
|
4772
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4693
4773
|
value: input.examples
|
|
4694
|
-
})
|
|
4774
|
+
})) || _report(_exceptionable, {
|
|
4775
|
+
path: _path + ".examples",
|
|
4776
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4777
|
+
value: input.examples
|
|
4778
|
+
}))].every(flag => flag); const _vo118 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
4695
4779
|
path: _path + ".nullable",
|
|
4696
4780
|
expected: "(boolean | undefined)",
|
|
4697
4781
|
value: input.nullable
|
|
@@ -4751,15 +4835,19 @@ function validateHttpLlmApplication(props) {
|
|
|
4751
4835
|
path: _path + ".deprecated",
|
|
4752
4836
|
expected: "(boolean | undefined)",
|
|
4753
4837
|
value: input.deprecated
|
|
4754
|
-
}), true,
|
|
4838
|
+
}), true, (null !== input.examples || _report(_exceptionable, {
|
|
4755
4839
|
path: _path + ".examples",
|
|
4756
|
-
expected: "(Record<string, any> | undefined)",
|
|
4840
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4757
4841
|
value: input.examples
|
|
4758
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
4842
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
4759
4843
|
path: _path + ".examples",
|
|
4760
|
-
expected: "(Record<string, any> | undefined)",
|
|
4844
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4761
4845
|
value: input.examples
|
|
4762
|
-
})
|
|
4846
|
+
})) || _report(_exceptionable, {
|
|
4847
|
+
path: _path + ".examples",
|
|
4848
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4849
|
+
value: input.examples
|
|
4850
|
+
}))].every(flag => flag); const _vo119 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
4763
4851
|
path: _path + ".nullable",
|
|
4764
4852
|
expected: "(boolean | undefined)",
|
|
4765
4853
|
value: input.nullable
|
|
@@ -4823,15 +4911,19 @@ function validateHttpLlmApplication(props) {
|
|
|
4823
4911
|
path: _path + ".deprecated",
|
|
4824
4912
|
expected: "(boolean | undefined)",
|
|
4825
4913
|
value: input.deprecated
|
|
4826
|
-
}), true,
|
|
4914
|
+
}), true, (null !== input.examples || _report(_exceptionable, {
|
|
4827
4915
|
path: _path + ".examples",
|
|
4828
|
-
expected: "(Record<string, any> | undefined)",
|
|
4916
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4829
4917
|
value: input.examples
|
|
4830
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
4918
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
4831
4919
|
path: _path + ".examples",
|
|
4832
|
-
expected: "(Record<string, any> | undefined)",
|
|
4920
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4921
|
+
value: input.examples
|
|
4922
|
+
})) || _report(_exceptionable, {
|
|
4923
|
+
path: _path + ".examples",
|
|
4924
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4833
4925
|
value: input.examples
|
|
4834
|
-
})].every(flag => flag); const _vo120 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
4926
|
+
}))].every(flag => flag); const _vo120 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
4835
4927
|
path: _path + ".nullable",
|
|
4836
4928
|
expected: "(boolean | undefined)",
|
|
4837
4929
|
value: input.nullable
|
|
@@ -4919,15 +5011,19 @@ function validateHttpLlmApplication(props) {
|
|
|
4919
5011
|
path: _path + ".deprecated",
|
|
4920
5012
|
expected: "(boolean | undefined)",
|
|
4921
5013
|
value: input.deprecated
|
|
4922
|
-
}), true,
|
|
5014
|
+
}), true, (null !== input.examples || _report(_exceptionable, {
|
|
4923
5015
|
path: _path + ".examples",
|
|
4924
|
-
expected: "(Record<string, any> | undefined)",
|
|
5016
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4925
5017
|
value: input.examples
|
|
4926
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5018
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
4927
5019
|
path: _path + ".examples",
|
|
4928
|
-
expected: "(Record<string, any> | undefined)",
|
|
5020
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4929
5021
|
value: input.examples
|
|
4930
|
-
})
|
|
5022
|
+
})) || _report(_exceptionable, {
|
|
5023
|
+
path: _path + ".examples",
|
|
5024
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5025
|
+
value: input.examples
|
|
5026
|
+
}))].every(flag => flag); const _vo121 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
4931
5027
|
path: _path + ".nullable",
|
|
4932
5028
|
expected: "(boolean | undefined)",
|
|
4933
5029
|
value: input.nullable
|
|
@@ -4987,19 +5083,35 @@ function validateHttpLlmApplication(props) {
|
|
|
4987
5083
|
path: _path + ".deprecated",
|
|
4988
5084
|
expected: "(boolean | undefined)",
|
|
4989
5085
|
value: input.deprecated
|
|
4990
|
-
}), true,
|
|
5086
|
+
}), true, (null !== input.examples || _report(_exceptionable, {
|
|
4991
5087
|
path: _path + ".examples",
|
|
4992
|
-
expected: "(Record<string, any> | undefined)",
|
|
5088
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4993
5089
|
value: input.examples
|
|
4994
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5090
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
4995
5091
|
path: _path + ".examples",
|
|
4996
|
-
expected: "(Record<string, any> | undefined)",
|
|
5092
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5093
|
+
value: input.examples
|
|
5094
|
+
})) || _report(_exceptionable, {
|
|
5095
|
+
path: _path + ".examples",
|
|
5096
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
4997
5097
|
value: input.examples
|
|
4998
|
-
})].every(flag => flag); const _vo122 = (input, _path, _exceptionable = true) => ["string" === typeof input.$ref || _report(_exceptionable, {
|
|
5098
|
+
}))].every(flag => flag); const _vo122 = (input, _path, _exceptionable = true) => ["string" === typeof input.$ref || _report(_exceptionable, {
|
|
4999
5099
|
path: _path + ".$ref",
|
|
5000
5100
|
expected: "string",
|
|
5001
5101
|
value: input.$ref
|
|
5002
|
-
}),
|
|
5102
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
5103
|
+
path: _path + ".examples",
|
|
5104
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5105
|
+
value: input.examples
|
|
5106
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5107
|
+
path: _path + ".examples",
|
|
5108
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5109
|
+
value: input.examples
|
|
5110
|
+
})) || _report(_exceptionable, {
|
|
5111
|
+
path: _path + ".examples",
|
|
5112
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5113
|
+
value: input.examples
|
|
5114
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
5003
5115
|
path: _path + ".title",
|
|
5004
5116
|
expected: "(string | undefined)",
|
|
5005
5117
|
value: input.title
|
|
@@ -5011,19 +5123,23 @@ function validateHttpLlmApplication(props) {
|
|
|
5011
5123
|
path: _path + ".deprecated",
|
|
5012
5124
|
expected: "(boolean | undefined)",
|
|
5013
5125
|
value: input.deprecated
|
|
5014
|
-
}), true
|
|
5126
|
+
}), true].every(flag => flag); const _vo123 = (input, _path, _exceptionable = true) => ["string" === typeof input.$recursiveRef || _report(_exceptionable, {
|
|
5127
|
+
path: _path + ".$recursiveRef",
|
|
5128
|
+
expected: "string",
|
|
5129
|
+
value: input.$recursiveRef
|
|
5130
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
5015
5131
|
path: _path + ".examples",
|
|
5016
|
-
expected: "(Record<string, any> | undefined)",
|
|
5132
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5017
5133
|
value: input.examples
|
|
5018
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5134
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5019
5135
|
path: _path + ".examples",
|
|
5020
|
-
expected: "(Record<string, any> | undefined)",
|
|
5136
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5021
5137
|
value: input.examples
|
|
5022
|
-
})
|
|
5023
|
-
path: _path + "
|
|
5024
|
-
expected: "string",
|
|
5025
|
-
value: input
|
|
5026
|
-
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
5138
|
+
})) || _report(_exceptionable, {
|
|
5139
|
+
path: _path + ".examples",
|
|
5140
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5141
|
+
value: input.examples
|
|
5142
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
5027
5143
|
path: _path + ".title",
|
|
5028
5144
|
expected: "(string | undefined)",
|
|
5029
5145
|
value: input.title
|
|
@@ -5035,15 +5151,7 @@ function validateHttpLlmApplication(props) {
|
|
|
5035
5151
|
path: _path + ".deprecated",
|
|
5036
5152
|
expected: "(boolean | undefined)",
|
|
5037
5153
|
value: input.deprecated
|
|
5038
|
-
}), true
|
|
5039
|
-
path: _path + ".examples",
|
|
5040
|
-
expected: "(Record<string, any> | undefined)",
|
|
5041
|
-
value: input.examples
|
|
5042
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5043
|
-
path: _path + ".examples",
|
|
5044
|
-
expected: "(Record<string, any> | undefined)",
|
|
5045
|
-
value: input.examples
|
|
5046
|
-
})].every(flag => flag); const _vo124 = (input, _path, _exceptionable = true) => [(Array.isArray(input.allOf) || _report(_exceptionable, {
|
|
5154
|
+
}), true].every(flag => flag); const _vo124 = (input, _path, _exceptionable = true) => [(Array.isArray(input.allOf) || _report(_exceptionable, {
|
|
5047
5155
|
path: _path + ".allOf",
|
|
5048
5156
|
expected: "Array<OpenApiV3_1.IJsonSchema>",
|
|
5049
5157
|
value: input.allOf
|
|
@@ -5059,7 +5167,19 @@ function validateHttpLlmApplication(props) {
|
|
|
5059
5167
|
path: _path + ".allOf",
|
|
5060
5168
|
expected: "Array<OpenApiV3_1.IJsonSchema>",
|
|
5061
5169
|
value: input.allOf
|
|
5062
|
-
}),
|
|
5170
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
5171
|
+
path: _path + ".examples",
|
|
5172
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5173
|
+
value: input.examples
|
|
5174
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5175
|
+
path: _path + ".examples",
|
|
5176
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5177
|
+
value: input.examples
|
|
5178
|
+
})) || _report(_exceptionable, {
|
|
5179
|
+
path: _path + ".examples",
|
|
5180
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5181
|
+
value: input.examples
|
|
5182
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
5063
5183
|
path: _path + ".title",
|
|
5064
5184
|
expected: "(string | undefined)",
|
|
5065
5185
|
value: input.title
|
|
@@ -5071,15 +5191,7 @@ function validateHttpLlmApplication(props) {
|
|
|
5071
5191
|
path: _path + ".deprecated",
|
|
5072
5192
|
expected: "(boolean | undefined)",
|
|
5073
5193
|
value: input.deprecated
|
|
5074
|
-
}), true
|
|
5075
|
-
path: _path + ".examples",
|
|
5076
|
-
expected: "(Record<string, any> | undefined)",
|
|
5077
|
-
value: input.examples
|
|
5078
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5079
|
-
path: _path + ".examples",
|
|
5080
|
-
expected: "(Record<string, any> | undefined)",
|
|
5081
|
-
value: input.examples
|
|
5082
|
-
})].every(flag => flag); const _vo125 = (input, _path, _exceptionable = true) => [(Array.isArray(input.anyOf) || _report(_exceptionable, {
|
|
5194
|
+
}), true].every(flag => flag); const _vo125 = (input, _path, _exceptionable = true) => [(Array.isArray(input.anyOf) || _report(_exceptionable, {
|
|
5083
5195
|
path: _path + ".anyOf",
|
|
5084
5196
|
expected: "Array<OpenApiV3_1.IJsonSchema>",
|
|
5085
5197
|
value: input.anyOf
|
|
@@ -5095,7 +5207,19 @@ function validateHttpLlmApplication(props) {
|
|
|
5095
5207
|
path: _path + ".anyOf",
|
|
5096
5208
|
expected: "Array<OpenApiV3_1.IJsonSchema>",
|
|
5097
5209
|
value: input.anyOf
|
|
5098
|
-
}),
|
|
5210
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
5211
|
+
path: _path + ".examples",
|
|
5212
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5213
|
+
value: input.examples
|
|
5214
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5215
|
+
path: _path + ".examples",
|
|
5216
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5217
|
+
value: input.examples
|
|
5218
|
+
})) || _report(_exceptionable, {
|
|
5219
|
+
path: _path + ".examples",
|
|
5220
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5221
|
+
value: input.examples
|
|
5222
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
5099
5223
|
path: _path + ".title",
|
|
5100
5224
|
expected: "(string | undefined)",
|
|
5101
5225
|
value: input.title
|
|
@@ -5107,15 +5231,7 @@ function validateHttpLlmApplication(props) {
|
|
|
5107
5231
|
path: _path + ".deprecated",
|
|
5108
5232
|
expected: "(boolean | undefined)",
|
|
5109
5233
|
value: input.deprecated
|
|
5110
|
-
}), true
|
|
5111
|
-
path: _path + ".examples",
|
|
5112
|
-
expected: "(Record<string, any> | undefined)",
|
|
5113
|
-
value: input.examples
|
|
5114
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5115
|
-
path: _path + ".examples",
|
|
5116
|
-
expected: "(Record<string, any> | undefined)",
|
|
5117
|
-
value: input.examples
|
|
5118
|
-
})].every(flag => flag); const _vo126 = (input, _path, _exceptionable = true) => [(Array.isArray(input.oneOf) || _report(_exceptionable, {
|
|
5234
|
+
}), true].every(flag => flag); const _vo126 = (input, _path, _exceptionable = true) => [(Array.isArray(input.oneOf) || _report(_exceptionable, {
|
|
5119
5235
|
path: _path + ".oneOf",
|
|
5120
5236
|
expected: "Array<OpenApiV3_1.IJsonSchema>",
|
|
5121
5237
|
value: input.oneOf
|
|
@@ -5139,7 +5255,19 @@ function validateHttpLlmApplication(props) {
|
|
|
5139
5255
|
path: _path + ".discriminator",
|
|
5140
5256
|
expected: "(OpenApiV3_1.IJsonSchema.IOneOf.IDiscriminator | undefined)",
|
|
5141
5257
|
value: input.discriminator
|
|
5142
|
-
}),
|
|
5258
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
5259
|
+
path: _path + ".examples",
|
|
5260
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5261
|
+
value: input.examples
|
|
5262
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5263
|
+
path: _path + ".examples",
|
|
5264
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5265
|
+
value: input.examples
|
|
5266
|
+
})) || _report(_exceptionable, {
|
|
5267
|
+
path: _path + ".examples",
|
|
5268
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5269
|
+
value: input.examples
|
|
5270
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
5143
5271
|
path: _path + ".title",
|
|
5144
5272
|
expected: "(string | undefined)",
|
|
5145
5273
|
value: input.title
|
|
@@ -5151,15 +5279,7 @@ function validateHttpLlmApplication(props) {
|
|
|
5151
5279
|
path: _path + ".deprecated",
|
|
5152
5280
|
expected: "(boolean | undefined)",
|
|
5153
5281
|
value: input.deprecated
|
|
5154
|
-
}), true
|
|
5155
|
-
path: _path + ".examples",
|
|
5156
|
-
expected: "(Record<string, any> | undefined)",
|
|
5157
|
-
value: input.examples
|
|
5158
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5159
|
-
path: _path + ".examples",
|
|
5160
|
-
expected: "(Record<string, any> | undefined)",
|
|
5161
|
-
value: input.examples
|
|
5162
|
-
})].every(flag => flag); const _vo127 = (input, _path, _exceptionable = true) => ["string" === typeof input.propertyName || _report(_exceptionable, {
|
|
5282
|
+
}), true].every(flag => flag); const _vo127 = (input, _path, _exceptionable = true) => ["string" === typeof input.propertyName || _report(_exceptionable, {
|
|
5163
5283
|
path: _path + ".propertyName",
|
|
5164
5284
|
expected: "string",
|
|
5165
5285
|
value: input.propertyName
|
|
@@ -5191,15 +5311,19 @@ function validateHttpLlmApplication(props) {
|
|
|
5191
5311
|
path: _path + ".deprecated",
|
|
5192
5312
|
expected: "(boolean | undefined)",
|
|
5193
5313
|
value: input.deprecated
|
|
5194
|
-
}), true,
|
|
5314
|
+
}), true, (null !== input.examples || _report(_exceptionable, {
|
|
5195
5315
|
path: _path + ".examples",
|
|
5196
|
-
expected: "(Record<string, any> | undefined)",
|
|
5316
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5197
5317
|
value: input.examples
|
|
5198
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5318
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5199
5319
|
path: _path + ".examples",
|
|
5200
|
-
expected: "(Record<string, any> | undefined)",
|
|
5320
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5201
5321
|
value: input.examples
|
|
5202
|
-
})
|
|
5322
|
+
})) || _report(_exceptionable, {
|
|
5323
|
+
path: _path + ".examples",
|
|
5324
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5325
|
+
value: input.examples
|
|
5326
|
+
}))].every(flag => flag); const _vo129 = (input, _path, _exceptionable = true) => [(null !== input.type || _report(_exceptionable, {
|
|
5203
5327
|
path: _path + ".type",
|
|
5204
5328
|
expected: "undefined",
|
|
5205
5329
|
value: input.type
|
|
@@ -5219,15 +5343,19 @@ function validateHttpLlmApplication(props) {
|
|
|
5219
5343
|
path: _path + ".deprecated",
|
|
5220
5344
|
expected: "(boolean | undefined)",
|
|
5221
5345
|
value: input.deprecated
|
|
5222
|
-
}), true,
|
|
5346
|
+
}), true, (null !== input.examples || _report(_exceptionable, {
|
|
5223
5347
|
path: _path + ".examples",
|
|
5224
|
-
expected: "(Record<string, any> | undefined)",
|
|
5348
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5225
5349
|
value: input.examples
|
|
5226
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5350
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5227
5351
|
path: _path + ".examples",
|
|
5228
|
-
expected: "(Record<string, any> | undefined)",
|
|
5352
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5229
5353
|
value: input.examples
|
|
5230
|
-
})
|
|
5354
|
+
})) || _report(_exceptionable, {
|
|
5355
|
+
path: _path + ".examples",
|
|
5356
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5357
|
+
value: input.examples
|
|
5358
|
+
}))].every(flag => flag); const _vo130 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
5231
5359
|
const value = input[key];
|
|
5232
5360
|
if (undefined === value)
|
|
5233
5361
|
return true;
|
|
@@ -5405,7 +5533,19 @@ function validateHttpLlmApplication(props) {
|
|
|
5405
5533
|
path: _path + ".$ref",
|
|
5406
5534
|
expected: "`#/components/examples/${string}`",
|
|
5407
5535
|
value: input.$ref
|
|
5408
|
-
}),
|
|
5536
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
5537
|
+
path: _path + ".examples",
|
|
5538
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5539
|
+
value: input.examples
|
|
5540
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5541
|
+
path: _path + ".examples",
|
|
5542
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5543
|
+
value: input.examples
|
|
5544
|
+
})) || _report(_exceptionable, {
|
|
5545
|
+
path: _path + ".examples",
|
|
5546
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5547
|
+
value: input.examples
|
|
5548
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
5409
5549
|
path: _path + ".title",
|
|
5410
5550
|
expected: "(string | undefined)",
|
|
5411
5551
|
value: input.title
|
|
@@ -5417,19 +5557,23 @@ function validateHttpLlmApplication(props) {
|
|
|
5417
5557
|
path: _path + ".deprecated",
|
|
5418
5558
|
expected: "(boolean | undefined)",
|
|
5419
5559
|
value: input.deprecated
|
|
5420
|
-
}), true
|
|
5560
|
+
}), true].every(flag => flag); const _vo136 = (input, _path, _exceptionable = true) => ["string" === typeof input.$ref && RegExp(/^#\/components\/headers\/(.*)/).test(input.$ref) || _report(_exceptionable, {
|
|
5561
|
+
path: _path + ".$ref",
|
|
5562
|
+
expected: "`#/components/headers/${string}`",
|
|
5563
|
+
value: input.$ref
|
|
5564
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
5421
5565
|
path: _path + ".examples",
|
|
5422
|
-
expected: "(Record<string, any> | undefined)",
|
|
5566
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5423
5567
|
value: input.examples
|
|
5424
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5568
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5425
5569
|
path: _path + ".examples",
|
|
5426
|
-
expected: "(Record<string, any> | undefined)",
|
|
5570
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5427
5571
|
value: input.examples
|
|
5428
|
-
})
|
|
5429
|
-
path: _path + "
|
|
5430
|
-
expected: "
|
|
5431
|
-
value: input
|
|
5432
|
-
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
5572
|
+
})) || _report(_exceptionable, {
|
|
5573
|
+
path: _path + ".examples",
|
|
5574
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5575
|
+
value: input.examples
|
|
5576
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
5433
5577
|
path: _path + ".title",
|
|
5434
5578
|
expected: "(string | undefined)",
|
|
5435
5579
|
value: input.title
|
|
@@ -5441,19 +5585,23 @@ function validateHttpLlmApplication(props) {
|
|
|
5441
5585
|
path: _path + ".deprecated",
|
|
5442
5586
|
expected: "(boolean | undefined)",
|
|
5443
5587
|
value: input.deprecated
|
|
5444
|
-
}), true
|
|
5588
|
+
}), true].every(flag => flag); const _vo137 = (input, _path, _exceptionable = true) => ["string" === typeof input.$ref && RegExp(/^#\/components\/parameters\/(.*)/).test(input.$ref) || _report(_exceptionable, {
|
|
5589
|
+
path: _path + ".$ref",
|
|
5590
|
+
expected: "`#/components/parameters/${string}`",
|
|
5591
|
+
value: input.$ref
|
|
5592
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
5445
5593
|
path: _path + ".examples",
|
|
5446
|
-
expected: "(Record<string, any> | undefined)",
|
|
5594
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5447
5595
|
value: input.examples
|
|
5448
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5596
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5449
5597
|
path: _path + ".examples",
|
|
5450
|
-
expected: "(Record<string, any> | undefined)",
|
|
5598
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5451
5599
|
value: input.examples
|
|
5452
|
-
})
|
|
5453
|
-
path: _path + "
|
|
5454
|
-
expected: "
|
|
5455
|
-
value: input
|
|
5456
|
-
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
5600
|
+
})) || _report(_exceptionable, {
|
|
5601
|
+
path: _path + ".examples",
|
|
5602
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5603
|
+
value: input.examples
|
|
5604
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
5457
5605
|
path: _path + ".title",
|
|
5458
5606
|
expected: "(string | undefined)",
|
|
5459
5607
|
value: input.title
|
|
@@ -5465,15 +5613,7 @@ function validateHttpLlmApplication(props) {
|
|
|
5465
5613
|
path: _path + ".deprecated",
|
|
5466
5614
|
expected: "(boolean | undefined)",
|
|
5467
5615
|
value: input.deprecated
|
|
5468
|
-
}), true
|
|
5469
|
-
path: _path + ".examples",
|
|
5470
|
-
expected: "(Record<string, any> | undefined)",
|
|
5471
|
-
value: input.examples
|
|
5472
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5473
|
-
path: _path + ".examples",
|
|
5474
|
-
expected: "(Record<string, any> | undefined)",
|
|
5475
|
-
value: input.examples
|
|
5476
|
-
})].every(flag => flag); const _vo138 = (input, _path, _exceptionable = true) => [undefined === input.operationId || "string" === typeof input.operationId || _report(_exceptionable, {
|
|
5616
|
+
}), true].every(flag => flag); const _vo138 = (input, _path, _exceptionable = true) => [undefined === input.operationId || "string" === typeof input.operationId || _report(_exceptionable, {
|
|
5477
5617
|
path: _path + ".operationId",
|
|
5478
5618
|
expected: "(string | undefined)",
|
|
5479
5619
|
value: input.operationId
|
|
@@ -5614,7 +5754,19 @@ function validateHttpLlmApplication(props) {
|
|
|
5614
5754
|
path: _path + ".$ref",
|
|
5615
5755
|
expected: "`#/components/requestBodies/${string}`",
|
|
5616
5756
|
value: input.$ref
|
|
5617
|
-
}),
|
|
5757
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
5758
|
+
path: _path + ".examples",
|
|
5759
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5760
|
+
value: input.examples
|
|
5761
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5762
|
+
path: _path + ".examples",
|
|
5763
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5764
|
+
value: input.examples
|
|
5765
|
+
})) || _report(_exceptionable, {
|
|
5766
|
+
path: _path + ".examples",
|
|
5767
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5768
|
+
value: input.examples
|
|
5769
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
5618
5770
|
path: _path + ".title",
|
|
5619
5771
|
expected: "(string | undefined)",
|
|
5620
5772
|
value: input.title
|
|
@@ -5626,15 +5778,7 @@ function validateHttpLlmApplication(props) {
|
|
|
5626
5778
|
path: _path + ".deprecated",
|
|
5627
5779
|
expected: "(boolean | undefined)",
|
|
5628
5780
|
value: input.deprecated
|
|
5629
|
-
}), true
|
|
5630
|
-
path: _path + ".examples",
|
|
5631
|
-
expected: "(Record<string, any> | undefined)",
|
|
5632
|
-
value: input.examples
|
|
5633
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5634
|
-
path: _path + ".examples",
|
|
5635
|
-
expected: "(Record<string, any> | undefined)",
|
|
5636
|
-
value: input.examples
|
|
5637
|
-
})].every(flag => flag); const _vo143 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
5781
|
+
}), true].every(flag => flag); const _vo143 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
5638
5782
|
const value = input[key];
|
|
5639
5783
|
if (undefined === value)
|
|
5640
5784
|
return true;
|
|
@@ -5712,7 +5856,19 @@ function validateHttpLlmApplication(props) {
|
|
|
5712
5856
|
path: _path + ".$ref",
|
|
5713
5857
|
expected: "`#/components/responses/${string}`",
|
|
5714
5858
|
value: input.$ref
|
|
5715
|
-
}),
|
|
5859
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
5860
|
+
path: _path + ".examples",
|
|
5861
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5862
|
+
value: input.examples
|
|
5863
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5864
|
+
path: _path + ".examples",
|
|
5865
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5866
|
+
value: input.examples
|
|
5867
|
+
})) || _report(_exceptionable, {
|
|
5868
|
+
path: _path + ".examples",
|
|
5869
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
5870
|
+
value: input.examples
|
|
5871
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
5716
5872
|
path: _path + ".title",
|
|
5717
5873
|
expected: "(string | undefined)",
|
|
5718
5874
|
value: input.title
|
|
@@ -5724,15 +5880,7 @@ function validateHttpLlmApplication(props) {
|
|
|
5724
5880
|
path: _path + ".deprecated",
|
|
5725
5881
|
expected: "(boolean | undefined)",
|
|
5726
5882
|
value: input.deprecated
|
|
5727
|
-
}), true
|
|
5728
|
-
path: _path + ".examples",
|
|
5729
|
-
expected: "(Record<string, any> | undefined)",
|
|
5730
|
-
value: input.examples
|
|
5731
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
5732
|
-
path: _path + ".examples",
|
|
5733
|
-
expected: "(Record<string, any> | undefined)",
|
|
5734
|
-
value: input.examples
|
|
5735
|
-
})].every(flag => flag); const _vo148 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
5883
|
+
}), true].every(flag => flag); const _vo148 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
|
|
5736
5884
|
const value = input[key];
|
|
5737
5885
|
if (undefined === value)
|
|
5738
5886
|
return true;
|
|
@@ -5983,7 +6131,19 @@ function validateHttpLlmApplication(props) {
|
|
|
5983
6131
|
path: _path + ".$ref",
|
|
5984
6132
|
expected: "`#/components/pathItems/${string}`",
|
|
5985
6133
|
value: input.$ref
|
|
5986
|
-
}),
|
|
6134
|
+
}), (null !== input.examples || _report(_exceptionable, {
|
|
6135
|
+
path: _path + ".examples",
|
|
6136
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6137
|
+
value: input.examples
|
|
6138
|
+
})) && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
6139
|
+
path: _path + ".examples",
|
|
6140
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6141
|
+
value: input.examples
|
|
6142
|
+
})) || _report(_exceptionable, {
|
|
6143
|
+
path: _path + ".examples",
|
|
6144
|
+
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
6145
|
+
value: input.examples
|
|
6146
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
5987
6147
|
path: _path + ".title",
|
|
5988
6148
|
expected: "(string | undefined)",
|
|
5989
6149
|
value: input.title
|
|
@@ -5995,15 +6155,7 @@ function validateHttpLlmApplication(props) {
|
|
|
5995
6155
|
path: _path + ".deprecated",
|
|
5996
6156
|
expected: "(boolean | undefined)",
|
|
5997
6157
|
value: input.deprecated
|
|
5998
|
-
}), true
|
|
5999
|
-
path: _path + ".examples",
|
|
6000
|
-
expected: "(Record<string, any> | undefined)",
|
|
6001
|
-
value: input.examples
|
|
6002
|
-
})) && _vo58(input.examples, _path + ".examples", true && _exceptionable) || _report(_exceptionable, {
|
|
6003
|
-
path: _path + ".examples",
|
|
6004
|
-
expected: "(Record<string, any> | undefined)",
|
|
6005
|
-
value: input.examples
|
|
6006
|
-
})].every(flag => flag); const _vo165 = (input, _path, _exceptionable = true) => ["string" === typeof input.name || _report(_exceptionable, {
|
|
6158
|
+
}), true].every(flag => flag); const _vo165 = (input, _path, _exceptionable = true) => ["string" === typeof input.name || _report(_exceptionable, {
|
|
6007
6159
|
path: _path + ".name",
|
|
6008
6160
|
expected: "string",
|
|
6009
6161
|
value: input.name
|
|
@@ -6095,10 +6247,10 @@ function validateHttpLlmApplication(props) {
|
|
|
6095
6247
|
path: _path + ".tags",
|
|
6096
6248
|
expected: "(Array<OpenApi.IDocument.ITag> | undefined)",
|
|
6097
6249
|
value: input.tags
|
|
6098
|
-
}), true === input["x-samchon-emended"] || _report(_exceptionable, {
|
|
6099
|
-
path: _path + "[\"x-samchon-emended\"]",
|
|
6250
|
+
}), true === input["x-samchon-emended-v4"] || _report(_exceptionable, {
|
|
6251
|
+
path: _path + "[\"x-samchon-emended-v4\"]",
|
|
6100
6252
|
expected: "true",
|
|
6101
|
-
value: input["x-samchon-emended"]
|
|
6253
|
+
value: input["x-samchon-emended-v4"]
|
|
6102
6254
|
})].every(flag => flag); const _vo167 = (input, _path, _exceptionable = true) => ["string" === typeof input.url || _report(_exceptionable, {
|
|
6103
6255
|
path: _path + ".url",
|
|
6104
6256
|
expected: "string",
|
|
@@ -6317,13 +6469,13 @@ function validateHttpLlmApplication(props) {
|
|
|
6317
6469
|
path: _path + ".maximum",
|
|
6318
6470
|
expected: "((number & Type<\"int64\">) | undefined)",
|
|
6319
6471
|
value: input.maximum
|
|
6320
|
-
}), undefined === input.exclusiveMinimum || "
|
|
6472
|
+
}), undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
6321
6473
|
path: _path + ".exclusiveMinimum",
|
|
6322
|
-
expected: "(
|
|
6474
|
+
expected: "(number | undefined)",
|
|
6323
6475
|
value: input.exclusiveMinimum
|
|
6324
|
-
}), undefined === input.exclusiveMaximum || "
|
|
6476
|
+
}), undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
6325
6477
|
path: _path + ".exclusiveMaximum",
|
|
6326
|
-
expected: "(
|
|
6478
|
+
expected: "(number | undefined)",
|
|
6327
6479
|
value: input.exclusiveMaximum
|
|
6328
6480
|
}), undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 || _report(_exceptionable, {
|
|
6329
6481
|
path: _path + ".multipleOf",
|
|
@@ -6373,13 +6525,13 @@ function validateHttpLlmApplication(props) {
|
|
|
6373
6525
|
path: _path + ".maximum",
|
|
6374
6526
|
expected: "(number | undefined)",
|
|
6375
6527
|
value: input.maximum
|
|
6376
|
-
}), undefined === input.exclusiveMinimum || "
|
|
6528
|
+
}), undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || _report(_exceptionable, {
|
|
6377
6529
|
path: _path + ".exclusiveMinimum",
|
|
6378
|
-
expected: "(
|
|
6530
|
+
expected: "(number | undefined)",
|
|
6379
6531
|
value: input.exclusiveMinimum
|
|
6380
|
-
}), undefined === input.exclusiveMaximum || "
|
|
6532
|
+
}), undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || _report(_exceptionable, {
|
|
6381
6533
|
path: _path + ".exclusiveMaximum",
|
|
6382
|
-
expected: "(
|
|
6534
|
+
expected: "(number | undefined)",
|
|
6383
6535
|
value: input.exclusiveMaximum
|
|
6384
6536
|
}), undefined === input.multipleOf || "number" === typeof input.multipleOf && (0 < input.multipleOf || _report(_exceptionable, {
|
|
6385
6537
|
path: _path + ".multipleOf",
|
|
@@ -7743,7 +7895,7 @@ function validateHttpLlmApplication(props) {
|
|
|
7743
7895
|
return _vo48(input, _path, true && _exceptionable);
|
|
7744
7896
|
else if ("string" === typeof input.openapi && RegExp(/^3\.1\.[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.openapi))
|
|
7745
7897
|
return _vo105(input, _path, true && _exceptionable);
|
|
7746
|
-
else if (undefined !== input["x-samchon-emended"])
|
|
7898
|
+
else if (undefined !== input["x-samchon-emended-v4"])
|
|
7747
7899
|
return _vo166(input, _path, true && _exceptionable);
|
|
7748
7900
|
else
|
|
7749
7901
|
return _report(_exceptionable, {
|