@agentica/core 0.34.2 → 0.35.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/Agentica.d.ts +9 -10
- package/lib/Agentica.js.map +1 -1
- package/lib/MicroAgentica.d.ts +9 -10
- package/lib/MicroAgentica.js.map +1 -1
- package/lib/constants/AgenticaDefaultPrompt.d.ts +1 -2
- package/lib/constants/AgenticaDefaultPrompt.js.map +1 -1
- package/lib/context/AgenticaContext.d.ts +6 -7
- package/lib/context/AgenticaOperation.d.ts +5 -5
- package/lib/context/AgenticaOperationCollection.d.ts +5 -6
- package/lib/context/AgenticaOperationSelection.d.ts +2 -3
- package/lib/context/MicroAgenticaContext.d.ts +5 -6
- package/lib/context/internal/AgenticaOperationComposer.js.map +1 -1
- package/lib/context/internal/AgenticaOperationComposer.spec.js +41 -9
- package/lib/context/internal/AgenticaOperationComposer.spec.js.map +1 -1
- package/lib/context/internal/__IChatInitialApplication.d.ts +1 -1
- package/lib/context/internal/isAgenticaContext.js.map +1 -1
- package/lib/events/AgenticaCallEvent.d.ts +2 -3
- package/lib/events/AgenticaCancelEvent.d.ts +2 -3
- package/lib/events/AgenticaDescribeEvent.d.ts +3 -4
- package/lib/events/AgenticaEvent.d.ts +10 -11
- package/lib/events/AgenticaExecuteEvent.d.ts +5 -5
- package/lib/events/AgenticaJsonParseErrorEvent.d.ts +2 -3
- package/lib/events/AgenticaSelectEvent.d.ts +3 -4
- package/lib/events/AgenticaValidateEvent.d.ts +2 -3
- package/lib/events/MicroAgenticaEvent.d.ts +8 -9
- package/lib/factory/events.d.ts +22 -22
- package/lib/factory/events.js.map +1 -1
- package/lib/factory/histories.js.map +1 -1
- package/lib/factory/operations.d.ts +3 -4
- package/lib/factory/operations.js.map +1 -1
- package/lib/functional/assertHttpController.d.ts +6 -10
- package/lib/functional/assertHttpController.js +775 -91
- package/lib/functional/assertHttpController.js.map +1 -1
- package/lib/functional/assertHttpLlmApplication.d.ts +4 -8
- package/lib/functional/assertHttpLlmApplication.js +775 -91
- package/lib/functional/assertHttpLlmApplication.js.map +1 -1
- package/lib/functional/assertMcpController.d.ts +5 -6
- package/lib/functional/assertMcpController.js +201 -32
- package/lib/functional/assertMcpController.js.map +1 -1
- package/lib/functional/validateHttpController.d.ts +6 -10
- package/lib/functional/validateHttpController.js +636 -89
- package/lib/functional/validateHttpController.js.map +1 -1
- package/lib/functional/validateHttpLlmApplication.d.ts +4 -8
- package/lib/functional/validateHttpLlmApplication.js +636 -89
- package/lib/functional/validateHttpLlmApplication.js.map +1 -1
- package/lib/functional/validateMcpController.d.ts +5 -6
- package/lib/functional/validateMcpController.js +366 -61
- package/lib/functional/validateMcpController.js.map +1 -1
- package/lib/histories/AgenticaCancelHistory.d.ts +2 -3
- package/lib/histories/AgenticaDescribeHistory.d.ts +2 -3
- package/lib/histories/AgenticaExecuteHistory.d.ts +5 -5
- package/lib/histories/AgenticaHistory.d.ts +7 -8
- package/lib/histories/AgenticaSelectHistory.d.ts +2 -3
- package/lib/histories/MicroAgenticaHistory.d.ts +5 -6
- package/lib/index.mjs +3964 -849
- package/lib/index.mjs.map +1 -1
- package/lib/orchestrate/call.d.ts +1 -2
- package/lib/orchestrate/call.js.map +1 -1
- package/lib/orchestrate/cancel.d.ts +1 -2
- package/lib/orchestrate/cancel.js +4 -4
- package/lib/orchestrate/cancel.js.map +1 -1
- package/lib/orchestrate/describe.d.ts +1 -2
- package/lib/orchestrate/describe.js.map +1 -1
- package/lib/orchestrate/execute.d.ts +1 -2
- package/lib/orchestrate/execute.js.map +1 -1
- package/lib/orchestrate/initialize.d.ts +1 -2
- package/lib/orchestrate/initialize.js +262 -83
- package/lib/orchestrate/initialize.js.map +1 -1
- package/lib/orchestrate/internal/cancelFunctionFromContext.js.map +1 -1
- package/lib/orchestrate/internal/selectFunctionFromContext.js.map +1 -1
- package/lib/orchestrate/select.d.ts +1 -2
- package/lib/orchestrate/select.js +4 -4
- package/lib/orchestrate/select.js.map +1 -1
- package/lib/structures/IAgenticaConfig.d.ts +3 -4
- package/lib/structures/IAgenticaController.d.ts +11 -14
- package/lib/structures/IAgenticaExecutor.d.ts +6 -7
- package/lib/structures/IAgenticaProps.d.ts +3 -8
- package/lib/structures/IAgenticaSystemPrompt.d.ts +9 -10
- package/lib/structures/IMicroAgenticaConfig.d.ts +3 -4
- package/lib/structures/IMicroAgenticaExecutor.d.ts +3 -4
- package/lib/structures/IMicroAgenticaProps.d.ts +3 -8
- package/lib/structures/IMicroAgenticaSystemPrompt.d.ts +6 -7
- package/lib/transformers/transformHistory.js.map +1 -1
- package/lib/utils/ChatGptCompletionStreamingUtil.spec.js +2 -2
- package/lib/utils/ChatGptCompletionStreamingUtil.spec.js.map +1 -1
- package/lib/utils/request.d.ts +2 -3
- package/lib/utils/request.js.map +1 -1
- package/package.json +8 -8
- package/src/Agentica.ts +24 -26
- package/src/MicroAgentica.ts +27 -29
- package/src/constants/AgenticaDefaultPrompt.ts +2 -4
- package/src/context/AgenticaContext.ts +6 -7
- package/src/context/AgenticaOperation.ts +14 -14
- package/src/context/AgenticaOperationCollection.ts +5 -8
- package/src/context/AgenticaOperationSelection.ts +2 -4
- package/src/context/MicroAgenticaContext.ts +5 -6
- package/src/context/internal/AgenticaOperationComposer.spec.ts +50 -18
- package/src/context/internal/AgenticaOperationComposer.ts +21 -23
- package/src/context/internal/__IChatInitialApplication.ts +1 -1
- package/src/context/internal/isAgenticaContext.ts +4 -6
- package/src/events/AgenticaCallEvent.ts +2 -5
- package/src/events/AgenticaCancelEvent.ts +2 -6
- package/src/events/AgenticaDescribeEvent.ts +3 -7
- package/src/events/AgenticaEvent.ts +17 -19
- package/src/events/AgenticaEvent.type.ts +1 -1
- package/src/events/AgenticaExecuteEvent.ts +12 -12
- package/src/events/AgenticaJsonParseErrorEvent.ts +2 -4
- package/src/events/AgenticaSelectEvent.ts +3 -7
- package/src/events/AgenticaValidateEvent.ts +2 -5
- package/src/events/MicroAgenticaEvent.ts +13 -15
- package/src/factory/events.ts +24 -24
- package/src/factory/histories.ts +15 -17
- package/src/factory/operations.ts +3 -5
- package/src/functional/assertHttpController.ts +7 -15
- package/src/functional/assertHttpLlmApplication.ts +4 -13
- package/src/functional/assertMcpController.ts +6 -8
- package/src/functional/validateHttpController.ts +7 -15
- package/src/functional/validateHttpLlmApplication.ts +4 -13
- package/src/functional/validateMcpController.ts +6 -11
- package/src/histories/AgenticaCancelHistory.ts +2 -6
- package/src/histories/AgenticaDescribeHistory.ts +2 -6
- package/src/histories/AgenticaExecuteHistory.ts +7 -9
- package/src/histories/AgenticaHistory.ts +11 -13
- package/src/histories/AgenticaSelectHistory.ts +2 -6
- package/src/histories/MicroAgenticaHistory.ts +7 -9
- package/src/orchestrate/call.ts +55 -56
- package/src/orchestrate/cancel.ts +11 -12
- package/src/orchestrate/describe.ts +4 -5
- package/src/orchestrate/execute.ts +3 -5
- package/src/orchestrate/initialize.ts +4 -5
- package/src/orchestrate/internal/cancelFunctionFromContext.ts +4 -6
- package/src/orchestrate/internal/selectFunctionFromContext.ts +5 -9
- package/src/orchestrate/select.ts +11 -12
- package/src/structures/IAgenticaConfig.ts +4 -6
- package/src/structures/IAgenticaController.ts +11 -14
- package/src/structures/IAgenticaExecutor.ts +9 -11
- package/src/structures/IAgenticaProps.ts +3 -10
- package/src/structures/IAgenticaSystemPrompt.ts +9 -11
- package/src/structures/IMicroAgenticaConfig.ts +3 -5
- package/src/structures/IMicroAgenticaExecutor.ts +4 -6
- package/src/structures/IMicroAgenticaProps.ts +3 -10
- package/src/structures/IMicroAgenticaSystemPrompt.ts +6 -8
- package/src/transformers/transformHistory.ts +19 -21
- package/src/utils/ChatGptCompletionStreamingUtil.spec.ts +4 -5
- package/src/utils/request.ts +2 -3
|
@@ -61,18 +61,17 @@ const typia_1 = __importDefault(require("typia"));
|
|
|
61
61
|
*/
|
|
62
62
|
function assertHttpLlmApplication(props) {
|
|
63
63
|
return openapi_1.HttpLlm.application({
|
|
64
|
-
model: props.model,
|
|
65
64
|
document: openapi_1.OpenApi.convert((() => { const _io0 = input => null !== input.swagger && undefined !== input.swagger && ("2.0" === input.swagger || "string" === typeof input.swagger && RegExp(/^2\.0\.[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.swagger)) && (undefined === input.info || "object" === typeof input.info && null !== input.info && _io1(input.info)) && (undefined === input.host || "string" === typeof input.host) && (undefined === input.basePath || "string" === typeof input.basePath) && (undefined === input.consumes || Array.isArray(input.consumes) && input.consumes.every(elem => "string" === typeof elem)) && (undefined === input.produces || Array.isArray(input.produces) && input.produces.every(elem => "string" === typeof elem)) && (undefined === input.definitions || "object" === typeof input.definitions && null !== input.definitions && false === Array.isArray(input.definitions) && _io4(input.definitions)) && (undefined === input.parameters || "object" === typeof input.parameters && null !== input.parameters && false === Array.isArray(input.parameters) && _io16(input.parameters)) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io29(input.responses)) && (undefined === input.securityDefinitions || "object" === typeof input.securityDefinitions && null !== input.securityDefinitions && false === Array.isArray(input.securityDefinitions) && _io31(input.securityDefinitions)) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.paths || "object" === typeof input.paths && null !== input.paths && false === Array.isArray(input.paths) && _io40(input.paths)) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "object" === typeof elem && null !== elem && _io47(elem))); const _io1 = input => "string" === typeof input.title && (undefined === input.description || "string" === typeof input.description) && (undefined === input.termsOfService || "string" === typeof input.termsOfService) && (undefined === input.contact || "object" === typeof input.contact && null !== input.contact && false === Array.isArray(input.contact) && _io2(input.contact)) && (undefined === input.license || "object" === typeof input.license && null !== input.license && _io3(input.license)) && "string" === typeof input.version; const _io2 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.url || "string" === typeof input.url) && (undefined === input.email || "string" === typeof input.email); const _io3 = input => "string" === typeof input.name && (undefined === input.url || "string" === typeof input.url); const _io4 = input => Object.keys(input).every(key => {
|
|
66
65
|
const value = input[key];
|
|
67
66
|
if (undefined === value)
|
|
68
67
|
return true;
|
|
69
68
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu0(value);
|
|
70
|
-
}); 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 => {
|
|
69
|
+
}); const _io5 = input => (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io6 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io7 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io8 = input => (null === input["default"] || undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "string" === typeof elem)) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io9 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu0(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io10 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io4(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu0(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)); const _io11 = input => "string" === typeof input.$ref && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly); const _io12 = input => Array.isArray(input["x-anyOf"]) && input["x-anyOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu0(elem)) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly); const _io13 = input => Array.isArray(input["x-oneOf"]) && input["x-oneOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu0(elem)) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly); const _io14 = input => "null" === input.type && (null === input["default"] || undefined === input["default"]) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly); const _io15 = input => null !== input.type && undefined === input.type && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly); const _io16 = input => Object.keys(input).every(key => {
|
|
71
70
|
const value = input[key];
|
|
72
71
|
if (undefined === value)
|
|
73
72
|
return true;
|
|
74
73
|
return "object" === typeof value && null !== value && _iu9(value);
|
|
75
|
-
}); 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 => {
|
|
74
|
+
}); const _io17 = input => (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io18 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io19 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io20 = input => (null === input["default"] || undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "string" === typeof elem)) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io21 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu0(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io22 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io4(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu0(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"]) && (undefined === input.examples || Array.isArray(input.examples)) && "string" === typeof input.name && "string" === typeof input["in"]; const _io23 = input => "string" === typeof input.$ref && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io24 = input => Array.isArray(input["x-anyOf"]) && input["x-anyOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu0(elem)) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io25 = input => Array.isArray(input["x-oneOf"]) && input["x-oneOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu0(elem)) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io26 = input => "null" === input.type && (null === input["default"] || undefined === input["default"]) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io27 = input => null !== input.type && undefined === input.type && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io28 = input => "object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu0(input.schema) && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description) && (undefined === input.required || "boolean" === typeof input.required); const _io29 = input => Object.keys(input).every(key => {
|
|
76
75
|
const value = input[key];
|
|
77
76
|
if (undefined === value)
|
|
78
77
|
return true;
|
|
@@ -97,12 +96,12 @@ function assertHttpLlmApplication(props) {
|
|
|
97
96
|
if (undefined === value)
|
|
98
97
|
return true;
|
|
99
98
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io41(value);
|
|
100
|
-
}); const _io41 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu1(elem))) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io43(input.options)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io43(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io43(input.post)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io43(input.patch)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io43(input.put)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io43(input["delete"])) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io43(input.head)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io43(input.trace)); const _io42 = input => "string" === typeof input.$ref && RegExp(/^#\/parameters\/(.*)/).test(input.$ref) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io43 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu2(elem))) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io45(input.responses)) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated); const _io44 = input => "string" === typeof input.$ref && RegExp(/^#\/definitions\/parameters\/(.*)/).test(input.$ref) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io45 = input => Object.keys(input).every(key => {
|
|
99
|
+
}); const _io41 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu1(elem))) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io43(input.options)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io43(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io43(input.post)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io43(input.patch)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io43(input.put)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io43(input["delete"])) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io43(input.head)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io43(input.trace)); const _io42 = input => "string" === typeof input.$ref && RegExp(/^#\/parameters\/(.*)/).test(input.$ref) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly); const _io43 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu2(elem))) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io45(input.responses)) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated); const _io44 = input => "string" === typeof input.$ref && RegExp(/^#\/definitions\/parameters\/(.*)/).test(input.$ref) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly); const _io45 = input => Object.keys(input).every(key => {
|
|
101
100
|
const value = input[key];
|
|
102
101
|
if (undefined === value)
|
|
103
102
|
return true;
|
|
104
103
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu11(value);
|
|
105
|
-
}); const _io46 = input => "string" === typeof input.$ref && RegExp(/^#\/definitions\/responses\/(.*)/).test(input.$ref) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io47 = input => "string" === typeof input.name && (undefined === input.description || "string" === typeof input.description); const _io48 = input => null !== input.openapi && undefined !== input.openapi && ("3.0" === input.openapi || "string" === typeof input.openapi && RegExp(/^3\.0\.[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.openapi)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io49(elem))) && (undefined === input.info || "object" === typeof input.info && null !== input.info && _io52(input.info)) && (undefined === input.components || "object" === typeof input.components && null !== input.components && false === Array.isArray(input.components) && _io55(input.components)) && (undefined === input.paths || "object" === typeof input.paths && null !== input.paths && false === Array.isArray(input.paths) && _io97(input.paths)) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "object" === typeof elem && null !== elem && _io104(elem))); const _io49 = input => "string" === typeof input.url && (undefined === input.description || "string" === typeof input.description) && (undefined === input.variables || "object" === typeof input.variables && null !== input.variables && false === Array.isArray(input.variables) && _io50(input.variables)); const _io50 = input => Object.keys(input).every(key => {
|
|
104
|
+
}); const _io46 = input => "string" === typeof input.$ref && RegExp(/^#\/definitions\/responses\/(.*)/).test(input.$ref) && (undefined === input.examples || Array.isArray(input.examples)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly); const _io47 = input => "string" === typeof input.name && (undefined === input.description || "string" === typeof input.description); const _io48 = input => null !== input.openapi && undefined !== input.openapi && ("3.0" === input.openapi || "string" === typeof input.openapi && RegExp(/^3\.0\.[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.openapi)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io49(elem))) && (undefined === input.info || "object" === typeof input.info && null !== input.info && _io52(input.info)) && (undefined === input.components || "object" === typeof input.components && null !== input.components && false === Array.isArray(input.components) && _io55(input.components)) && (undefined === input.paths || "object" === typeof input.paths && null !== input.paths && false === Array.isArray(input.paths) && _io97(input.paths)) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "object" === typeof elem && null !== elem && _io104(elem))); const _io49 = input => "string" === typeof input.url && (undefined === input.description || "string" === typeof input.description) && (undefined === input.variables || "object" === typeof input.variables && null !== input.variables && false === Array.isArray(input.variables) && _io50(input.variables)); const _io50 = input => Object.keys(input).every(key => {
|
|
106
105
|
const value = input[key];
|
|
107
106
|
if (undefined === value)
|
|
108
107
|
return true;
|
|
@@ -112,12 +111,12 @@ function assertHttpLlmApplication(props) {
|
|
|
112
111
|
if (undefined === value)
|
|
113
112
|
return true;
|
|
114
113
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu3(value);
|
|
115
|
-
}); 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 => {
|
|
114
|
+
}); const _io57 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io58 = input => Object.keys(input).every(key => {
|
|
116
115
|
const value = input[key];
|
|
117
116
|
if (undefined === value)
|
|
118
117
|
return true;
|
|
119
118
|
return true;
|
|
120
|
-
}); 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 => {
|
|
119
|
+
}); const _io59 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io60 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io61 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "string" === typeof elem)) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io62 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && ("object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu3(input.items)) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io63 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io56(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu3(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io64 = input => "string" === typeof input.$ref && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io65 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu3(elem)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io66 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu3(elem)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io67 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu3(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io68(input.discriminator)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io68 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io35(input.mapping)); const _io69 = input => (null === input["default"] || undefined === input["default"]) && "null" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io70 = input => true && (null !== input.type && undefined === input.type) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io71 = input => Object.keys(input).every(key => {
|
|
121
120
|
const value = input[key];
|
|
122
121
|
if (undefined === value)
|
|
123
122
|
return true;
|
|
@@ -132,12 +131,12 @@ function assertHttpLlmApplication(props) {
|
|
|
132
131
|
if (undefined === value)
|
|
133
132
|
return true;
|
|
134
133
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu12(value);
|
|
135
|
-
}); 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 => {
|
|
134
|
+
}); const _io76 = input => (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.externalValue || "string" === typeof input.externalValue); const _io77 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/examples\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io78 = input => Object.keys(input).every(key => {
|
|
136
135
|
const value = input[key];
|
|
137
136
|
if (undefined === value)
|
|
138
137
|
return true;
|
|
139
138
|
return "object" === typeof value && null !== value && _iu13(value);
|
|
140
|
-
}); 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 => {
|
|
139
|
+
}); const _io79 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io75(input.examples)) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu3(input.schema)); const _io80 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/headers\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io81 = input => Object.keys(input).every(key => {
|
|
141
140
|
const value = input[key];
|
|
142
141
|
if (undefined === value)
|
|
143
142
|
return true;
|
|
@@ -167,12 +166,12 @@ function assertHttpLlmApplication(props) {
|
|
|
167
166
|
if (undefined === value)
|
|
168
167
|
return true;
|
|
169
168
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io98(value);
|
|
170
|
-
}); const _io98 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu4(elem))) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io49(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io100(input.options)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io100(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io100(input.post)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io100(input.patch)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io100(input.put)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io100(input["delete"])) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io100(input.head)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io100(input.trace)); const _io99 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/parameters\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io100 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu4(elem))) && (undefined === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && false === Array.isArray(input.requestBody) && _iu15(input.requestBody)) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io102(input.responses)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io49(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated); const _io101 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/requestBodies\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io102 = input => Object.keys(input).every(key => {
|
|
169
|
+
}); const _io98 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu4(elem))) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io49(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io100(input.options)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io100(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io100(input.post)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io100(input.patch)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io100(input.put)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io100(input["delete"])) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io100(input.head)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io100(input.trace)); const _io99 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/parameters\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io100 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu4(elem))) && (undefined === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && false === Array.isArray(input.requestBody) && _iu15(input.requestBody)) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io102(input.responses)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io49(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated); const _io101 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/requestBodies\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io102 = input => Object.keys(input).every(key => {
|
|
171
170
|
const value = input[key];
|
|
172
171
|
if (undefined === value)
|
|
173
172
|
return true;
|
|
174
173
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu16(value);
|
|
175
|
-
}); 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 => {
|
|
174
|
+
}); const _io103 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/responses\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io104 = input => "string" === typeof input.name && (undefined === input.description || "string" === typeof input.description); const _io105 = input => "string" === typeof input.openapi && RegExp(/^3\.1\.[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.openapi) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io106(elem))) && (undefined === input.info || "object" === typeof input.info && null !== input.info && _io109(input.info)) && (undefined === input.components || "object" === typeof input.components && null !== input.components && false === Array.isArray(input.components) && _io112(input.components)) && (undefined === input.paths || "object" === typeof input.paths && null !== input.paths && false === Array.isArray(input.paths) && _io130(input.paths)) && (undefined === input.webhooks || "object" === typeof input.webhooks && null !== input.webhooks && false === Array.isArray(input.webhooks) && _io163(input.webhooks)) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "object" === typeof elem && null !== elem && _io165(elem))); const _io106 = input => "string" === typeof input.url && (undefined === input.description || "string" === typeof input.description) && (undefined === input.variables || "object" === typeof input.variables && null !== input.variables && false === Array.isArray(input.variables) && _io107(input.variables)); const _io107 = input => Object.keys(input).every(key => {
|
|
176
175
|
const value = input[key];
|
|
177
176
|
if (undefined === value)
|
|
178
177
|
return true;
|
|
@@ -182,7 +181,7 @@ function assertHttpLlmApplication(props) {
|
|
|
182
181
|
if (undefined === value)
|
|
183
182
|
return true;
|
|
184
183
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu5(value);
|
|
185
|
-
}); const _io114 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io113(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu5(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io115 = input => Array.isArray(input.type) && input.type.every(elem => "string" === elem || "number" === elem || "boolean" === elem || "object" === elem || "integer" === elem || "array" === elem || "null" === elem) && (null === input["default"] || undefined === input["default"] || Array.isArray(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"])) && ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (null !== input.items && (undefined === input.items || (Array.isArray(input.items) && input.items.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu5(input.items)))) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (null !== input.additionalItems && (undefined === input.additionalItems || "boolean" === typeof input.additionalItems || "object" === typeof input.additionalItems && null !== input.additionalItems && false === Array.isArray(input.additionalItems) && _iu5(input.additionalItems))) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu5(input.additionalProperties))) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io113(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && (Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io127(input.discriminator)) && (Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && (Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && "string" === typeof input.$ref; const _io116 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io117 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io118 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum && (Math.floor(input.exclusiveMinimum) === input.exclusiveMinimum && -9223372036854776000 <= input.exclusiveMinimum && input.exclusiveMinimum <= 9223372036854776000) || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum && (Math.floor(input.exclusiveMaximum) === input.exclusiveMaximum && -9223372036854776000 <= input.exclusiveMaximum && input.exclusiveMaximum <= 9223372036854776000) || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io119 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io120 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "string" === typeof elem)) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io121 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null !== input.items && (undefined === input.items || (Array.isArray(input.items) && input.items.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu5(input.items)))) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (null !== input.additionalItems && (undefined === input.additionalItems || "boolean" === typeof input.additionalItems || "object" === typeof input.additionalItems && null !== input.additionalItems && false === Array.isArray(input.additionalItems) && _iu5(input.additionalItems))) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io122 = input => "string" === typeof input.$ref && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io123 = input => "string" === typeof input.$recursiveRef && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io124 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io125 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io126 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io127(input.discriminator)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true; const _io127 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io35(input.mapping)); const _io128 = input => (null === input["default"] || undefined === input["default"]) && "null" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io129 = input => null !== input.type && undefined === input.type && true && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io130 = input => Object.keys(input).every(key => {
|
|
184
|
+
}); const _io114 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io113(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu5(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io115 = input => Array.isArray(input.type) && input.type.every(elem => "string" === elem || "number" === elem || "boolean" === elem || "object" === elem || "integer" === elem || "array" === elem || "null" === elem) && (null === input["default"] || undefined === input["default"] || Array.isArray(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"])) && ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && (null !== input.items && (undefined === input.items || (Array.isArray(input.items) && input.items.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu5(input.items)))) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (null !== input.additionalItems && (undefined === input.additionalItems || "boolean" === typeof input.additionalItems || "object" === typeof input.additionalItems && null !== input.additionalItems && false === Array.isArray(input.additionalItems) && _iu5(input.additionalItems))) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu5(input.additionalProperties))) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io113(input.properties)) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && (Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io127(input.discriminator)) && (Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && (Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && "string" === typeof input.$ref; const _io116 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io117 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "boolean" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "boolean" === typeof elem)) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io118 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum && (Math.floor(input.exclusiveMinimum) === input.exclusiveMinimum && -9223372036854776000 <= input.exclusiveMinimum && input.exclusiveMinimum <= 9223372036854776000) || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum && (Math.floor(input.exclusiveMaximum) === input.exclusiveMaximum && -9223372036854776000 <= input.exclusiveMaximum && input.exclusiveMaximum <= 9223372036854776000) || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io119 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem)) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io120 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "string" === typeof elem)) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io121 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null !== input.items && (undefined === input.items || (Array.isArray(input.items) && input.items.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu5(input.items)))) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem))) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (null !== input.additionalItems && (undefined === input.additionalItems || "boolean" === typeof input.additionalItems || "object" === typeof input.additionalItems && null !== input.additionalItems && false === Array.isArray(input.additionalItems) && _iu5(input.additionalItems))) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io122 = input => "string" === typeof input.$ref && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io123 = input => "string" === typeof input.$recursiveRef && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io124 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io125 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io126 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io127(input.discriminator)) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io127 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io35(input.mapping)); const _io128 = input => (null === input["default"] || undefined === input["default"]) && "null" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io129 = input => null !== input.type && undefined === input.type && true && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))); const _io130 = input => Object.keys(input).every(key => {
|
|
186
185
|
const value = input[key];
|
|
187
186
|
if (undefined === value)
|
|
188
187
|
return true;
|
|
@@ -192,12 +191,12 @@ function assertHttpLlmApplication(props) {
|
|
|
192
191
|
if (undefined === value)
|
|
193
192
|
return true;
|
|
194
193
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu17(value);
|
|
195
|
-
}); 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 => {
|
|
194
|
+
}); const _io134 = input => (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.externalValue || "string" === typeof input.externalValue); const _io135 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/examples\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io136 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/headers\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io137 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/parameters\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io138 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu6(elem))) && (undefined === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && false === Array.isArray(input.requestBody) && _iu18(input.requestBody)) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io143(input.responses)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io106(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated); const _io139 = input => (undefined === input.description || "string" === typeof input.description) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.content || "object" === typeof input.content && null !== input.content && false === Array.isArray(input.content) && _io140(input.content)); const _io140 = input => Object.keys(input).every(key => {
|
|
196
195
|
const value = input[key];
|
|
197
196
|
if (undefined === value)
|
|
198
197
|
return true;
|
|
199
198
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io141(value);
|
|
200
|
-
}); 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 => {
|
|
199
|
+
}); const _io141 = input => (undefined === input.schema || "object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu5(input.schema)) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io133(input.examples)); const _io142 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/requestBodies\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io143 = input => Object.keys(input).every(key => {
|
|
201
200
|
const value = input[key];
|
|
202
201
|
if (undefined === value)
|
|
203
202
|
return true;
|
|
@@ -207,7 +206,7 @@ function assertHttpLlmApplication(props) {
|
|
|
207
206
|
if (undefined === value)
|
|
208
207
|
return true;
|
|
209
208
|
return "object" === typeof value && null !== value && _iu20(value);
|
|
210
|
-
}); 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 => {
|
|
209
|
+
}); const _io146 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.required || "boolean" === typeof input.required) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io133(input.examples)) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu5(input.schema)); const _io147 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/responses\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io148 = input => Object.keys(input).every(key => {
|
|
211
210
|
const value = input[key];
|
|
212
211
|
if (undefined === value)
|
|
213
212
|
return true;
|
|
@@ -242,7 +241,7 @@ function assertHttpLlmApplication(props) {
|
|
|
242
241
|
if (undefined === value)
|
|
243
242
|
return true;
|
|
244
243
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu22(value);
|
|
245
|
-
}); 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 => {
|
|
244
|
+
}); const _io164 = input => "string" === typeof input.$ref && RegExp(/^#\/components\/pathItems\/(.*)/).test(input.$ref) && (null !== input.examples && (undefined === input.examples || (Array.isArray(input.examples) || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)))) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io165 = input => "string" === typeof input.name && (undefined === input.description || "string" === typeof input.description); const _io166 = input => "string" === typeof input.openapi && RegExp(/^3\.1\.[+-]?\d+(?:\.\d+)?(?:[eE][+-]?\d+)?$/).test(input.openapi) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io167(elem))) && (undefined === input.info || "object" === typeof input.info && null !== input.info && _io170(input.info)) && ("object" === typeof input.components && null !== input.components && false === Array.isArray(input.components) && _io173(input.components)) && (undefined === input.paths || "object" === typeof input.paths && null !== input.paths && false === Array.isArray(input.paths) && _io198(input.paths)) && (undefined === input.webhooks || "object" === typeof input.webhooks && null !== input.webhooks && false === Array.isArray(input.webhooks) && _io198(input.webhooks)) && (undefined === input.security || Array.isArray(input.security) && input.security.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io39(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "object" === typeof elem && null !== elem && _io210(elem))) && true === input["x-samchon-emended-v4"]; const _io167 = input => "string" === typeof input.url && (undefined === input.description || "string" === typeof input.description) && (undefined === input.variables || "object" === typeof input.variables && null !== input.variables && false === Array.isArray(input.variables) && _io168(input.variables)); const _io168 = input => Object.keys(input).every(key => {
|
|
246
245
|
const value = input[key];
|
|
247
246
|
if (undefined === value)
|
|
248
247
|
return true;
|
|
@@ -252,7 +251,7 @@ function assertHttpLlmApplication(props) {
|
|
|
252
251
|
if (undefined === value)
|
|
253
252
|
return true;
|
|
254
253
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu7(value);
|
|
255
|
-
}); 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 => {
|
|
254
|
+
}); const _io175 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io176 = input => (undefined === input["default"] || "boolean" === typeof input["default"]) && "boolean" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io177 = input => (undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000)) && (undefined === input.minimum || "number" === typeof input.minimum && (Math.floor(input.minimum) === input.minimum && -9223372036854776000 <= input.minimum && input.minimum <= 9223372036854776000)) && (undefined === input.maximum || "number" === typeof input.maximum && (Math.floor(input.maximum) === input.maximum && -9223372036854776000 <= input.maximum && input.maximum <= 9223372036854776000)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && (Math.floor(input.multipleOf) === input.multipleOf && 0 <= input.multipleOf && input.multipleOf <= 18446744073709552000 && 0 < input.multipleOf)) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io178 = input => (undefined === input["default"] || "number" === typeof input["default"]) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "number" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io179 = input => (undefined === input["default"] || "string" === typeof input["default"]) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.minLength || "number" === typeof input.minLength && (Math.floor(input.minLength) === input.minLength && 0 <= input.minLength && input.minLength <= 18446744073709552000)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io180 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu7(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io181 = input => "array" === input.type && (Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem))) && (null !== input.additionalItems && (undefined === input.additionalItems || "boolean" === typeof input.additionalItems || "object" === typeof input.additionalItems && null !== input.additionalItems && false === Array.isArray(input.additionalItems) && _iu7(input.additionalItems))) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && (Math.floor(input.minItems) === input.minItems && 0 <= input.minItems && input.minItems <= 18446744073709552000)) && (undefined === input.maxItems || "number" === typeof input.maxItems && (Math.floor(input.maxItems) === input.maxItems && 0 <= input.maxItems && input.maxItems <= 18446744073709552000)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io182 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io174(input.properties)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu7(input.additionalProperties))) && (undefined === input.required || Array.isArray(input.required) && input.required.every(elem => "string" === typeof elem)) && "object" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io183 = input => "string" === typeof input.$ref && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io184 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu8(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io187(input.discriminator)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io185 = input => (null === input["default"] || undefined === input["default"]) && "null" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io186 = input => true && (null !== input.type && undefined === input.type) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && true && (undefined === input.examples || "object" === typeof input.examples && null !== input.examples && false === Array.isArray(input.examples) && _io58(input.examples)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io187 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io35(input.mapping)); const _io188 = input => Object.keys(input).every(key => {
|
|
256
255
|
const value = input[key];
|
|
257
256
|
if (undefined === value)
|
|
258
257
|
return true;
|
|
@@ -913,7 +912,17 @@ function assertHttpLlmApplication(props) {
|
|
|
913
912
|
path: _path + ".deprecated",
|
|
914
913
|
expected: "(boolean | undefined)",
|
|
915
914
|
value: input.deprecated
|
|
916
|
-
}, _errorFactory)) && true && (undefined === input
|
|
915
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
916
|
+
method: "typia.assert",
|
|
917
|
+
path: _path + ".readOnly",
|
|
918
|
+
expected: "(boolean | undefined)",
|
|
919
|
+
value: input.readOnly
|
|
920
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
921
|
+
method: "typia.assert",
|
|
922
|
+
path: _path + ".writeOnly",
|
|
923
|
+
expected: "(boolean | undefined)",
|
|
924
|
+
value: input.writeOnly
|
|
925
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
917
926
|
method: "typia.assert",
|
|
918
927
|
path: _path + "[\"x-nullable\"]",
|
|
919
928
|
expected: "(boolean | undefined)",
|
|
@@ -1013,7 +1022,17 @@ function assertHttpLlmApplication(props) {
|
|
|
1013
1022
|
path: _path + ".deprecated",
|
|
1014
1023
|
expected: "(boolean | undefined)",
|
|
1015
1024
|
value: input.deprecated
|
|
1016
|
-
}, _errorFactory)) && true && (undefined === input
|
|
1025
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1026
|
+
method: "typia.assert",
|
|
1027
|
+
path: _path + ".readOnly",
|
|
1028
|
+
expected: "(boolean | undefined)",
|
|
1029
|
+
value: input.readOnly
|
|
1030
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1031
|
+
method: "typia.assert",
|
|
1032
|
+
path: _path + ".writeOnly",
|
|
1033
|
+
expected: "(boolean | undefined)",
|
|
1034
|
+
value: input.writeOnly
|
|
1035
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1017
1036
|
method: "typia.assert",
|
|
1018
1037
|
path: _path + "[\"x-nullable\"]",
|
|
1019
1038
|
expected: "(boolean | undefined)",
|
|
@@ -1093,7 +1112,17 @@ function assertHttpLlmApplication(props) {
|
|
|
1093
1112
|
path: _path + ".deprecated",
|
|
1094
1113
|
expected: "(boolean | undefined)",
|
|
1095
1114
|
value: input.deprecated
|
|
1096
|
-
}, _errorFactory)) && true && (undefined === input
|
|
1115
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1116
|
+
method: "typia.assert",
|
|
1117
|
+
path: _path + ".readOnly",
|
|
1118
|
+
expected: "(boolean | undefined)",
|
|
1119
|
+
value: input.readOnly
|
|
1120
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1121
|
+
method: "typia.assert",
|
|
1122
|
+
path: _path + ".writeOnly",
|
|
1123
|
+
expected: "(boolean | undefined)",
|
|
1124
|
+
value: input.writeOnly
|
|
1125
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1097
1126
|
method: "typia.assert",
|
|
1098
1127
|
path: _path + "[\"x-nullable\"]",
|
|
1099
1128
|
expected: "(boolean | undefined)",
|
|
@@ -1173,7 +1202,17 @@ function assertHttpLlmApplication(props) {
|
|
|
1173
1202
|
path: _path + ".deprecated",
|
|
1174
1203
|
expected: "(boolean | undefined)",
|
|
1175
1204
|
value: input.deprecated
|
|
1176
|
-
}, _errorFactory)) && true && (undefined === input
|
|
1205
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1206
|
+
method: "typia.assert",
|
|
1207
|
+
path: _path + ".readOnly",
|
|
1208
|
+
expected: "(boolean | undefined)",
|
|
1209
|
+
value: input.readOnly
|
|
1210
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1211
|
+
method: "typia.assert",
|
|
1212
|
+
path: _path + ".writeOnly",
|
|
1213
|
+
expected: "(boolean | undefined)",
|
|
1214
|
+
value: input.writeOnly
|
|
1215
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1177
1216
|
method: "typia.assert",
|
|
1178
1217
|
path: _path + "[\"x-nullable\"]",
|
|
1179
1218
|
expected: "(boolean | undefined)",
|
|
@@ -1238,7 +1277,17 @@ function assertHttpLlmApplication(props) {
|
|
|
1238
1277
|
path: _path + ".deprecated",
|
|
1239
1278
|
expected: "(boolean | undefined)",
|
|
1240
1279
|
value: input.deprecated
|
|
1241
|
-
}, _errorFactory)) && true && (undefined === input
|
|
1280
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1281
|
+
method: "typia.assert",
|
|
1282
|
+
path: _path + ".readOnly",
|
|
1283
|
+
expected: "(boolean | undefined)",
|
|
1284
|
+
value: input.readOnly
|
|
1285
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1286
|
+
method: "typia.assert",
|
|
1287
|
+
path: _path + ".writeOnly",
|
|
1288
|
+
expected: "(boolean | undefined)",
|
|
1289
|
+
value: input.writeOnly
|
|
1290
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1242
1291
|
method: "typia.assert",
|
|
1243
1292
|
path: _path + "[\"x-nullable\"]",
|
|
1244
1293
|
expected: "(boolean | undefined)",
|
|
@@ -1318,7 +1367,17 @@ function assertHttpLlmApplication(props) {
|
|
|
1318
1367
|
path: _path + ".deprecated",
|
|
1319
1368
|
expected: "(boolean | undefined)",
|
|
1320
1369
|
value: input.deprecated
|
|
1321
|
-
}, _errorFactory)) && true && (undefined === input
|
|
1370
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1371
|
+
method: "typia.assert",
|
|
1372
|
+
path: _path + ".readOnly",
|
|
1373
|
+
expected: "(boolean | undefined)",
|
|
1374
|
+
value: input.readOnly
|
|
1375
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1376
|
+
method: "typia.assert",
|
|
1377
|
+
path: _path + ".writeOnly",
|
|
1378
|
+
expected: "(boolean | undefined)",
|
|
1379
|
+
value: input.writeOnly
|
|
1380
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1322
1381
|
method: "typia.assert",
|
|
1323
1382
|
path: _path + "[\"x-nullable\"]",
|
|
1324
1383
|
expected: "(boolean | undefined)",
|
|
@@ -1353,7 +1412,12 @@ function assertHttpLlmApplication(props) {
|
|
|
1353
1412
|
path: _path + ".deprecated",
|
|
1354
1413
|
expected: "(boolean | undefined)",
|
|
1355
1414
|
value: input.deprecated
|
|
1356
|
-
}, _errorFactory)) && true
|
|
1415
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1416
|
+
method: "typia.assert",
|
|
1417
|
+
path: _path + ".readOnly",
|
|
1418
|
+
expected: "(boolean | undefined)",
|
|
1419
|
+
value: input.readOnly
|
|
1420
|
+
}, _errorFactory)); const _ao12 = (input, _path, _exceptionable = true) => ((Array.isArray(input["x-anyOf"]) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1357
1421
|
method: "typia.assert",
|
|
1358
1422
|
path: _path + "[\"x-anyOf\"]",
|
|
1359
1423
|
expected: "Array<SwaggerV2.IJsonSchema>",
|
|
@@ -1393,7 +1457,12 @@ function assertHttpLlmApplication(props) {
|
|
|
1393
1457
|
path: _path + ".deprecated",
|
|
1394
1458
|
expected: "(boolean | undefined)",
|
|
1395
1459
|
value: input.deprecated
|
|
1396
|
-
}, _errorFactory)) && true
|
|
1460
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1461
|
+
method: "typia.assert",
|
|
1462
|
+
path: _path + ".readOnly",
|
|
1463
|
+
expected: "(boolean | undefined)",
|
|
1464
|
+
value: input.readOnly
|
|
1465
|
+
}, _errorFactory)); const _ao13 = (input, _path, _exceptionable = true) => ((Array.isArray(input["x-oneOf"]) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1397
1466
|
method: "typia.assert",
|
|
1398
1467
|
path: _path + "[\"x-oneOf\"]",
|
|
1399
1468
|
expected: "Array<SwaggerV2.IJsonSchema>",
|
|
@@ -1433,7 +1502,12 @@ function assertHttpLlmApplication(props) {
|
|
|
1433
1502
|
path: _path + ".deprecated",
|
|
1434
1503
|
expected: "(boolean | undefined)",
|
|
1435
1504
|
value: input.deprecated
|
|
1436
|
-
}, _errorFactory)) && true
|
|
1505
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1506
|
+
method: "typia.assert",
|
|
1507
|
+
path: _path + ".readOnly",
|
|
1508
|
+
expected: "(boolean | undefined)",
|
|
1509
|
+
value: input.readOnly
|
|
1510
|
+
}, _errorFactory)); const _ao14 = (input, _path, _exceptionable = true) => ("null" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1437
1511
|
method: "typia.assert",
|
|
1438
1512
|
path: _path + ".type",
|
|
1439
1513
|
expected: "\"null\"",
|
|
@@ -1463,7 +1537,12 @@ function assertHttpLlmApplication(props) {
|
|
|
1463
1537
|
path: _path + ".deprecated",
|
|
1464
1538
|
expected: "(boolean | undefined)",
|
|
1465
1539
|
value: input.deprecated
|
|
1466
|
-
}, _errorFactory)) && true
|
|
1540
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1541
|
+
method: "typia.assert",
|
|
1542
|
+
path: _path + ".readOnly",
|
|
1543
|
+
expected: "(boolean | undefined)",
|
|
1544
|
+
value: input.readOnly
|
|
1545
|
+
}, _errorFactory)); const _ao15 = (input, _path, _exceptionable = true) => (null !== input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1467
1546
|
method: "typia.assert",
|
|
1468
1547
|
path: _path + ".type",
|
|
1469
1548
|
expected: "undefined",
|
|
@@ -1493,7 +1572,12 @@ function assertHttpLlmApplication(props) {
|
|
|
1493
1572
|
path: _path + ".deprecated",
|
|
1494
1573
|
expected: "(boolean | undefined)",
|
|
1495
1574
|
value: input.deprecated
|
|
1496
|
-
}, _errorFactory)) && true
|
|
1575
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1576
|
+
method: "typia.assert",
|
|
1577
|
+
path: _path + ".readOnly",
|
|
1578
|
+
expected: "(boolean | undefined)",
|
|
1579
|
+
value: input.readOnly
|
|
1580
|
+
}, _errorFactory)); const _ao16 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
1497
1581
|
const value = input[key];
|
|
1498
1582
|
if (undefined === value)
|
|
1499
1583
|
return true;
|
|
@@ -1548,7 +1632,17 @@ function assertHttpLlmApplication(props) {
|
|
|
1548
1632
|
path: _path + ".deprecated",
|
|
1549
1633
|
expected: "(boolean | undefined)",
|
|
1550
1634
|
value: input.deprecated
|
|
1551
|
-
}, _errorFactory)) && true && (undefined === input
|
|
1635
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1636
|
+
method: "typia.assert",
|
|
1637
|
+
path: _path + ".readOnly",
|
|
1638
|
+
expected: "(boolean | undefined)",
|
|
1639
|
+
value: input.readOnly
|
|
1640
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1641
|
+
method: "typia.assert",
|
|
1642
|
+
path: _path + ".writeOnly",
|
|
1643
|
+
expected: "(boolean | undefined)",
|
|
1644
|
+
value: input.writeOnly
|
|
1645
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1552
1646
|
method: "typia.assert",
|
|
1553
1647
|
path: _path + "[\"x-nullable\"]",
|
|
1554
1648
|
expected: "(boolean | undefined)",
|
|
@@ -1658,7 +1752,17 @@ function assertHttpLlmApplication(props) {
|
|
|
1658
1752
|
path: _path + ".deprecated",
|
|
1659
1753
|
expected: "(boolean | undefined)",
|
|
1660
1754
|
value: input.deprecated
|
|
1661
|
-
}, _errorFactory)) && true && (undefined === input
|
|
1755
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1756
|
+
method: "typia.assert",
|
|
1757
|
+
path: _path + ".readOnly",
|
|
1758
|
+
expected: "(boolean | undefined)",
|
|
1759
|
+
value: input.readOnly
|
|
1760
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1761
|
+
method: "typia.assert",
|
|
1762
|
+
path: _path + ".writeOnly",
|
|
1763
|
+
expected: "(boolean | undefined)",
|
|
1764
|
+
value: input.writeOnly
|
|
1765
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1662
1766
|
method: "typia.assert",
|
|
1663
1767
|
path: _path + "[\"x-nullable\"]",
|
|
1664
1768
|
expected: "(boolean | undefined)",
|
|
@@ -1748,7 +1852,17 @@ function assertHttpLlmApplication(props) {
|
|
|
1748
1852
|
path: _path + ".deprecated",
|
|
1749
1853
|
expected: "(boolean | undefined)",
|
|
1750
1854
|
value: input.deprecated
|
|
1751
|
-
}, _errorFactory)) && true && (undefined === input
|
|
1855
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1856
|
+
method: "typia.assert",
|
|
1857
|
+
path: _path + ".readOnly",
|
|
1858
|
+
expected: "(boolean | undefined)",
|
|
1859
|
+
value: input.readOnly
|
|
1860
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1861
|
+
method: "typia.assert",
|
|
1862
|
+
path: _path + ".writeOnly",
|
|
1863
|
+
expected: "(boolean | undefined)",
|
|
1864
|
+
value: input.writeOnly
|
|
1865
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1752
1866
|
method: "typia.assert",
|
|
1753
1867
|
path: _path + "[\"x-nullable\"]",
|
|
1754
1868
|
expected: "(boolean | undefined)",
|
|
@@ -1838,7 +1952,17 @@ function assertHttpLlmApplication(props) {
|
|
|
1838
1952
|
path: _path + ".deprecated",
|
|
1839
1953
|
expected: "(boolean | undefined)",
|
|
1840
1954
|
value: input.deprecated
|
|
1841
|
-
}, _errorFactory)) && true && (undefined === input
|
|
1955
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1956
|
+
method: "typia.assert",
|
|
1957
|
+
path: _path + ".readOnly",
|
|
1958
|
+
expected: "(boolean | undefined)",
|
|
1959
|
+
value: input.readOnly
|
|
1960
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1961
|
+
method: "typia.assert",
|
|
1962
|
+
path: _path + ".writeOnly",
|
|
1963
|
+
expected: "(boolean | undefined)",
|
|
1964
|
+
value: input.writeOnly
|
|
1965
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1842
1966
|
method: "typia.assert",
|
|
1843
1967
|
path: _path + "[\"x-nullable\"]",
|
|
1844
1968
|
expected: "(boolean | undefined)",
|
|
@@ -1913,7 +2037,17 @@ function assertHttpLlmApplication(props) {
|
|
|
1913
2037
|
path: _path + ".deprecated",
|
|
1914
2038
|
expected: "(boolean | undefined)",
|
|
1915
2039
|
value: input.deprecated
|
|
1916
|
-
}, _errorFactory)) && true && (undefined === input
|
|
2040
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2041
|
+
method: "typia.assert",
|
|
2042
|
+
path: _path + ".readOnly",
|
|
2043
|
+
expected: "(boolean | undefined)",
|
|
2044
|
+
value: input.readOnly
|
|
2045
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2046
|
+
method: "typia.assert",
|
|
2047
|
+
path: _path + ".writeOnly",
|
|
2048
|
+
expected: "(boolean | undefined)",
|
|
2049
|
+
value: input.writeOnly
|
|
2050
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1917
2051
|
method: "typia.assert",
|
|
1918
2052
|
path: _path + "[\"x-nullable\"]",
|
|
1919
2053
|
expected: "(boolean | undefined)",
|
|
@@ -2003,7 +2137,17 @@ function assertHttpLlmApplication(props) {
|
|
|
2003
2137
|
path: _path + ".deprecated",
|
|
2004
2138
|
expected: "(boolean | undefined)",
|
|
2005
2139
|
value: input.deprecated
|
|
2006
|
-
}, _errorFactory)) && true && (undefined === input
|
|
2140
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2141
|
+
method: "typia.assert",
|
|
2142
|
+
path: _path + ".readOnly",
|
|
2143
|
+
expected: "(boolean | undefined)",
|
|
2144
|
+
value: input.readOnly
|
|
2145
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2146
|
+
method: "typia.assert",
|
|
2147
|
+
path: _path + ".writeOnly",
|
|
2148
|
+
expected: "(boolean | undefined)",
|
|
2149
|
+
value: input.writeOnly
|
|
2150
|
+
}, _errorFactory)) && (undefined === input["x-nullable"] || "boolean" === typeof input["x-nullable"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2007
2151
|
method: "typia.assert",
|
|
2008
2152
|
path: _path + "[\"x-nullable\"]",
|
|
2009
2153
|
expected: "(boolean | undefined)",
|
|
@@ -2048,7 +2192,12 @@ function assertHttpLlmApplication(props) {
|
|
|
2048
2192
|
path: _path + ".deprecated",
|
|
2049
2193
|
expected: "(boolean | undefined)",
|
|
2050
2194
|
value: input.deprecated
|
|
2051
|
-
}, _errorFactory)) && true && ("
|
|
2195
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2196
|
+
method: "typia.assert",
|
|
2197
|
+
path: _path + ".readOnly",
|
|
2198
|
+
expected: "(boolean | undefined)",
|
|
2199
|
+
value: input.readOnly
|
|
2200
|
+
}, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2052
2201
|
method: "typia.assert",
|
|
2053
2202
|
path: _path + ".name",
|
|
2054
2203
|
expected: "string",
|
|
@@ -2098,7 +2247,12 @@ function assertHttpLlmApplication(props) {
|
|
|
2098
2247
|
path: _path + ".deprecated",
|
|
2099
2248
|
expected: "(boolean | undefined)",
|
|
2100
2249
|
value: input.deprecated
|
|
2101
|
-
}, _errorFactory)) && true && ("
|
|
2250
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2251
|
+
method: "typia.assert",
|
|
2252
|
+
path: _path + ".readOnly",
|
|
2253
|
+
expected: "(boolean | undefined)",
|
|
2254
|
+
value: input.readOnly
|
|
2255
|
+
}, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2102
2256
|
method: "typia.assert",
|
|
2103
2257
|
path: _path + ".name",
|
|
2104
2258
|
expected: "string",
|
|
@@ -2148,7 +2302,12 @@ function assertHttpLlmApplication(props) {
|
|
|
2148
2302
|
path: _path + ".deprecated",
|
|
2149
2303
|
expected: "(boolean | undefined)",
|
|
2150
2304
|
value: input.deprecated
|
|
2151
|
-
}, _errorFactory)) && true && ("
|
|
2305
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2306
|
+
method: "typia.assert",
|
|
2307
|
+
path: _path + ".readOnly",
|
|
2308
|
+
expected: "(boolean | undefined)",
|
|
2309
|
+
value: input.readOnly
|
|
2310
|
+
}, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2152
2311
|
method: "typia.assert",
|
|
2153
2312
|
path: _path + ".name",
|
|
2154
2313
|
expected: "string",
|
|
@@ -2188,7 +2347,12 @@ function assertHttpLlmApplication(props) {
|
|
|
2188
2347
|
path: _path + ".deprecated",
|
|
2189
2348
|
expected: "(boolean | undefined)",
|
|
2190
2349
|
value: input.deprecated
|
|
2191
|
-
}, _errorFactory)) && true && ("
|
|
2350
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2351
|
+
method: "typia.assert",
|
|
2352
|
+
path: _path + ".readOnly",
|
|
2353
|
+
expected: "(boolean | undefined)",
|
|
2354
|
+
value: input.readOnly
|
|
2355
|
+
}, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2192
2356
|
method: "typia.assert",
|
|
2193
2357
|
path: _path + ".name",
|
|
2194
2358
|
expected: "string",
|
|
@@ -2228,7 +2392,12 @@ function assertHttpLlmApplication(props) {
|
|
|
2228
2392
|
path: _path + ".deprecated",
|
|
2229
2393
|
expected: "(boolean | undefined)",
|
|
2230
2394
|
value: input.deprecated
|
|
2231
|
-
}, _errorFactory)) && true && ("
|
|
2395
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2396
|
+
method: "typia.assert",
|
|
2397
|
+
path: _path + ".readOnly",
|
|
2398
|
+
expected: "(boolean | undefined)",
|
|
2399
|
+
value: input.readOnly
|
|
2400
|
+
}, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2232
2401
|
method: "typia.assert",
|
|
2233
2402
|
path: _path + ".name",
|
|
2234
2403
|
expected: "string",
|
|
@@ -2653,7 +2822,12 @@ function assertHttpLlmApplication(props) {
|
|
|
2653
2822
|
path: _path + ".deprecated",
|
|
2654
2823
|
expected: "(boolean | undefined)",
|
|
2655
2824
|
value: input.deprecated
|
|
2656
|
-
}, _errorFactory)) && true
|
|
2825
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2826
|
+
method: "typia.assert",
|
|
2827
|
+
path: _path + ".readOnly",
|
|
2828
|
+
expected: "(boolean | undefined)",
|
|
2829
|
+
value: input.readOnly
|
|
2830
|
+
}, _errorFactory)); const _ao43 = (input, _path, _exceptionable = true) => (undefined === input.operationId || "string" === typeof input.operationId || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2657
2831
|
method: "typia.assert",
|
|
2658
2832
|
path: _path + ".operationId",
|
|
2659
2833
|
expected: "(string | undefined)",
|
|
@@ -2763,7 +2937,12 @@ function assertHttpLlmApplication(props) {
|
|
|
2763
2937
|
path: _path + ".deprecated",
|
|
2764
2938
|
expected: "(boolean | undefined)",
|
|
2765
2939
|
value: input.deprecated
|
|
2766
|
-
}, _errorFactory)) && true
|
|
2940
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2941
|
+
method: "typia.assert",
|
|
2942
|
+
path: _path + ".readOnly",
|
|
2943
|
+
expected: "(boolean | undefined)",
|
|
2944
|
+
value: input.readOnly
|
|
2945
|
+
}, _errorFactory)); const _ao45 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
2767
2946
|
const value = input[key];
|
|
2768
2947
|
if (undefined === value)
|
|
2769
2948
|
return true;
|
|
@@ -2803,7 +2982,12 @@ function assertHttpLlmApplication(props) {
|
|
|
2803
2982
|
path: _path + ".deprecated",
|
|
2804
2983
|
expected: "(boolean | undefined)",
|
|
2805
2984
|
value: input.deprecated
|
|
2806
|
-
}, _errorFactory)) && true
|
|
2985
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2986
|
+
method: "typia.assert",
|
|
2987
|
+
path: _path + ".readOnly",
|
|
2988
|
+
expected: "(boolean | undefined)",
|
|
2989
|
+
value: input.readOnly
|
|
2990
|
+
}, _errorFactory)); const _ao47 = (input, _path, _exceptionable = true) => ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
2807
2991
|
method: "typia.assert",
|
|
2808
2992
|
path: _path + ".name",
|
|
2809
2993
|
expected: "string",
|
|
@@ -3173,7 +3357,17 @@ function assertHttpLlmApplication(props) {
|
|
|
3173
3357
|
path: _path + ".deprecated",
|
|
3174
3358
|
expected: "(boolean | undefined)",
|
|
3175
3359
|
value: input.deprecated
|
|
3176
|
-
}, _errorFactory)) && true && (
|
|
3360
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3361
|
+
method: "typia.assert",
|
|
3362
|
+
path: _path + ".readOnly",
|
|
3363
|
+
expected: "(boolean | undefined)",
|
|
3364
|
+
value: input.readOnly
|
|
3365
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3366
|
+
method: "typia.assert",
|
|
3367
|
+
path: _path + ".writeOnly",
|
|
3368
|
+
expected: "(boolean | undefined)",
|
|
3369
|
+
value: input.writeOnly
|
|
3370
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3177
3371
|
method: "typia.assert",
|
|
3178
3372
|
path: _path + ".examples",
|
|
3179
3373
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -3288,7 +3482,17 @@ function assertHttpLlmApplication(props) {
|
|
|
3288
3482
|
path: _path + ".deprecated",
|
|
3289
3483
|
expected: "(boolean | undefined)",
|
|
3290
3484
|
value: input.deprecated
|
|
3291
|
-
}, _errorFactory)) && true && (
|
|
3485
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3486
|
+
method: "typia.assert",
|
|
3487
|
+
path: _path + ".readOnly",
|
|
3488
|
+
expected: "(boolean | undefined)",
|
|
3489
|
+
value: input.readOnly
|
|
3490
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3491
|
+
method: "typia.assert",
|
|
3492
|
+
path: _path + ".writeOnly",
|
|
3493
|
+
expected: "(boolean | undefined)",
|
|
3494
|
+
value: input.writeOnly
|
|
3495
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3292
3496
|
method: "typia.assert",
|
|
3293
3497
|
path: _path + ".examples",
|
|
3294
3498
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -3378,7 +3582,17 @@ function assertHttpLlmApplication(props) {
|
|
|
3378
3582
|
path: _path + ".deprecated",
|
|
3379
3583
|
expected: "(boolean | undefined)",
|
|
3380
3584
|
value: input.deprecated
|
|
3381
|
-
}, _errorFactory)) && true && (
|
|
3585
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3586
|
+
method: "typia.assert",
|
|
3587
|
+
path: _path + ".readOnly",
|
|
3588
|
+
expected: "(boolean | undefined)",
|
|
3589
|
+
value: input.readOnly
|
|
3590
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3591
|
+
method: "typia.assert",
|
|
3592
|
+
path: _path + ".writeOnly",
|
|
3593
|
+
expected: "(boolean | undefined)",
|
|
3594
|
+
value: input.writeOnly
|
|
3595
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3382
3596
|
method: "typia.assert",
|
|
3383
3597
|
path: _path + ".examples",
|
|
3384
3598
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -3468,7 +3682,17 @@ function assertHttpLlmApplication(props) {
|
|
|
3468
3682
|
path: _path + ".deprecated",
|
|
3469
3683
|
expected: "(boolean | undefined)",
|
|
3470
3684
|
value: input.deprecated
|
|
3471
|
-
}, _errorFactory)) && true && (
|
|
3685
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3686
|
+
method: "typia.assert",
|
|
3687
|
+
path: _path + ".readOnly",
|
|
3688
|
+
expected: "(boolean | undefined)",
|
|
3689
|
+
value: input.readOnly
|
|
3690
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3691
|
+
method: "typia.assert",
|
|
3692
|
+
path: _path + ".writeOnly",
|
|
3693
|
+
expected: "(boolean | undefined)",
|
|
3694
|
+
value: input.writeOnly
|
|
3695
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3472
3696
|
method: "typia.assert",
|
|
3473
3697
|
path: _path + ".examples",
|
|
3474
3698
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -3543,7 +3767,17 @@ function assertHttpLlmApplication(props) {
|
|
|
3543
3767
|
path: _path + ".deprecated",
|
|
3544
3768
|
expected: "(boolean | undefined)",
|
|
3545
3769
|
value: input.deprecated
|
|
3546
|
-
}, _errorFactory)) && true && (
|
|
3770
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3771
|
+
method: "typia.assert",
|
|
3772
|
+
path: _path + ".readOnly",
|
|
3773
|
+
expected: "(boolean | undefined)",
|
|
3774
|
+
value: input.readOnly
|
|
3775
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3776
|
+
method: "typia.assert",
|
|
3777
|
+
path: _path + ".writeOnly",
|
|
3778
|
+
expected: "(boolean | undefined)",
|
|
3779
|
+
value: input.writeOnly
|
|
3780
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3547
3781
|
method: "typia.assert",
|
|
3548
3782
|
path: _path + ".examples",
|
|
3549
3783
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -3633,7 +3867,17 @@ function assertHttpLlmApplication(props) {
|
|
|
3633
3867
|
path: _path + ".deprecated",
|
|
3634
3868
|
expected: "(boolean | undefined)",
|
|
3635
3869
|
value: input.deprecated
|
|
3636
|
-
}, _errorFactory)) && true && (
|
|
3870
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3871
|
+
method: "typia.assert",
|
|
3872
|
+
path: _path + ".readOnly",
|
|
3873
|
+
expected: "(boolean | undefined)",
|
|
3874
|
+
value: input.readOnly
|
|
3875
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3876
|
+
method: "typia.assert",
|
|
3877
|
+
path: _path + ".writeOnly",
|
|
3878
|
+
expected: "(boolean | undefined)",
|
|
3879
|
+
value: input.writeOnly
|
|
3880
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3637
3881
|
method: "typia.assert",
|
|
3638
3882
|
path: _path + ".examples",
|
|
3639
3883
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -3683,7 +3927,17 @@ function assertHttpLlmApplication(props) {
|
|
|
3683
3927
|
path: _path + ".deprecated",
|
|
3684
3928
|
expected: "(boolean | undefined)",
|
|
3685
3929
|
value: input.deprecated
|
|
3686
|
-
}, _errorFactory)) && true
|
|
3930
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3931
|
+
method: "typia.assert",
|
|
3932
|
+
path: _path + ".readOnly",
|
|
3933
|
+
expected: "(boolean | undefined)",
|
|
3934
|
+
value: input.readOnly
|
|
3935
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3936
|
+
method: "typia.assert",
|
|
3937
|
+
path: _path + ".writeOnly",
|
|
3938
|
+
expected: "(boolean | undefined)",
|
|
3939
|
+
value: input.writeOnly
|
|
3940
|
+
}, _errorFactory)); const _ao65 = (input, _path, _exceptionable = true) => ((Array.isArray(input.allOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3687
3941
|
method: "typia.assert",
|
|
3688
3942
|
path: _path + ".allOf",
|
|
3689
3943
|
expected: "Array<OpenApiV3.IJsonSchema>",
|
|
@@ -3733,7 +3987,17 @@ function assertHttpLlmApplication(props) {
|
|
|
3733
3987
|
path: _path + ".deprecated",
|
|
3734
3988
|
expected: "(boolean | undefined)",
|
|
3735
3989
|
value: input.deprecated
|
|
3736
|
-
}, _errorFactory)) && true
|
|
3990
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3991
|
+
method: "typia.assert",
|
|
3992
|
+
path: _path + ".readOnly",
|
|
3993
|
+
expected: "(boolean | undefined)",
|
|
3994
|
+
value: input.readOnly
|
|
3995
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3996
|
+
method: "typia.assert",
|
|
3997
|
+
path: _path + ".writeOnly",
|
|
3998
|
+
expected: "(boolean | undefined)",
|
|
3999
|
+
value: input.writeOnly
|
|
4000
|
+
}, _errorFactory)); const _ao66 = (input, _path, _exceptionable = true) => ((Array.isArray(input.anyOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3737
4001
|
method: "typia.assert",
|
|
3738
4002
|
path: _path + ".anyOf",
|
|
3739
4003
|
expected: "Array<OpenApiV3.IJsonSchema>",
|
|
@@ -3783,7 +4047,17 @@ function assertHttpLlmApplication(props) {
|
|
|
3783
4047
|
path: _path + ".deprecated",
|
|
3784
4048
|
expected: "(boolean | undefined)",
|
|
3785
4049
|
value: input.deprecated
|
|
3786
|
-
}, _errorFactory)) && true
|
|
4050
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4051
|
+
method: "typia.assert",
|
|
4052
|
+
path: _path + ".readOnly",
|
|
4053
|
+
expected: "(boolean | undefined)",
|
|
4054
|
+
value: input.readOnly
|
|
4055
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4056
|
+
method: "typia.assert",
|
|
4057
|
+
path: _path + ".writeOnly",
|
|
4058
|
+
expected: "(boolean | undefined)",
|
|
4059
|
+
value: input.writeOnly
|
|
4060
|
+
}, _errorFactory)); const _ao67 = (input, _path, _exceptionable = true) => ((Array.isArray(input.oneOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3787
4061
|
method: "typia.assert",
|
|
3788
4062
|
path: _path + ".oneOf",
|
|
3789
4063
|
expected: "Array<OpenApiV3.IJsonSchema>",
|
|
@@ -3843,7 +4117,17 @@ function assertHttpLlmApplication(props) {
|
|
|
3843
4117
|
path: _path + ".deprecated",
|
|
3844
4118
|
expected: "(boolean | undefined)",
|
|
3845
4119
|
value: input.deprecated
|
|
3846
|
-
}, _errorFactory)) && true
|
|
4120
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4121
|
+
method: "typia.assert",
|
|
4122
|
+
path: _path + ".readOnly",
|
|
4123
|
+
expected: "(boolean | undefined)",
|
|
4124
|
+
value: input.readOnly
|
|
4125
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4126
|
+
method: "typia.assert",
|
|
4127
|
+
path: _path + ".writeOnly",
|
|
4128
|
+
expected: "(boolean | undefined)",
|
|
4129
|
+
value: input.writeOnly
|
|
4130
|
+
}, _errorFactory)); const _ao68 = (input, _path, _exceptionable = true) => ("string" === typeof input.propertyName || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3847
4131
|
method: "typia.assert",
|
|
3848
4132
|
path: _path + ".propertyName",
|
|
3849
4133
|
expected: "string",
|
|
@@ -3883,7 +4167,17 @@ function assertHttpLlmApplication(props) {
|
|
|
3883
4167
|
path: _path + ".deprecated",
|
|
3884
4168
|
expected: "(boolean | undefined)",
|
|
3885
4169
|
value: input.deprecated
|
|
3886
|
-
}, _errorFactory)) && true && (
|
|
4170
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4171
|
+
method: "typia.assert",
|
|
4172
|
+
path: _path + ".readOnly",
|
|
4173
|
+
expected: "(boolean | undefined)",
|
|
4174
|
+
value: input.readOnly
|
|
4175
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4176
|
+
method: "typia.assert",
|
|
4177
|
+
path: _path + ".writeOnly",
|
|
4178
|
+
expected: "(boolean | undefined)",
|
|
4179
|
+
value: input.writeOnly
|
|
4180
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3887
4181
|
method: "typia.assert",
|
|
3888
4182
|
path: _path + ".examples",
|
|
3889
4183
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -3923,7 +4217,17 @@ function assertHttpLlmApplication(props) {
|
|
|
3923
4217
|
path: _path + ".deprecated",
|
|
3924
4218
|
expected: "(boolean | undefined)",
|
|
3925
4219
|
value: input.deprecated
|
|
3926
|
-
}, _errorFactory)) && true && (
|
|
4220
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4221
|
+
method: "typia.assert",
|
|
4222
|
+
path: _path + ".readOnly",
|
|
4223
|
+
expected: "(boolean | undefined)",
|
|
4224
|
+
value: input.readOnly
|
|
4225
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4226
|
+
method: "typia.assert",
|
|
4227
|
+
path: _path + ".writeOnly",
|
|
4228
|
+
expected: "(boolean | undefined)",
|
|
4229
|
+
value: input.writeOnly
|
|
4230
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3927
4231
|
method: "typia.assert",
|
|
3928
4232
|
path: _path + ".examples",
|
|
3929
4233
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -4078,7 +4382,17 @@ function assertHttpLlmApplication(props) {
|
|
|
4078
4382
|
path: _path + ".deprecated",
|
|
4079
4383
|
expected: "(boolean | undefined)",
|
|
4080
4384
|
value: input.deprecated
|
|
4081
|
-
}, _errorFactory)) && true
|
|
4385
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4386
|
+
method: "typia.assert",
|
|
4387
|
+
path: _path + ".readOnly",
|
|
4388
|
+
expected: "(boolean | undefined)",
|
|
4389
|
+
value: input.readOnly
|
|
4390
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4391
|
+
method: "typia.assert",
|
|
4392
|
+
path: _path + ".writeOnly",
|
|
4393
|
+
expected: "(boolean | undefined)",
|
|
4394
|
+
value: input.writeOnly
|
|
4395
|
+
}, _errorFactory)); const _ao78 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
4082
4396
|
const value = input[key];
|
|
4083
4397
|
if (undefined === value)
|
|
4084
4398
|
return true;
|
|
@@ -4163,7 +4477,17 @@ function assertHttpLlmApplication(props) {
|
|
|
4163
4477
|
path: _path + ".deprecated",
|
|
4164
4478
|
expected: "(boolean | undefined)",
|
|
4165
4479
|
value: input.deprecated
|
|
4166
|
-
}, _errorFactory)) && true
|
|
4480
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4481
|
+
method: "typia.assert",
|
|
4482
|
+
path: _path + ".readOnly",
|
|
4483
|
+
expected: "(boolean | undefined)",
|
|
4484
|
+
value: input.readOnly
|
|
4485
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4486
|
+
method: "typia.assert",
|
|
4487
|
+
path: _path + ".writeOnly",
|
|
4488
|
+
expected: "(boolean | undefined)",
|
|
4489
|
+
value: input.writeOnly
|
|
4490
|
+
}, _errorFactory)); const _ao81 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
4167
4491
|
const value = input[key];
|
|
4168
4492
|
if (undefined === value)
|
|
4169
4493
|
return true;
|
|
@@ -4673,7 +4997,17 @@ function assertHttpLlmApplication(props) {
|
|
|
4673
4997
|
path: _path + ".deprecated",
|
|
4674
4998
|
expected: "(boolean | undefined)",
|
|
4675
4999
|
value: input.deprecated
|
|
4676
|
-
}, _errorFactory)) && true
|
|
5000
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5001
|
+
method: "typia.assert",
|
|
5002
|
+
path: _path + ".readOnly",
|
|
5003
|
+
expected: "(boolean | undefined)",
|
|
5004
|
+
value: input.readOnly
|
|
5005
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5006
|
+
method: "typia.assert",
|
|
5007
|
+
path: _path + ".writeOnly",
|
|
5008
|
+
expected: "(boolean | undefined)",
|
|
5009
|
+
value: input.writeOnly
|
|
5010
|
+
}, _errorFactory)); const _ao100 = (input, _path, _exceptionable = true) => (undefined === input.operationId || "string" === typeof input.operationId || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4677
5011
|
method: "typia.assert",
|
|
4678
5012
|
path: _path + ".operationId",
|
|
4679
5013
|
expected: "(string | undefined)",
|
|
@@ -4823,7 +5157,17 @@ function assertHttpLlmApplication(props) {
|
|
|
4823
5157
|
path: _path + ".deprecated",
|
|
4824
5158
|
expected: "(boolean | undefined)",
|
|
4825
5159
|
value: input.deprecated
|
|
4826
|
-
}, _errorFactory)) && true
|
|
5160
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5161
|
+
method: "typia.assert",
|
|
5162
|
+
path: _path + ".readOnly",
|
|
5163
|
+
expected: "(boolean | undefined)",
|
|
5164
|
+
value: input.readOnly
|
|
5165
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5166
|
+
method: "typia.assert",
|
|
5167
|
+
path: _path + ".writeOnly",
|
|
5168
|
+
expected: "(boolean | undefined)",
|
|
5169
|
+
value: input.writeOnly
|
|
5170
|
+
}, _errorFactory)); const _ao102 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
4827
5171
|
const value = input[key];
|
|
4828
5172
|
if (undefined === value)
|
|
4829
5173
|
return true;
|
|
@@ -4873,7 +5217,17 @@ function assertHttpLlmApplication(props) {
|
|
|
4873
5217
|
path: _path + ".deprecated",
|
|
4874
5218
|
expected: "(boolean | undefined)",
|
|
4875
5219
|
value: input.deprecated
|
|
4876
|
-
}, _errorFactory)) && true
|
|
5220
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5221
|
+
method: "typia.assert",
|
|
5222
|
+
path: _path + ".readOnly",
|
|
5223
|
+
expected: "(boolean | undefined)",
|
|
5224
|
+
value: input.readOnly
|
|
5225
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5226
|
+
method: "typia.assert",
|
|
5227
|
+
path: _path + ".writeOnly",
|
|
5228
|
+
expected: "(boolean | undefined)",
|
|
5229
|
+
value: input.writeOnly
|
|
5230
|
+
}, _errorFactory)); const _ao104 = (input, _path, _exceptionable = true) => ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4877
5231
|
method: "typia.assert",
|
|
4878
5232
|
path: _path + ".name",
|
|
4879
5233
|
expected: "string",
|
|
@@ -5298,7 +5652,17 @@ function assertHttpLlmApplication(props) {
|
|
|
5298
5652
|
path: _path + ".deprecated",
|
|
5299
5653
|
expected: "(boolean | undefined)",
|
|
5300
5654
|
value: input.deprecated
|
|
5301
|
-
}, _errorFactory)) && true && (
|
|
5655
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5656
|
+
method: "typia.assert",
|
|
5657
|
+
path: _path + ".readOnly",
|
|
5658
|
+
expected: "(boolean | undefined)",
|
|
5659
|
+
value: input.readOnly
|
|
5660
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5661
|
+
method: "typia.assert",
|
|
5662
|
+
path: _path + ".writeOnly",
|
|
5663
|
+
expected: "(boolean | undefined)",
|
|
5664
|
+
value: input.writeOnly
|
|
5665
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5302
5666
|
method: "typia.assert",
|
|
5303
5667
|
path: _path + ".examples",
|
|
5304
5668
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -5378,7 +5742,17 @@ function assertHttpLlmApplication(props) {
|
|
|
5378
5742
|
path: _path + ".deprecated",
|
|
5379
5743
|
expected: "(boolean | undefined)",
|
|
5380
5744
|
value: input.deprecated
|
|
5381
|
-
}, _errorFactory)) && true && (undefined === input.
|
|
5745
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5746
|
+
method: "typia.assert",
|
|
5747
|
+
path: _path + ".readOnly",
|
|
5748
|
+
expected: "(boolean | undefined)",
|
|
5749
|
+
value: input.readOnly
|
|
5750
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5751
|
+
method: "typia.assert",
|
|
5752
|
+
path: _path + ".writeOnly",
|
|
5753
|
+
expected: "(boolean | undefined)",
|
|
5754
|
+
value: input.writeOnly
|
|
5755
|
+
}, _errorFactory)) && (undefined === input.minimum || "number" === typeof input.minimum || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5382
5756
|
method: "typia.assert",
|
|
5383
5757
|
path: _path + ".minimum",
|
|
5384
5758
|
expected: "(number | undefined)",
|
|
@@ -5413,16 +5787,6 @@ function assertHttpLlmApplication(props) {
|
|
|
5413
5787
|
path: _path + ".format",
|
|
5414
5788
|
expected: "(string | undefined)",
|
|
5415
5789
|
value: input.format
|
|
5416
|
-
}, _errorFactory)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5417
|
-
method: "typia.assert",
|
|
5418
|
-
path: _path + ".maxLength",
|
|
5419
|
-
expected: "number & Type<\"uint64\">",
|
|
5420
|
-
value: input.maxLength
|
|
5421
|
-
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5422
|
-
method: "typia.assert",
|
|
5423
|
-
path: _path + ".maxLength",
|
|
5424
|
-
expected: "((number & Type<\"uint64\">) | undefined)",
|
|
5425
|
-
value: input.maxLength
|
|
5426
5790
|
}, _errorFactory)) && (undefined === input.pattern || "string" === typeof input.pattern || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5427
5791
|
method: "typia.assert",
|
|
5428
5792
|
path: _path + ".pattern",
|
|
@@ -5443,6 +5807,16 @@ function assertHttpLlmApplication(props) {
|
|
|
5443
5807
|
path: _path + ".minLength",
|
|
5444
5808
|
expected: "((number & Type<\"uint64\">) | undefined)",
|
|
5445
5809
|
value: input.minLength
|
|
5810
|
+
}, _errorFactory)) && (undefined === input.maxLength || "number" === typeof input.maxLength && (Math.floor(input.maxLength) === input.maxLength && 0 <= input.maxLength && input.maxLength <= 18446744073709552000 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5811
|
+
method: "typia.assert",
|
|
5812
|
+
path: _path + ".maxLength",
|
|
5813
|
+
expected: "number & Type<\"uint64\">",
|
|
5814
|
+
value: input.maxLength
|
|
5815
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5816
|
+
method: "typia.assert",
|
|
5817
|
+
path: _path + ".maxLength",
|
|
5818
|
+
expected: "((number & Type<\"uint64\">) | undefined)",
|
|
5819
|
+
value: input.maxLength
|
|
5446
5820
|
}, _errorFactory)) && ((null !== input.items || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5447
5821
|
method: "typia.assert",
|
|
5448
5822
|
path: _path + ".items",
|
|
@@ -5693,7 +6067,17 @@ function assertHttpLlmApplication(props) {
|
|
|
5693
6067
|
path: _path + ".deprecated",
|
|
5694
6068
|
expected: "(boolean | undefined)",
|
|
5695
6069
|
value: input.deprecated
|
|
5696
|
-
}, _errorFactory)) && true
|
|
6070
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6071
|
+
method: "typia.assert",
|
|
6072
|
+
path: _path + ".readOnly",
|
|
6073
|
+
expected: "(boolean | undefined)",
|
|
6074
|
+
value: input.readOnly
|
|
6075
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6076
|
+
method: "typia.assert",
|
|
6077
|
+
path: _path + ".writeOnly",
|
|
6078
|
+
expected: "(boolean | undefined)",
|
|
6079
|
+
value: input.writeOnly
|
|
6080
|
+
}, _errorFactory)); const _ao117 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5697
6081
|
method: "typia.assert",
|
|
5698
6082
|
path: _path + ".nullable",
|
|
5699
6083
|
expected: "(boolean | undefined)",
|
|
@@ -5738,7 +6122,17 @@ function assertHttpLlmApplication(props) {
|
|
|
5738
6122
|
path: _path + ".deprecated",
|
|
5739
6123
|
expected: "(boolean | undefined)",
|
|
5740
6124
|
value: input.deprecated
|
|
5741
|
-
}, _errorFactory)) && true && (
|
|
6125
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6126
|
+
method: "typia.assert",
|
|
6127
|
+
path: _path + ".readOnly",
|
|
6128
|
+
expected: "(boolean | undefined)",
|
|
6129
|
+
value: input.readOnly
|
|
6130
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6131
|
+
method: "typia.assert",
|
|
6132
|
+
path: _path + ".writeOnly",
|
|
6133
|
+
expected: "(boolean | undefined)",
|
|
6134
|
+
value: input.writeOnly
|
|
6135
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5742
6136
|
method: "typia.assert",
|
|
5743
6137
|
path: _path + ".examples",
|
|
5744
6138
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -5858,7 +6252,17 @@ function assertHttpLlmApplication(props) {
|
|
|
5858
6252
|
path: _path + ".deprecated",
|
|
5859
6253
|
expected: "(boolean | undefined)",
|
|
5860
6254
|
value: input.deprecated
|
|
5861
|
-
}, _errorFactory)) && true && (
|
|
6255
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6256
|
+
method: "typia.assert",
|
|
6257
|
+
path: _path + ".readOnly",
|
|
6258
|
+
expected: "(boolean | undefined)",
|
|
6259
|
+
value: input.readOnly
|
|
6260
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6261
|
+
method: "typia.assert",
|
|
6262
|
+
path: _path + ".writeOnly",
|
|
6263
|
+
expected: "(boolean | undefined)",
|
|
6264
|
+
value: input.writeOnly
|
|
6265
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5862
6266
|
method: "typia.assert",
|
|
5863
6267
|
path: _path + ".examples",
|
|
5864
6268
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -5948,7 +6352,17 @@ function assertHttpLlmApplication(props) {
|
|
|
5948
6352
|
path: _path + ".deprecated",
|
|
5949
6353
|
expected: "(boolean | undefined)",
|
|
5950
6354
|
value: input.deprecated
|
|
5951
|
-
}, _errorFactory)) && true && (
|
|
6355
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6356
|
+
method: "typia.assert",
|
|
6357
|
+
path: _path + ".readOnly",
|
|
6358
|
+
expected: "(boolean | undefined)",
|
|
6359
|
+
value: input.readOnly
|
|
6360
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6361
|
+
method: "typia.assert",
|
|
6362
|
+
path: _path + ".writeOnly",
|
|
6363
|
+
expected: "(boolean | undefined)",
|
|
6364
|
+
value: input.writeOnly
|
|
6365
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
5952
6366
|
method: "typia.assert",
|
|
5953
6367
|
path: _path + ".examples",
|
|
5954
6368
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -6043,7 +6457,17 @@ function assertHttpLlmApplication(props) {
|
|
|
6043
6457
|
path: _path + ".deprecated",
|
|
6044
6458
|
expected: "(boolean | undefined)",
|
|
6045
6459
|
value: input.deprecated
|
|
6046
|
-
}, _errorFactory)) && true && (
|
|
6460
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6461
|
+
method: "typia.assert",
|
|
6462
|
+
path: _path + ".readOnly",
|
|
6463
|
+
expected: "(boolean | undefined)",
|
|
6464
|
+
value: input.readOnly
|
|
6465
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6466
|
+
method: "typia.assert",
|
|
6467
|
+
path: _path + ".writeOnly",
|
|
6468
|
+
expected: "(boolean | undefined)",
|
|
6469
|
+
value: input.writeOnly
|
|
6470
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6047
6471
|
method: "typia.assert",
|
|
6048
6472
|
path: _path + ".examples",
|
|
6049
6473
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -6168,7 +6592,17 @@ function assertHttpLlmApplication(props) {
|
|
|
6168
6592
|
path: _path + ".deprecated",
|
|
6169
6593
|
expected: "(boolean | undefined)",
|
|
6170
6594
|
value: input.deprecated
|
|
6171
|
-
}, _errorFactory)) && true && (
|
|
6595
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6596
|
+
method: "typia.assert",
|
|
6597
|
+
path: _path + ".readOnly",
|
|
6598
|
+
expected: "(boolean | undefined)",
|
|
6599
|
+
value: input.readOnly
|
|
6600
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6601
|
+
method: "typia.assert",
|
|
6602
|
+
path: _path + ".writeOnly",
|
|
6603
|
+
expected: "(boolean | undefined)",
|
|
6604
|
+
value: input.writeOnly
|
|
6605
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6172
6606
|
method: "typia.assert",
|
|
6173
6607
|
path: _path + ".examples",
|
|
6174
6608
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -6218,7 +6652,17 @@ function assertHttpLlmApplication(props) {
|
|
|
6218
6652
|
path: _path + ".deprecated",
|
|
6219
6653
|
expected: "(boolean | undefined)",
|
|
6220
6654
|
value: input.deprecated
|
|
6221
|
-
}, _errorFactory)) && true
|
|
6655
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6656
|
+
method: "typia.assert",
|
|
6657
|
+
path: _path + ".readOnly",
|
|
6658
|
+
expected: "(boolean | undefined)",
|
|
6659
|
+
value: input.readOnly
|
|
6660
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6661
|
+
method: "typia.assert",
|
|
6662
|
+
path: _path + ".writeOnly",
|
|
6663
|
+
expected: "(boolean | undefined)",
|
|
6664
|
+
value: input.writeOnly
|
|
6665
|
+
}, _errorFactory)); const _ao123 = (input, _path, _exceptionable = true) => ("string" === typeof input.$recursiveRef || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6222
6666
|
method: "typia.assert",
|
|
6223
6667
|
path: _path + ".$recursiveRef",
|
|
6224
6668
|
expected: "string",
|
|
@@ -6253,7 +6697,17 @@ function assertHttpLlmApplication(props) {
|
|
|
6253
6697
|
path: _path + ".deprecated",
|
|
6254
6698
|
expected: "(boolean | undefined)",
|
|
6255
6699
|
value: input.deprecated
|
|
6256
|
-
}, _errorFactory)) && true
|
|
6700
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6701
|
+
method: "typia.assert",
|
|
6702
|
+
path: _path + ".readOnly",
|
|
6703
|
+
expected: "(boolean | undefined)",
|
|
6704
|
+
value: input.readOnly
|
|
6705
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6706
|
+
method: "typia.assert",
|
|
6707
|
+
path: _path + ".writeOnly",
|
|
6708
|
+
expected: "(boolean | undefined)",
|
|
6709
|
+
value: input.writeOnly
|
|
6710
|
+
}, _errorFactory)); const _ao124 = (input, _path, _exceptionable = true) => ((Array.isArray(input.allOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6257
6711
|
method: "typia.assert",
|
|
6258
6712
|
path: _path + ".allOf",
|
|
6259
6713
|
expected: "Array<OpenApiV3_1.IJsonSchema>",
|
|
@@ -6303,7 +6757,17 @@ function assertHttpLlmApplication(props) {
|
|
|
6303
6757
|
path: _path + ".deprecated",
|
|
6304
6758
|
expected: "(boolean | undefined)",
|
|
6305
6759
|
value: input.deprecated
|
|
6306
|
-
}, _errorFactory)) && true
|
|
6760
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6761
|
+
method: "typia.assert",
|
|
6762
|
+
path: _path + ".readOnly",
|
|
6763
|
+
expected: "(boolean | undefined)",
|
|
6764
|
+
value: input.readOnly
|
|
6765
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6766
|
+
method: "typia.assert",
|
|
6767
|
+
path: _path + ".writeOnly",
|
|
6768
|
+
expected: "(boolean | undefined)",
|
|
6769
|
+
value: input.writeOnly
|
|
6770
|
+
}, _errorFactory)); const _ao125 = (input, _path, _exceptionable = true) => ((Array.isArray(input.anyOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6307
6771
|
method: "typia.assert",
|
|
6308
6772
|
path: _path + ".anyOf",
|
|
6309
6773
|
expected: "Array<OpenApiV3_1.IJsonSchema>",
|
|
@@ -6353,7 +6817,17 @@ function assertHttpLlmApplication(props) {
|
|
|
6353
6817
|
path: _path + ".deprecated",
|
|
6354
6818
|
expected: "(boolean | undefined)",
|
|
6355
6819
|
value: input.deprecated
|
|
6356
|
-
}, _errorFactory)) && true
|
|
6820
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6821
|
+
method: "typia.assert",
|
|
6822
|
+
path: _path + ".readOnly",
|
|
6823
|
+
expected: "(boolean | undefined)",
|
|
6824
|
+
value: input.readOnly
|
|
6825
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6826
|
+
method: "typia.assert",
|
|
6827
|
+
path: _path + ".writeOnly",
|
|
6828
|
+
expected: "(boolean | undefined)",
|
|
6829
|
+
value: input.writeOnly
|
|
6830
|
+
}, _errorFactory)); const _ao126 = (input, _path, _exceptionable = true) => ((Array.isArray(input.oneOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6357
6831
|
method: "typia.assert",
|
|
6358
6832
|
path: _path + ".oneOf",
|
|
6359
6833
|
expected: "Array<OpenApiV3_1.IJsonSchema>",
|
|
@@ -6413,7 +6887,17 @@ function assertHttpLlmApplication(props) {
|
|
|
6413
6887
|
path: _path + ".deprecated",
|
|
6414
6888
|
expected: "(boolean | undefined)",
|
|
6415
6889
|
value: input.deprecated
|
|
6416
|
-
}, _errorFactory)) && true
|
|
6890
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6891
|
+
method: "typia.assert",
|
|
6892
|
+
path: _path + ".readOnly",
|
|
6893
|
+
expected: "(boolean | undefined)",
|
|
6894
|
+
value: input.readOnly
|
|
6895
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6896
|
+
method: "typia.assert",
|
|
6897
|
+
path: _path + ".writeOnly",
|
|
6898
|
+
expected: "(boolean | undefined)",
|
|
6899
|
+
value: input.writeOnly
|
|
6900
|
+
}, _errorFactory)); const _ao127 = (input, _path, _exceptionable = true) => ("string" === typeof input.propertyName || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6417
6901
|
method: "typia.assert",
|
|
6418
6902
|
path: _path + ".propertyName",
|
|
6419
6903
|
expected: "string",
|
|
@@ -6453,7 +6937,17 @@ function assertHttpLlmApplication(props) {
|
|
|
6453
6937
|
path: _path + ".deprecated",
|
|
6454
6938
|
expected: "(boolean | undefined)",
|
|
6455
6939
|
value: input.deprecated
|
|
6456
|
-
}, _errorFactory)) && true && (
|
|
6940
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6941
|
+
method: "typia.assert",
|
|
6942
|
+
path: _path + ".readOnly",
|
|
6943
|
+
expected: "(boolean | undefined)",
|
|
6944
|
+
value: input.readOnly
|
|
6945
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6946
|
+
method: "typia.assert",
|
|
6947
|
+
path: _path + ".writeOnly",
|
|
6948
|
+
expected: "(boolean | undefined)",
|
|
6949
|
+
value: input.writeOnly
|
|
6950
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6457
6951
|
method: "typia.assert",
|
|
6458
6952
|
path: _path + ".examples",
|
|
6459
6953
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -6493,7 +6987,17 @@ function assertHttpLlmApplication(props) {
|
|
|
6493
6987
|
path: _path + ".deprecated",
|
|
6494
6988
|
expected: "(boolean | undefined)",
|
|
6495
6989
|
value: input.deprecated
|
|
6496
|
-
}, _errorFactory)) && true && (
|
|
6990
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6991
|
+
method: "typia.assert",
|
|
6992
|
+
path: _path + ".readOnly",
|
|
6993
|
+
expected: "(boolean | undefined)",
|
|
6994
|
+
value: input.readOnly
|
|
6995
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6996
|
+
method: "typia.assert",
|
|
6997
|
+
path: _path + ".writeOnly",
|
|
6998
|
+
expected: "(boolean | undefined)",
|
|
6999
|
+
value: input.writeOnly
|
|
7000
|
+
}, _errorFactory)) && ((null !== input.examples || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6497
7001
|
method: "typia.assert",
|
|
6498
7002
|
path: _path + ".examples",
|
|
6499
7003
|
expected: "(Array<any> | Record<string, any> | undefined)",
|
|
@@ -6758,7 +7262,17 @@ function assertHttpLlmApplication(props) {
|
|
|
6758
7262
|
path: _path + ".deprecated",
|
|
6759
7263
|
expected: "(boolean | undefined)",
|
|
6760
7264
|
value: input.deprecated
|
|
6761
|
-
}, _errorFactory)) && true
|
|
7265
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7266
|
+
method: "typia.assert",
|
|
7267
|
+
path: _path + ".readOnly",
|
|
7268
|
+
expected: "(boolean | undefined)",
|
|
7269
|
+
value: input.readOnly
|
|
7270
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7271
|
+
method: "typia.assert",
|
|
7272
|
+
path: _path + ".writeOnly",
|
|
7273
|
+
expected: "(boolean | undefined)",
|
|
7274
|
+
value: input.writeOnly
|
|
7275
|
+
}, _errorFactory)); const _ao136 = (input, _path, _exceptionable = true) => ("string" === typeof input.$ref && RegExp(/^#\/components\/headers\/(.*)/).test(input.$ref) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6762
7276
|
method: "typia.assert",
|
|
6763
7277
|
path: _path + ".$ref",
|
|
6764
7278
|
expected: "`#/components/headers/${string}`",
|
|
@@ -6793,7 +7307,17 @@ function assertHttpLlmApplication(props) {
|
|
|
6793
7307
|
path: _path + ".deprecated",
|
|
6794
7308
|
expected: "(boolean | undefined)",
|
|
6795
7309
|
value: input.deprecated
|
|
6796
|
-
}, _errorFactory)) && true
|
|
7310
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7311
|
+
method: "typia.assert",
|
|
7312
|
+
path: _path + ".readOnly",
|
|
7313
|
+
expected: "(boolean | undefined)",
|
|
7314
|
+
value: input.readOnly
|
|
7315
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7316
|
+
method: "typia.assert",
|
|
7317
|
+
path: _path + ".writeOnly",
|
|
7318
|
+
expected: "(boolean | undefined)",
|
|
7319
|
+
value: input.writeOnly
|
|
7320
|
+
}, _errorFactory)); const _ao137 = (input, _path, _exceptionable = true) => ("string" === typeof input.$ref && RegExp(/^#\/components\/parameters\/(.*)/).test(input.$ref) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6797
7321
|
method: "typia.assert",
|
|
6798
7322
|
path: _path + ".$ref",
|
|
6799
7323
|
expected: "`#/components/parameters/${string}`",
|
|
@@ -6828,7 +7352,17 @@ function assertHttpLlmApplication(props) {
|
|
|
6828
7352
|
path: _path + ".deprecated",
|
|
6829
7353
|
expected: "(boolean | undefined)",
|
|
6830
7354
|
value: input.deprecated
|
|
6831
|
-
}, _errorFactory)) && true
|
|
7355
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7356
|
+
method: "typia.assert",
|
|
7357
|
+
path: _path + ".readOnly",
|
|
7358
|
+
expected: "(boolean | undefined)",
|
|
7359
|
+
value: input.readOnly
|
|
7360
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7361
|
+
method: "typia.assert",
|
|
7362
|
+
path: _path + ".writeOnly",
|
|
7363
|
+
expected: "(boolean | undefined)",
|
|
7364
|
+
value: input.writeOnly
|
|
7365
|
+
}, _errorFactory)); const _ao138 = (input, _path, _exceptionable = true) => (undefined === input.operationId || "string" === typeof input.operationId || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6832
7366
|
method: "typia.assert",
|
|
6833
7367
|
path: _path + ".operationId",
|
|
6834
7368
|
expected: "(string | undefined)",
|
|
@@ -7033,7 +7567,17 @@ function assertHttpLlmApplication(props) {
|
|
|
7033
7567
|
path: _path + ".deprecated",
|
|
7034
7568
|
expected: "(boolean | undefined)",
|
|
7035
7569
|
value: input.deprecated
|
|
7036
|
-
}, _errorFactory)) && true
|
|
7570
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7571
|
+
method: "typia.assert",
|
|
7572
|
+
path: _path + ".readOnly",
|
|
7573
|
+
expected: "(boolean | undefined)",
|
|
7574
|
+
value: input.readOnly
|
|
7575
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7576
|
+
method: "typia.assert",
|
|
7577
|
+
path: _path + ".writeOnly",
|
|
7578
|
+
expected: "(boolean | undefined)",
|
|
7579
|
+
value: input.writeOnly
|
|
7580
|
+
}, _errorFactory)); const _ao143 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
7037
7581
|
const value = input[key];
|
|
7038
7582
|
if (undefined === value)
|
|
7039
7583
|
return true;
|
|
@@ -7158,7 +7702,17 @@ function assertHttpLlmApplication(props) {
|
|
|
7158
7702
|
path: _path + ".deprecated",
|
|
7159
7703
|
expected: "(boolean | undefined)",
|
|
7160
7704
|
value: input.deprecated
|
|
7161
|
-
}, _errorFactory)) && true
|
|
7705
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7706
|
+
method: "typia.assert",
|
|
7707
|
+
path: _path + ".readOnly",
|
|
7708
|
+
expected: "(boolean | undefined)",
|
|
7709
|
+
value: input.readOnly
|
|
7710
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7711
|
+
method: "typia.assert",
|
|
7712
|
+
path: _path + ".writeOnly",
|
|
7713
|
+
expected: "(boolean | undefined)",
|
|
7714
|
+
value: input.writeOnly
|
|
7715
|
+
}, _errorFactory)); const _ao148 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
7162
7716
|
const value = input[key];
|
|
7163
7717
|
if (undefined === value)
|
|
7164
7718
|
return true;
|
|
@@ -7493,7 +8047,17 @@ function assertHttpLlmApplication(props) {
|
|
|
7493
8047
|
path: _path + ".deprecated",
|
|
7494
8048
|
expected: "(boolean | undefined)",
|
|
7495
8049
|
value: input.deprecated
|
|
7496
|
-
}, _errorFactory)) && true
|
|
8050
|
+
}, _errorFactory)) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8051
|
+
method: "typia.assert",
|
|
8052
|
+
path: _path + ".readOnly",
|
|
8053
|
+
expected: "(boolean | undefined)",
|
|
8054
|
+
value: input.readOnly
|
|
8055
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8056
|
+
method: "typia.assert",
|
|
8057
|
+
path: _path + ".writeOnly",
|
|
8058
|
+
expected: "(boolean | undefined)",
|
|
8059
|
+
value: input.writeOnly
|
|
8060
|
+
}, _errorFactory)); const _ao165 = (input, _path, _exceptionable = true) => ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7497
8061
|
method: "typia.assert",
|
|
7498
8062
|
path: _path + ".name",
|
|
7499
8063
|
expected: "string",
|
|
@@ -7818,6 +8382,16 @@ function assertHttpLlmApplication(props) {
|
|
|
7818
8382
|
path: _path + ".examples",
|
|
7819
8383
|
expected: "(Record<string, any> | undefined)",
|
|
7820
8384
|
value: input.examples
|
|
8385
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8386
|
+
method: "typia.assert",
|
|
8387
|
+
path: _path + ".readOnly",
|
|
8388
|
+
expected: "(boolean | undefined)",
|
|
8389
|
+
value: input.readOnly
|
|
8390
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8391
|
+
method: "typia.assert",
|
|
8392
|
+
path: _path + ".writeOnly",
|
|
8393
|
+
expected: "(boolean | undefined)",
|
|
8394
|
+
value: input.writeOnly
|
|
7821
8395
|
}, _errorFactory)); const _ao176 = (input, _path, _exceptionable = true) => (undefined === input["default"] || "boolean" === typeof input["default"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7822
8396
|
method: "typia.assert",
|
|
7823
8397
|
path: _path + "[\"default\"]",
|
|
@@ -7853,6 +8427,16 @@ function assertHttpLlmApplication(props) {
|
|
|
7853
8427
|
path: _path + ".examples",
|
|
7854
8428
|
expected: "(Record<string, any> | undefined)",
|
|
7855
8429
|
value: input.examples
|
|
8430
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8431
|
+
method: "typia.assert",
|
|
8432
|
+
path: _path + ".readOnly",
|
|
8433
|
+
expected: "(boolean | undefined)",
|
|
8434
|
+
value: input.readOnly
|
|
8435
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8436
|
+
method: "typia.assert",
|
|
8437
|
+
path: _path + ".writeOnly",
|
|
8438
|
+
expected: "(boolean | undefined)",
|
|
8439
|
+
value: input.writeOnly
|
|
7856
8440
|
}, _errorFactory)); const _ao177 = (input, _path, _exceptionable = true) => (undefined === input["default"] || "number" === typeof input["default"] && (Math.floor(input["default"]) === input["default"] && -9223372036854776000 <= input["default"] && input["default"] <= 9223372036854776000 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7857
8441
|
method: "typia.assert",
|
|
7858
8442
|
path: _path + "[\"default\"]",
|
|
@@ -7938,6 +8522,16 @@ function assertHttpLlmApplication(props) {
|
|
|
7938
8522
|
path: _path + ".examples",
|
|
7939
8523
|
expected: "(Record<string, any> | undefined)",
|
|
7940
8524
|
value: input.examples
|
|
8525
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8526
|
+
method: "typia.assert",
|
|
8527
|
+
path: _path + ".readOnly",
|
|
8528
|
+
expected: "(boolean | undefined)",
|
|
8529
|
+
value: input.readOnly
|
|
8530
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8531
|
+
method: "typia.assert",
|
|
8532
|
+
path: _path + ".writeOnly",
|
|
8533
|
+
expected: "(boolean | undefined)",
|
|
8534
|
+
value: input.writeOnly
|
|
7941
8535
|
}, _errorFactory)); const _ao178 = (input, _path, _exceptionable = true) => (undefined === input["default"] || "number" === typeof input["default"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
7942
8536
|
method: "typia.assert",
|
|
7943
8537
|
path: _path + "[\"default\"]",
|
|
@@ -8003,6 +8597,16 @@ function assertHttpLlmApplication(props) {
|
|
|
8003
8597
|
path: _path + ".examples",
|
|
8004
8598
|
expected: "(Record<string, any> | undefined)",
|
|
8005
8599
|
value: input.examples
|
|
8600
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8601
|
+
method: "typia.assert",
|
|
8602
|
+
path: _path + ".readOnly",
|
|
8603
|
+
expected: "(boolean | undefined)",
|
|
8604
|
+
value: input.readOnly
|
|
8605
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8606
|
+
method: "typia.assert",
|
|
8607
|
+
path: _path + ".writeOnly",
|
|
8608
|
+
expected: "(boolean | undefined)",
|
|
8609
|
+
value: input.writeOnly
|
|
8006
8610
|
}, _errorFactory)); const _ao179 = (input, _path, _exceptionable = true) => (undefined === input["default"] || "string" === typeof input["default"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8007
8611
|
method: "typia.assert",
|
|
8008
8612
|
path: _path + "[\"default\"]",
|
|
@@ -8073,6 +8677,16 @@ function assertHttpLlmApplication(props) {
|
|
|
8073
8677
|
path: _path + ".examples",
|
|
8074
8678
|
expected: "(Record<string, any> | undefined)",
|
|
8075
8679
|
value: input.examples
|
|
8680
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8681
|
+
method: "typia.assert",
|
|
8682
|
+
path: _path + ".readOnly",
|
|
8683
|
+
expected: "(boolean | undefined)",
|
|
8684
|
+
value: input.readOnly
|
|
8685
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8686
|
+
method: "typia.assert",
|
|
8687
|
+
path: _path + ".writeOnly",
|
|
8688
|
+
expected: "(boolean | undefined)",
|
|
8689
|
+
value: input.writeOnly
|
|
8076
8690
|
}, _errorFactory)); const _ao180 = (input, _path, _exceptionable = true) => (("object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8077
8691
|
method: "typia.assert",
|
|
8078
8692
|
path: _path + ".items",
|
|
@@ -8138,6 +8752,16 @@ function assertHttpLlmApplication(props) {
|
|
|
8138
8752
|
path: _path + ".examples",
|
|
8139
8753
|
expected: "(Record<string, any> | undefined)",
|
|
8140
8754
|
value: input.examples
|
|
8755
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8756
|
+
method: "typia.assert",
|
|
8757
|
+
path: _path + ".readOnly",
|
|
8758
|
+
expected: "(boolean | undefined)",
|
|
8759
|
+
value: input.readOnly
|
|
8760
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8761
|
+
method: "typia.assert",
|
|
8762
|
+
path: _path + ".writeOnly",
|
|
8763
|
+
expected: "(boolean | undefined)",
|
|
8764
|
+
value: input.writeOnly
|
|
8141
8765
|
}, _errorFactory)); const _ao181 = (input, _path, _exceptionable = true) => ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8142
8766
|
method: "typia.assert",
|
|
8143
8767
|
path: _path + ".type",
|
|
@@ -8228,6 +8852,16 @@ function assertHttpLlmApplication(props) {
|
|
|
8228
8852
|
path: _path + ".examples",
|
|
8229
8853
|
expected: "(Record<string, any> | undefined)",
|
|
8230
8854
|
value: input.examples
|
|
8855
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8856
|
+
method: "typia.assert",
|
|
8857
|
+
path: _path + ".readOnly",
|
|
8858
|
+
expected: "(boolean | undefined)",
|
|
8859
|
+
value: input.readOnly
|
|
8860
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8861
|
+
method: "typia.assert",
|
|
8862
|
+
path: _path + ".writeOnly",
|
|
8863
|
+
expected: "(boolean | undefined)",
|
|
8864
|
+
value: input.writeOnly
|
|
8231
8865
|
}, _errorFactory)); const _ao182 = (input, _path, _exceptionable = true) => (undefined === input.properties || ("object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8232
8866
|
method: "typia.assert",
|
|
8233
8867
|
path: _path + ".properties",
|
|
@@ -8298,6 +8932,16 @@ function assertHttpLlmApplication(props) {
|
|
|
8298
8932
|
path: _path + ".examples",
|
|
8299
8933
|
expected: "(Record<string, any> | undefined)",
|
|
8300
8934
|
value: input.examples
|
|
8935
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8936
|
+
method: "typia.assert",
|
|
8937
|
+
path: _path + ".readOnly",
|
|
8938
|
+
expected: "(boolean | undefined)",
|
|
8939
|
+
value: input.readOnly
|
|
8940
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8941
|
+
method: "typia.assert",
|
|
8942
|
+
path: _path + ".writeOnly",
|
|
8943
|
+
expected: "(boolean | undefined)",
|
|
8944
|
+
value: input.writeOnly
|
|
8301
8945
|
}, _errorFactory)); const _ao183 = (input, _path, _exceptionable = true) => ("string" === typeof input.$ref || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8302
8946
|
method: "typia.assert",
|
|
8303
8947
|
path: _path + ".$ref",
|
|
@@ -8328,6 +8972,16 @@ function assertHttpLlmApplication(props) {
|
|
|
8328
8972
|
path: _path + ".examples",
|
|
8329
8973
|
expected: "(Record<string, any> | undefined)",
|
|
8330
8974
|
value: input.examples
|
|
8975
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8976
|
+
method: "typia.assert",
|
|
8977
|
+
path: _path + ".readOnly",
|
|
8978
|
+
expected: "(boolean | undefined)",
|
|
8979
|
+
value: input.readOnly
|
|
8980
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8981
|
+
method: "typia.assert",
|
|
8982
|
+
path: _path + ".writeOnly",
|
|
8983
|
+
expected: "(boolean | undefined)",
|
|
8984
|
+
value: input.writeOnly
|
|
8331
8985
|
}, _errorFactory)); const _ao184 = (input, _path, _exceptionable = true) => ((Array.isArray(input.oneOf) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8332
8986
|
method: "typia.assert",
|
|
8333
8987
|
path: _path + ".oneOf",
|
|
@@ -8383,6 +9037,16 @@ function assertHttpLlmApplication(props) {
|
|
|
8383
9037
|
path: _path + ".examples",
|
|
8384
9038
|
expected: "(Record<string, any> | undefined)",
|
|
8385
9039
|
value: input.examples
|
|
9040
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9041
|
+
method: "typia.assert",
|
|
9042
|
+
path: _path + ".readOnly",
|
|
9043
|
+
expected: "(boolean | undefined)",
|
|
9044
|
+
value: input.readOnly
|
|
9045
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9046
|
+
method: "typia.assert",
|
|
9047
|
+
path: _path + ".writeOnly",
|
|
9048
|
+
expected: "(boolean | undefined)",
|
|
9049
|
+
value: input.writeOnly
|
|
8386
9050
|
}, _errorFactory)); const _ao185 = (input, _path, _exceptionable = true) => (null === input["default"] || undefined === input["default"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8387
9051
|
method: "typia.assert",
|
|
8388
9052
|
path: _path + "[\"default\"]",
|
|
@@ -8418,6 +9082,16 @@ function assertHttpLlmApplication(props) {
|
|
|
8418
9082
|
path: _path + ".examples",
|
|
8419
9083
|
expected: "(Record<string, any> | undefined)",
|
|
8420
9084
|
value: input.examples
|
|
9085
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9086
|
+
method: "typia.assert",
|
|
9087
|
+
path: _path + ".readOnly",
|
|
9088
|
+
expected: "(boolean | undefined)",
|
|
9089
|
+
value: input.readOnly
|
|
9090
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9091
|
+
method: "typia.assert",
|
|
9092
|
+
path: _path + ".writeOnly",
|
|
9093
|
+
expected: "(boolean | undefined)",
|
|
9094
|
+
value: input.writeOnly
|
|
8421
9095
|
}, _errorFactory)); const _ao186 = (input, _path, _exceptionable = true) => true && ((null !== input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8422
9096
|
method: "typia.assert",
|
|
8423
9097
|
path: _path + ".type",
|
|
@@ -8453,6 +9127,16 @@ function assertHttpLlmApplication(props) {
|
|
|
8453
9127
|
path: _path + ".examples",
|
|
8454
9128
|
expected: "(Record<string, any> | undefined)",
|
|
8455
9129
|
value: input.examples
|
|
9130
|
+
}, _errorFactory)) && (undefined === input.readOnly || "boolean" === typeof input.readOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9131
|
+
method: "typia.assert",
|
|
9132
|
+
path: _path + ".readOnly",
|
|
9133
|
+
expected: "(boolean | undefined)",
|
|
9134
|
+
value: input.readOnly
|
|
9135
|
+
}, _errorFactory)) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9136
|
+
method: "typia.assert",
|
|
9137
|
+
path: _path + ".writeOnly",
|
|
9138
|
+
expected: "(boolean | undefined)",
|
|
9139
|
+
value: input.writeOnly
|
|
8456
9140
|
}, _errorFactory)); const _ao187 = (input, _path, _exceptionable = true) => ("string" === typeof input.propertyName || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8457
9141
|
method: "typia.assert",
|
|
8458
9142
|
path: _path + ".propertyName",
|
|
@@ -9605,7 +10289,7 @@ function assertHttpLlmApplication(props) {
|
|
|
9605
10289
|
}
|
|
9606
10290
|
return input;
|
|
9607
10291
|
}; })()(props.document)),
|
|
9608
|
-
|
|
10292
|
+
config: props.config,
|
|
9609
10293
|
});
|
|
9610
10294
|
}
|
|
9611
10295
|
//# sourceMappingURL=assertHttpLlmApplication.js.map
|