@nestia/migrate 11.0.0-dev.20260314 → 11.0.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.
Files changed (39) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +93 -93
  3. package/lib/NestiaMigrateApplication.js +341 -341
  4. package/lib/bundles/NEST_TEMPLATE.js +48 -48
  5. package/lib/bundles/NEST_TEMPLATE.js.map +1 -1
  6. package/lib/bundles/SDK_TEMPLATE.js +21 -21
  7. package/lib/bundles/SDK_TEMPLATE.js.map +1 -1
  8. package/lib/index.mjs +469 -469
  9. package/lib/index.mjs.map +1 -1
  10. package/package.json +5 -5
  11. package/src/NestiaMigrateApplication.ts +168 -168
  12. package/src/analyzers/NestiaMigrateControllerAnalyzer.ts +51 -51
  13. package/src/bundles/NEST_TEMPLATE.ts +48 -48
  14. package/src/bundles/SDK_TEMPLATE.ts +21 -21
  15. package/src/executable/NestiaMigrateCommander.ts +104 -104
  16. package/src/executable/NestiaMigrateInquirer.ts +106 -106
  17. package/src/executable/bundle.js +125 -125
  18. package/src/factories/TypeLiteralFactory.ts +57 -57
  19. package/src/module.ts +7 -7
  20. package/src/programmers/NestiaMigrateApiFileProgrammer.ts +55 -55
  21. package/src/programmers/NestiaMigrateApiFunctionProgrammer.ts +347 -347
  22. package/src/programmers/NestiaMigrateApiNamespaceProgrammer.ts +517 -517
  23. package/src/programmers/NestiaMigrateApiSimulationProgrammer.ts +308 -308
  24. package/src/programmers/NestiaMigrateApiStartProgrammer.ts +197 -197
  25. package/src/programmers/NestiaMigrateDtoProgrammer.ts +98 -98
  26. package/src/programmers/NestiaMigrateE2eFileProgrammer.ts +153 -153
  27. package/src/programmers/NestiaMigrateE2eProgrammer.ts +48 -48
  28. package/src/programmers/NestiaMigrateImportProgrammer.ts +118 -118
  29. package/src/programmers/NestiaMigrateNestControllerProgrammer.ts +69 -69
  30. package/src/programmers/NestiaMigrateNestMethodProgrammer.ts +409 -409
  31. package/src/programmers/NestiaMigrateSchemaProgrammer.ts +465 -465
  32. package/src/programmers/index.ts +15 -15
  33. package/src/structures/INestiaMigrateContext.ts +9 -9
  34. package/src/structures/INestiaMigrateController.ts +8 -8
  35. package/src/structures/INestiaMigrateDto.ts +8 -8
  36. package/src/structures/INestiaMigrateProgram.ts +11 -11
  37. package/src/structures/index.ts +4 -4
  38. package/src/utils/FilePrinter.ts +49 -49
  39. package/src/utils/StringUtil.ts +114 -114
@@ -95,7 +95,7 @@ class NestiaMigrateApplication {
95
95
  if (undefined === value)
96
96
  return true;
97
97
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _io38(value);
98
- }); const _io38 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _io39(elem))) && (undefined === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && false === Array.isArray(input.requestBody) && _io42(input.requestBody)) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io45(input.responses)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io1(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) && _io48(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input["x-samchon-human"] || "boolean" === typeof input["x-samchon-human"]) && (undefined === input["x-samchon-accessor"] || Array.isArray(input["x-samchon-accessor"]) && input["x-samchon-accessor"].every(elem => "string" === typeof elem)) && (undefined === input["x-samchon-controller"] || "string" === typeof input["x-samchon-controller"]); const _io39 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || "querystring" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu0(input.schema)) && (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) && _io40(input.examples)); const _io40 = input => Object.keys(input).every(key => {
98
+ }); const _io38 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _io39(elem))) && (undefined === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && false === Array.isArray(input.requestBody) && _io42(input.requestBody)) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io45(input.responses)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io1(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) && _io48(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input["x-samchon-human"] || "boolean" === typeof input["x-samchon-human"]) && (undefined === input["x-samchon-accessor"] || Array.isArray(input["x-samchon-accessor"]) && input["x-samchon-accessor"].every(elem => "string" === typeof elem)) && (undefined === input["x-samchon-controller"] || "string" === typeof input["x-samchon-controller"]); const _io39 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "path" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "querystring" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu0(input.schema)) && (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) && _io40(input.examples)); const _io40 = input => Object.keys(input).every(key => {
99
99
  const value = input[key];
100
100
  if (undefined === value)
101
101
  return true;
@@ -127,12 +127,12 @@ class NestiaMigrateApplication {
127
127
  if (undefined === value)
128
128
  return true;
129
129
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu2(value);
130
- }); const _io55 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io56 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(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) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io57 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io58 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io59 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu2(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io60 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io54(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) && _iu2(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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io61 = input => "string" === typeof input.$ref; const _io62 = input => Array.isArray(input["x-anyOf"]) && input["x-anyOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem)); const _io63 = input => Array.isArray(input["x-oneOf"]) && input["x-oneOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem)); const _io64 = input => "null" === input.type && (null === input["default"] || undefined === input["default"]); const _io65 = input => null !== input.type && undefined === input.type; const _io66 = input => Object.keys(input).every(key => {
130
+ }); const _io55 = 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)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "boolean" === input.type; const _io56 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(input.maximum)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "integer" === input.type; const _io57 = 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) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "number" === input.type; const _io58 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === input.type; const _io59 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu2(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "array" === input.type; const _io60 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io54(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) && _iu2(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "object" === input.type; const _io61 = input => "string" === typeof input.$ref; const _io62 = input => Array.isArray(input["x-anyOf"]) && input["x-anyOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem)); const _io63 = input => Array.isArray(input["x-oneOf"]) && input["x-oneOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem)); const _io64 = input => "null" === input.type && (null === input["default"] || undefined === input["default"]); const _io65 = input => null !== input.type && undefined === input.type; const _io66 = input => Object.keys(input).every(key => {
131
131
  const value = input[key];
132
132
  if (undefined === value)
133
133
  return true;
134
134
  return "object" === typeof value && null !== value && _iu12(value);
135
- }); const _io67 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io68 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(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) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io69 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io70 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io71 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu2(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io72 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io54(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) && _iu2(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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io73 = input => "string" === typeof input.$ref && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io74 = input => Array.isArray(input["x-anyOf"]) && input["x-anyOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem)) && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io75 = input => Array.isArray(input["x-oneOf"]) && input["x-oneOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem)) && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io76 = input => "null" === input.type && (null === input["default"] || undefined === input["default"]) && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io77 = input => null !== input.type && undefined === input.type && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io78 = input => "object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu2(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 _io79 = input => Object.keys(input).every(key => {
135
+ }); const _io67 = 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)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "boolean" === input.type && "string" === typeof input.name && "string" === typeof input["in"]; const _io68 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(input.maximum)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "integer" === input.type && "string" === typeof input.name && "string" === typeof input["in"]; const _io69 = 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) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "number" === input.type && "string" === typeof input.name && "string" === typeof input["in"]; const _io70 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === input.type && "string" === typeof input.name && "string" === typeof input["in"]; const _io71 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu2(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "array" === input.type && "string" === typeof input.name && "string" === typeof input["in"]; const _io72 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io54(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) && _iu2(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "object" === input.type && "string" === typeof input.name && "string" === typeof input["in"]; const _io73 = input => "string" === typeof input.$ref && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io74 = input => Array.isArray(input["x-anyOf"]) && input["x-anyOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem)) && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io75 = input => Array.isArray(input["x-oneOf"]) && input["x-oneOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem)) && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io76 = input => "null" === input.type && (null === input["default"] || undefined === input["default"]) && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io77 = input => null !== input.type && undefined === input.type && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io78 = input => "object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu2(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 _io79 = input => Object.keys(input).every(key => {
136
136
  const value = input[key];
137
137
  if (undefined === value)
138
138
  return true;
@@ -167,7 +167,7 @@ class NestiaMigrateApplication {
167
167
  if (undefined === value)
168
168
  return true;
169
169
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu5(value);
170
- }); const _io106 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io107 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(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) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io108 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io109 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io110 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && ("object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu5(input.items)) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io111 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io105(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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io112 = input => "string" === typeof input.$ref; const _io113 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)); const _io114 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)); const _io115 = 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 && _io116(input.discriminator)); const _io116 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io23(input.mapping)); const _io117 = input => (null === input["default"] || undefined === input["default"]) && "null" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io118 = input => true && (null !== input.type && undefined === input.type) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io119 = input => Object.keys(input).every(key => {
170
+ }); const _io106 = 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)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "boolean" === input.type; const _io107 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(input.maximum)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "integer" === input.type; const _io108 = 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) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "number" === input.type; const _io109 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === input.type; const _io110 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && ("object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu5(input.items)) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "array" === input.type; const _io111 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io105(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) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "object" === input.type; const _io112 = input => "string" === typeof input.$ref; const _io113 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)); const _io114 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)); const _io115 = 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 && _io116(input.discriminator)); const _io116 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io23(input.mapping)); const _io117 = input => (null === input["default"] || undefined === input["default"]) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "null" === input.type; const _io118 = input => true && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.type && undefined === input.type); const _io119 = input => Object.keys(input).every(key => {
171
171
  const value = input[key];
172
172
  if (undefined === value)
173
173
  return true;
@@ -192,7 +192,7 @@ class NestiaMigrateApplication {
192
192
  if (undefined === value)
193
193
  return true;
194
194
  return "object" === typeof value && null !== value && _io130(value);
195
- }); const _io130 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu5(input.schema)) && (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) && _io123(input.examples)); const _io131 = input => Object.keys(input).every(key => {
195
+ }); const _io130 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "path" === input["in"] || "header" === input["in"] || "cookie" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu5(input.schema)) && (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) && _io123(input.examples)); const _io131 = input => Object.keys(input).every(key => {
196
196
  const value = input[key];
197
197
  if (undefined === value)
198
198
  return true;
@@ -237,12 +237,12 @@ class NestiaMigrateApplication {
237
237
  if (undefined === value)
238
238
  return true;
239
239
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu7(value);
240
- }); const _io163 = input => Array.isArray(input.type) && input.type.every(elem => "string" === elem || "number" === elem || "boolean" === elem || "object" === elem || "null" === elem || "integer" === elem || "array" === elem) && (null === input["default"] || undefined === input["default"] || Array.isArray(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"])) && ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && (null !== input.items && (undefined === input.items || (Array.isArray(input.items) && input.items.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem)) || "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 && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && (undefined === input.prefixItems || 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.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io162(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)) && (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) && _iu7(elem))) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io176(input.discriminator)) && (Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem))) && (Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem))) && "string" === typeof input.$ref; const _io164 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable); const _io165 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io166 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(input.maximum)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum && __typia_transform__isTypeInt64._isTypeInt64(input.exclusiveMinimum) || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum && __typia_transform__isTypeInt64._isTypeInt64(input.exclusiveMaximum) || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io167 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io168 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io169 = 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) && _iu7(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu7(input.items)))) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(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) && _iu7(input.additionalItems))) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io170 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io162(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) && _iu7(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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io171 = input => "string" === typeof input.$ref; const _io172 = input => "string" === typeof input.$recursiveRef; const _io173 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem)); const _io174 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem)); const _io175 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io176(input.discriminator)); const _io176 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io23(input.mapping)); const _io177 = input => (null === input["default"] || undefined === input["default"]) && "null" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io178 = input => null !== input.type && undefined === input.type && true && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io179 = input => Object.keys(input).every(key => {
240
+ }); const _io163 = input => Array.isArray(input.type) && input.type.every(elem => "string" === elem || "number" === elem || "boolean" === elem || "object" === elem || "null" === elem || "integer" === elem || "array" === elem) && (null === input["default"] || undefined === input["default"] || Array.isArray(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"])) && ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && (null !== input.items && (undefined === input.items || (Array.isArray(input.items) && input.items.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem)) || "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 && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && (undefined === input.prefixItems || 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.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io162(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)) && (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) && _iu7(elem))) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io176(input.discriminator)) && (Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem))) && (Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem))) && "string" === typeof input.$ref; const _io164 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable); const _io165 = 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)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "boolean" === input.type; const _io166 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(input.maximum)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum && __typia_transform__isTypeInt64._isTypeInt64(input.exclusiveMinimum) || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum && __typia_transform__isTypeInt64._isTypeInt64(input.exclusiveMaximum) || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "integer" === input.type; const _io167 = 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) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "number" === input.type; const _io168 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === input.type; const _io169 = 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) && _iu7(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu7(input.items)))) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(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) && _iu7(input.additionalItems))) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "array" === input.type; const _io170 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io162(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) && _iu7(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "object" === input.type; const _io171 = input => "string" === typeof input.$ref; const _io172 = input => "string" === typeof input.$recursiveRef; const _io173 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem)); const _io174 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem)); const _io175 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io176(input.discriminator)); const _io176 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io23(input.mapping)); const _io177 = input => (null === input["default"] || undefined === input["default"]) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "null" === input.type; const _io178 = input => null !== input.type && undefined === input.type && true && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io179 = input => Object.keys(input).every(key => {
241
241
  const value = input[key];
242
242
  if (undefined === value)
243
243
  return true;
244
244
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _io180(value);
245
- }); const _io180 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu8(elem))) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io155(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input["x-additionalOperations"] || "object" === typeof input["x-additionalOperations"] && null !== input["x-additionalOperations"] && false === Array.isArray(input["x-additionalOperations"]) && _io187(input["x-additionalOperations"])) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io188(input["delete"])) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io188(input.head)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io188(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io188(input.post)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io188(input.put)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io188(input.patch)) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io188(input.options)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io188(input.trace)); const _io181 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu7(input.schema)) && (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) && _io182(input.examples)); const _io182 = input => Object.keys(input).every(key => {
245
+ }); const _io180 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu8(elem))) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io155(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input["x-additionalOperations"] || "object" === typeof input["x-additionalOperations"] && null !== input["x-additionalOperations"] && false === Array.isArray(input["x-additionalOperations"]) && _io187(input["x-additionalOperations"])) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io188(input["delete"])) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io188(input.head)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io188(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io188(input.post)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io188(input.put)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io188(input.patch)) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io188(input.options)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io188(input.trace)); const _io181 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "path" === input["in"] || "header" === input["in"] || "cookie" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu7(input.schema)) && (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) && _io182(input.examples)); const _io182 = input => Object.keys(input).every(key => {
246
246
  const value = input[key];
247
247
  if (undefined === value)
248
248
  return true;
@@ -312,12 +312,12 @@ class NestiaMigrateApplication {
312
312
  if (undefined === value)
313
313
  return true;
314
314
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu9(value);
315
- }); const _io225 = input => Array.isArray(input.type) && input.type.every(elem => "string" === elem || "number" === elem || "boolean" === elem || "object" === elem || "null" === elem || "integer" === elem || "array" === elem) && (null === input["default"] || undefined === input["default"] || Array.isArray(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"])) && ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && (null !== input.items && (undefined === input.items || (Array.isArray(input.items) && input.items.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu9(input.items)))) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem))) && (null !== input.additionalItems && (undefined === input.additionalItems || "boolean" === typeof input.additionalItems || "object" === typeof input.additionalItems && null !== input.additionalItems && false === Array.isArray(input.additionalItems) && _iu9(input.additionalItems))) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io224(input.properties)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu9(input.additionalProperties))) && (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) && _iu9(elem))) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io238(input.discriminator)) && (Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem))) && (Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem))) && "string" === typeof input.$ref; const _io226 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable); const _io227 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io228 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(input.maximum)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum && __typia_transform__isTypeInt64._isTypeInt64(input.exclusiveMinimum) || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum && __typia_transform__isTypeInt64._isTypeInt64(input.exclusiveMaximum) || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io229 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io230 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io231 = 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) && _iu9(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu9(input.items)))) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(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) && _iu9(input.additionalItems))) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io232 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io224(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) && _iu9(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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io233 = input => "string" === typeof input.$ref; const _io234 = input => "string" === typeof input.$recursiveRef; const _io235 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem)); const _io236 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem)); const _io237 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io238(input.discriminator)); const _io238 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io23(input.mapping)); const _io239 = input => (null === input["default"] || undefined === input["default"]) && "null" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io240 = input => null !== input.type && undefined === input.type && true && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io241 = input => Object.keys(input).every(key => {
315
+ }); const _io225 = input => Array.isArray(input.type) && input.type.every(elem => "string" === elem || "number" === elem || "boolean" === elem || "object" === elem || "null" === elem || "integer" === elem || "array" === elem) && (null === input["default"] || undefined === input["default"] || Array.isArray(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"])) && ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && (null !== input.items && (undefined === input.items || (Array.isArray(input.items) && input.items.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu9(input.items)))) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem))) && (null !== input.additionalItems && (undefined === input.additionalItems || "boolean" === typeof input.additionalItems || "object" === typeof input.additionalItems && null !== input.additionalItems && false === Array.isArray(input.additionalItems) && _iu9(input.additionalItems))) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io224(input.properties)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu9(input.additionalProperties))) && (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) && _iu9(elem))) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io238(input.discriminator)) && (Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem))) && (Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem))) && "string" === typeof input.$ref; const _io226 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable); const _io227 = 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)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "boolean" === input.type; const _io228 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(input.maximum)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum && __typia_transform__isTypeInt64._isTypeInt64(input.exclusiveMinimum) || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum && __typia_transform__isTypeInt64._isTypeInt64(input.exclusiveMaximum) || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "integer" === input.type; const _io229 = 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) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "number" === input.type; const _io230 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === input.type; const _io231 = 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) && _iu9(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu9(input.items)))) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(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) && _iu9(input.additionalItems))) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "array" === input.type; const _io232 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io224(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) && _iu9(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "object" === input.type; const _io233 = input => "string" === typeof input.$ref; const _io234 = input => "string" === typeof input.$recursiveRef; const _io235 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem)); const _io236 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem)); const _io237 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io238(input.discriminator)); const _io238 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io23(input.mapping)); const _io239 = input => (null === input["default"] || undefined === input["default"]) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "null" === input.type; const _io240 = input => null !== input.type && undefined === input.type && true && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io241 = input => Object.keys(input).every(key => {
316
316
  const value = input[key];
317
317
  if (undefined === value)
318
318
  return true;
319
319
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _io242(value);
320
- }); const _io242 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu10(elem))) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io217(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.additionalOperations || "object" === typeof input.additionalOperations && null !== input.additionalOperations && false === Array.isArray(input.additionalOperations) && _io249(input.additionalOperations)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io250(input["delete"])) && (undefined === input.query || "object" === typeof input.query && null !== input.query && false === Array.isArray(input.query) && _io250(input.query)) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io250(input.head)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io250(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io250(input.post)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io250(input.put)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io250(input.patch)) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io250(input.options)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io250(input.trace)); const _io243 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || "querystring" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu9(input.schema)) && (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) && _io244(input.examples)); const _io244 = input => Object.keys(input).every(key => {
320
+ }); const _io242 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu10(elem))) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io217(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.additionalOperations || "object" === typeof input.additionalOperations && null !== input.additionalOperations && false === Array.isArray(input.additionalOperations) && _io249(input.additionalOperations)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io250(input["delete"])) && (undefined === input.query || "object" === typeof input.query && null !== input.query && false === Array.isArray(input.query) && _io250(input.query)) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io250(input.head)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io250(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io250(input.post)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io250(input.put)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io250(input.patch)) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io250(input.options)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io250(input.trace)); const _io243 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "path" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "querystring" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu9(input.schema)) && (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) && _io244(input.examples)); const _io244 = input => Object.keys(input).every(key => {
321
321
  const value = input[key];
322
322
  if (undefined === value)
323
323
  return true;
@@ -2476,7 +2476,7 @@ class NestiaMigrateApplication {
2476
2476
  path: _path + ".name",
2477
2477
  expected: "(string | undefined)",
2478
2478
  value: input.name
2479
- }, _errorFactory)) && ("query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || "querystring" === input["in"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
2479
+ }, _errorFactory)) && ("query" === input["in"] || "path" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "querystring" === input["in"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
2480
2480
  method: "typia.assert",
2481
2481
  path: _path + "[\"in\"]",
2482
2482
  expected: "(\"cookie\" | \"header\" | \"path\" | \"query\" | \"querystring\")",
@@ -3028,11 +3028,6 @@ class NestiaMigrateApplication {
3028
3028
  path: _path + "[\"enum\"]",
3029
3029
  expected: "(Array<boolean | null> | undefined)",
3030
3030
  value: input["enum"]
3031
- }, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3032
- method: "typia.assert",
3033
- path: _path + ".type",
3034
- expected: "\"boolean\"",
3035
- value: input.type
3036
3031
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3037
3032
  method: "typia.assert",
3038
3033
  path: _path + ".title",
@@ -3058,6 +3053,11 @@ class NestiaMigrateApplication {
3058
3053
  path: _path + ".writeOnly",
3059
3054
  expected: "(boolean | undefined)",
3060
3055
  value: input.writeOnly
3056
+ }, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3057
+ method: "typia.assert",
3058
+ path: _path + ".type",
3059
+ expected: "\"boolean\"",
3060
+ value: input.type
3061
3061
  }, _errorFactory)); const _ao56 = (input, _path, _exceptionable = true) => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (__typia_transform__isTypeInt64._isTypeInt64(input["default"]) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3062
3062
  method: "typia.assert",
3063
3063
  path: _path + "[\"default\"]",
@@ -3128,11 +3128,6 @@ class NestiaMigrateApplication {
3128
3128
  path: _path + ".multipleOf",
3129
3129
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
3130
3130
  value: input.multipleOf
3131
- }, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3132
- method: "typia.assert",
3133
- path: _path + ".type",
3134
- expected: "\"integer\"",
3135
- value: input.type
3136
3131
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3137
3132
  method: "typia.assert",
3138
3133
  path: _path + ".title",
@@ -3158,6 +3153,11 @@ class NestiaMigrateApplication {
3158
3153
  path: _path + ".writeOnly",
3159
3154
  expected: "(boolean | undefined)",
3160
3155
  value: input.writeOnly
3156
+ }, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3157
+ method: "typia.assert",
3158
+ path: _path + ".type",
3159
+ expected: "\"integer\"",
3160
+ value: input.type
3161
3161
  }, _errorFactory)); const _ao57 = (input, _path, _exceptionable = true) => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3162
3162
  method: "typia.assert",
3163
3163
  path: _path + "[\"default\"]",
@@ -3208,11 +3208,6 @@ class NestiaMigrateApplication {
3208
3208
  path: _path + ".multipleOf",
3209
3209
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
3210
3210
  value: input.multipleOf
3211
- }, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3212
- method: "typia.assert",
3213
- path: _path + ".type",
3214
- expected: "\"number\"",
3215
- value: input.type
3216
3211
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3217
3212
  method: "typia.assert",
3218
3213
  path: _path + ".title",
@@ -3238,6 +3233,11 @@ class NestiaMigrateApplication {
3238
3233
  path: _path + ".writeOnly",
3239
3234
  expected: "(boolean | undefined)",
3240
3235
  value: input.writeOnly
3236
+ }, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3237
+ method: "typia.assert",
3238
+ path: _path + ".type",
3239
+ expected: "\"number\"",
3240
+ value: input.type
3241
3241
  }, _errorFactory)); const _ao58 = (input, _path, _exceptionable = true) => (null === input["default"] || undefined === input["default"] || "string" === typeof input["default"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3242
3242
  method: "typia.assert",
3243
3243
  path: _path + "[\"default\"]",
@@ -3288,11 +3288,6 @@ class NestiaMigrateApplication {
3288
3288
  path: _path + ".maxLength",
3289
3289
  expected: "((number & Type<\"uint64\">) | undefined)",
3290
3290
  value: input.maxLength
3291
- }, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3292
- method: "typia.assert",
3293
- path: _path + ".type",
3294
- expected: "\"string\"",
3295
- value: input.type
3296
3291
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3297
3292
  method: "typia.assert",
3298
3293
  path: _path + ".title",
@@ -3318,6 +3313,11 @@ class NestiaMigrateApplication {
3318
3313
  path: _path + ".writeOnly",
3319
3314
  expected: "(boolean | undefined)",
3320
3315
  value: input.writeOnly
3316
+ }, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3317
+ method: "typia.assert",
3318
+ path: _path + ".type",
3319
+ expected: "\"string\"",
3320
+ value: input.type
3321
3321
  }, _errorFactory)); const _ao59 = (input, _path, _exceptionable = true) => (("object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3322
3322
  method: "typia.assert",
3323
3323
  path: _path + ".items",
@@ -3353,11 +3353,6 @@ class NestiaMigrateApplication {
3353
3353
  path: _path + ".maxItems",
3354
3354
  expected: "((number & Type<\"uint64\">) | undefined)",
3355
3355
  value: input.maxItems
3356
- }, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3357
- method: "typia.assert",
3358
- path: _path + ".type",
3359
- expected: "\"array\"",
3360
- value: input.type
3361
3356
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3362
3357
  method: "typia.assert",
3363
3358
  path: _path + ".title",
@@ -3383,6 +3378,11 @@ class NestiaMigrateApplication {
3383
3378
  path: _path + ".writeOnly",
3384
3379
  expected: "(boolean | undefined)",
3385
3380
  value: input.writeOnly
3381
+ }, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3382
+ method: "typia.assert",
3383
+ path: _path + ".type",
3384
+ expected: "\"array\"",
3385
+ value: input.type
3386
3386
  }, _errorFactory)); const _ao60 = (input, _path, _exceptionable = true) => (undefined === input.properties || ("object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3387
3387
  method: "typia.assert",
3388
3388
  path: _path + ".properties",
@@ -3433,11 +3433,6 @@ class NestiaMigrateApplication {
3433
3433
  path: _path + ".minProperties",
3434
3434
  expected: "(number | undefined)",
3435
3435
  value: input.minProperties
3436
- }, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3437
- method: "typia.assert",
3438
- path: _path + ".type",
3439
- expected: "\"object\"",
3440
- value: input.type
3441
3436
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3442
3437
  method: "typia.assert",
3443
3438
  path: _path + ".title",
@@ -3463,6 +3458,11 @@ class NestiaMigrateApplication {
3463
3458
  path: _path + ".writeOnly",
3464
3459
  expected: "(boolean | undefined)",
3465
3460
  value: input.writeOnly
3461
+ }, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3462
+ method: "typia.assert",
3463
+ path: _path + ".type",
3464
+ expected: "\"object\"",
3465
+ value: input.type
3466
3466
  }, _errorFactory)); const _ao61 = (input, _path, _exceptionable = true) => "string" === typeof input.$ref || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3467
3467
  method: "typia.assert",
3468
3468
  path: _path + ".$ref",
@@ -3563,11 +3563,6 @@ class NestiaMigrateApplication {
3563
3563
  path: _path + "[\"enum\"]",
3564
3564
  expected: "(Array<boolean | null> | undefined)",
3565
3565
  value: input["enum"]
3566
- }, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3567
- method: "typia.assert",
3568
- path: _path + ".type",
3569
- expected: "\"boolean\"",
3570
- value: input.type
3571
3566
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3572
3567
  method: "typia.assert",
3573
3568
  path: _path + ".title",
@@ -3593,6 +3588,11 @@ class NestiaMigrateApplication {
3593
3588
  path: _path + ".writeOnly",
3594
3589
  expected: "(boolean | undefined)",
3595
3590
  value: input.writeOnly
3591
+ }, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3592
+ method: "typia.assert",
3593
+ path: _path + ".type",
3594
+ expected: "\"boolean\"",
3595
+ value: input.type
3596
3596
  }, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3597
3597
  method: "typia.assert",
3598
3598
  path: _path + ".name",
@@ -3673,11 +3673,6 @@ class NestiaMigrateApplication {
3673
3673
  path: _path + ".multipleOf",
3674
3674
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
3675
3675
  value: input.multipleOf
3676
- }, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3677
- method: "typia.assert",
3678
- path: _path + ".type",
3679
- expected: "\"integer\"",
3680
- value: input.type
3681
3676
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3682
3677
  method: "typia.assert",
3683
3678
  path: _path + ".title",
@@ -3703,6 +3698,11 @@ class NestiaMigrateApplication {
3703
3698
  path: _path + ".writeOnly",
3704
3699
  expected: "(boolean | undefined)",
3705
3700
  value: input.writeOnly
3701
+ }, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3702
+ method: "typia.assert",
3703
+ path: _path + ".type",
3704
+ expected: "\"integer\"",
3705
+ value: input.type
3706
3706
  }, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3707
3707
  method: "typia.assert",
3708
3708
  path: _path + ".name",
@@ -3763,11 +3763,6 @@ class NestiaMigrateApplication {
3763
3763
  path: _path + ".multipleOf",
3764
3764
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
3765
3765
  value: input.multipleOf
3766
- }, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3767
- method: "typia.assert",
3768
- path: _path + ".type",
3769
- expected: "\"number\"",
3770
- value: input.type
3771
3766
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3772
3767
  method: "typia.assert",
3773
3768
  path: _path + ".title",
@@ -3793,6 +3788,11 @@ class NestiaMigrateApplication {
3793
3788
  path: _path + ".writeOnly",
3794
3789
  expected: "(boolean | undefined)",
3795
3790
  value: input.writeOnly
3791
+ }, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3792
+ method: "typia.assert",
3793
+ path: _path + ".type",
3794
+ expected: "\"number\"",
3795
+ value: input.type
3796
3796
  }, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3797
3797
  method: "typia.assert",
3798
3798
  path: _path + ".name",
@@ -3853,11 +3853,6 @@ class NestiaMigrateApplication {
3853
3853
  path: _path + ".maxLength",
3854
3854
  expected: "((number & Type<\"uint64\">) | undefined)",
3855
3855
  value: input.maxLength
3856
- }, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3857
- method: "typia.assert",
3858
- path: _path + ".type",
3859
- expected: "\"string\"",
3860
- value: input.type
3861
3856
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3862
3857
  method: "typia.assert",
3863
3858
  path: _path + ".title",
@@ -3883,6 +3878,11 @@ class NestiaMigrateApplication {
3883
3878
  path: _path + ".writeOnly",
3884
3879
  expected: "(boolean | undefined)",
3885
3880
  value: input.writeOnly
3881
+ }, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3882
+ method: "typia.assert",
3883
+ path: _path + ".type",
3884
+ expected: "\"string\"",
3885
+ value: input.type
3886
3886
  }, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3887
3887
  method: "typia.assert",
3888
3888
  path: _path + ".name",
@@ -3928,11 +3928,6 @@ class NestiaMigrateApplication {
3928
3928
  path: _path + ".maxItems",
3929
3929
  expected: "((number & Type<\"uint64\">) | undefined)",
3930
3930
  value: input.maxItems
3931
- }, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3932
- method: "typia.assert",
3933
- path: _path + ".type",
3934
- expected: "\"array\"",
3935
- value: input.type
3936
3931
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3937
3932
  method: "typia.assert",
3938
3933
  path: _path + ".title",
@@ -3958,6 +3953,11 @@ class NestiaMigrateApplication {
3958
3953
  path: _path + ".writeOnly",
3959
3954
  expected: "(boolean | undefined)",
3960
3955
  value: input.writeOnly
3956
+ }, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3957
+ method: "typia.assert",
3958
+ path: _path + ".type",
3959
+ expected: "\"array\"",
3960
+ value: input.type
3961
3961
  }, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3962
3962
  method: "typia.assert",
3963
3963
  path: _path + ".name",
@@ -4018,11 +4018,6 @@ class NestiaMigrateApplication {
4018
4018
  path: _path + ".minProperties",
4019
4019
  expected: "(number | undefined)",
4020
4020
  value: input.minProperties
4021
- }, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
4022
- method: "typia.assert",
4023
- path: _path + ".type",
4024
- expected: "\"object\"",
4025
- value: input.type
4026
4021
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
4027
4022
  method: "typia.assert",
4028
4023
  path: _path + ".title",
@@ -4048,6 +4043,11 @@ class NestiaMigrateApplication {
4048
4043
  path: _path + ".writeOnly",
4049
4044
  expected: "(boolean | undefined)",
4050
4045
  value: input.writeOnly
4046
+ }, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
4047
+ method: "typia.assert",
4048
+ path: _path + ".type",
4049
+ expected: "\"object\"",
4050
+ value: input.type
4051
4051
  }, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
4052
4052
  method: "typia.assert",
4053
4053
  path: _path + ".name",
@@ -5053,11 +5053,6 @@ class NestiaMigrateApplication {
5053
5053
  path: _path + "[\"enum\"]",
5054
5054
  expected: "(Array<boolean | null> | undefined)",
5055
5055
  value: input["enum"]
5056
- }, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5057
- method: "typia.assert",
5058
- path: _path + ".type",
5059
- expected: "\"boolean\"",
5060
- value: input.type
5061
5056
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5062
5057
  method: "typia.assert",
5063
5058
  path: _path + ".title",
@@ -5083,6 +5078,11 @@ class NestiaMigrateApplication {
5083
5078
  path: _path + ".writeOnly",
5084
5079
  expected: "(boolean | undefined)",
5085
5080
  value: input.writeOnly
5081
+ }, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5082
+ method: "typia.assert",
5083
+ path: _path + ".type",
5084
+ expected: "\"boolean\"",
5085
+ value: input.type
5086
5086
  }, _errorFactory)); const _ao107 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5087
5087
  method: "typia.assert",
5088
5088
  path: _path + ".nullable",
@@ -5158,11 +5158,6 @@ class NestiaMigrateApplication {
5158
5158
  path: _path + ".multipleOf",
5159
5159
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
5160
5160
  value: input.multipleOf
5161
- }, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5162
- method: "typia.assert",
5163
- path: _path + ".type",
5164
- expected: "\"integer\"",
5165
- value: input.type
5166
5161
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5167
5162
  method: "typia.assert",
5168
5163
  path: _path + ".title",
@@ -5188,6 +5183,11 @@ class NestiaMigrateApplication {
5188
5183
  path: _path + ".writeOnly",
5189
5184
  expected: "(boolean | undefined)",
5190
5185
  value: input.writeOnly
5186
+ }, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5187
+ method: "typia.assert",
5188
+ path: _path + ".type",
5189
+ expected: "\"integer\"",
5190
+ value: input.type
5191
5191
  }, _errorFactory)); const _ao108 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5192
5192
  method: "typia.assert",
5193
5193
  path: _path + ".nullable",
@@ -5243,11 +5243,6 @@ class NestiaMigrateApplication {
5243
5243
  path: _path + ".multipleOf",
5244
5244
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
5245
5245
  value: input.multipleOf
5246
- }, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5247
- method: "typia.assert",
5248
- path: _path + ".type",
5249
- expected: "\"number\"",
5250
- value: input.type
5251
5246
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5252
5247
  method: "typia.assert",
5253
5248
  path: _path + ".title",
@@ -5273,6 +5268,11 @@ class NestiaMigrateApplication {
5273
5268
  path: _path + ".writeOnly",
5274
5269
  expected: "(boolean | undefined)",
5275
5270
  value: input.writeOnly
5271
+ }, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5272
+ method: "typia.assert",
5273
+ path: _path + ".type",
5274
+ expected: "\"number\"",
5275
+ value: input.type
5276
5276
  }, _errorFactory)); const _ao109 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5277
5277
  method: "typia.assert",
5278
5278
  path: _path + ".nullable",
@@ -5328,11 +5328,6 @@ class NestiaMigrateApplication {
5328
5328
  path: _path + ".maxLength",
5329
5329
  expected: "((number & Type<\"uint64\">) | undefined)",
5330
5330
  value: input.maxLength
5331
- }, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5332
- method: "typia.assert",
5333
- path: _path + ".type",
5334
- expected: "\"string\"",
5335
- value: input.type
5336
5331
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5337
5332
  method: "typia.assert",
5338
5333
  path: _path + ".title",
@@ -5358,6 +5353,11 @@ class NestiaMigrateApplication {
5358
5353
  path: _path + ".writeOnly",
5359
5354
  expected: "(boolean | undefined)",
5360
5355
  value: input.writeOnly
5356
+ }, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5357
+ method: "typia.assert",
5358
+ path: _path + ".type",
5359
+ expected: "\"string\"",
5360
+ value: input.type
5361
5361
  }, _errorFactory)); const _ao110 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5362
5362
  method: "typia.assert",
5363
5363
  path: _path + ".nullable",
@@ -5398,11 +5398,6 @@ class NestiaMigrateApplication {
5398
5398
  path: _path + ".maxItems",
5399
5399
  expected: "((number & Type<\"uint64\">) | undefined)",
5400
5400
  value: input.maxItems
5401
- }, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5402
- method: "typia.assert",
5403
- path: _path + ".type",
5404
- expected: "\"array\"",
5405
- value: input.type
5406
5401
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5407
5402
  method: "typia.assert",
5408
5403
  path: _path + ".title",
@@ -5428,6 +5423,11 @@ class NestiaMigrateApplication {
5428
5423
  path: _path + ".writeOnly",
5429
5424
  expected: "(boolean | undefined)",
5430
5425
  value: input.writeOnly
5426
+ }, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5427
+ method: "typia.assert",
5428
+ path: _path + ".type",
5429
+ expected: "\"array\"",
5430
+ value: input.type
5431
5431
  }, _errorFactory)); const _ao111 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5432
5432
  method: "typia.assert",
5433
5433
  path: _path + ".nullable",
@@ -5483,11 +5483,6 @@ class NestiaMigrateApplication {
5483
5483
  path: _path + ".minProperties",
5484
5484
  expected: "(number | undefined)",
5485
5485
  value: input.minProperties
5486
- }, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5487
- method: "typia.assert",
5488
- path: _path + ".type",
5489
- expected: "\"object\"",
5490
- value: input.type
5491
5486
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5492
5487
  method: "typia.assert",
5493
5488
  path: _path + ".title",
@@ -5513,6 +5508,11 @@ class NestiaMigrateApplication {
5513
5508
  path: _path + ".writeOnly",
5514
5509
  expected: "(boolean | undefined)",
5515
5510
  value: input.writeOnly
5511
+ }, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5512
+ method: "typia.assert",
5513
+ path: _path + ".type",
5514
+ expected: "\"object\"",
5515
+ value: input.type
5516
5516
  }, _errorFactory)); const _ao112 = (input, _path, _exceptionable = true) => "string" === typeof input.$ref || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5517
5517
  method: "typia.assert",
5518
5518
  path: _path + ".$ref",
@@ -5608,11 +5608,6 @@ class NestiaMigrateApplication {
5608
5608
  path: _path + "[\"default\"]",
5609
5609
  expected: "(null | undefined)",
5610
5610
  value: input["default"]
5611
- }, _errorFactory)) && ("null" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5612
- method: "typia.assert",
5613
- path: _path + ".type",
5614
- expected: "\"null\"",
5615
- value: input.type
5616
5611
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5617
5612
  method: "typia.assert",
5618
5613
  path: _path + ".title",
@@ -5638,17 +5633,12 @@ class NestiaMigrateApplication {
5638
5633
  path: _path + ".writeOnly",
5639
5634
  expected: "(boolean | undefined)",
5640
5635
  value: input.writeOnly
5641
- }, _errorFactory)); const _ao118 = (input, _path, _exceptionable = true) => true && ((null !== input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5642
- method: "typia.assert",
5643
- path: _path + ".type",
5644
- expected: "undefined",
5645
- value: input.type
5646
- }, _errorFactory)) && (undefined === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5636
+ }, _errorFactory)) && ("null" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5647
5637
  method: "typia.assert",
5648
5638
  path: _path + ".type",
5649
- expected: "undefined",
5639
+ expected: "\"null\"",
5650
5640
  value: input.type
5651
- }, _errorFactory))) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5641
+ }, _errorFactory)); const _ao118 = (input, _path, _exceptionable = true) => true && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5652
5642
  method: "typia.assert",
5653
5643
  path: _path + ".title",
5654
5644
  expected: "(string | undefined)",
@@ -5673,7 +5663,17 @@ class NestiaMigrateApplication {
5673
5663
  path: _path + ".writeOnly",
5674
5664
  expected: "(boolean | undefined)",
5675
5665
  value: input.writeOnly
5676
- }, _errorFactory)); const _ao119 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
5666
+ }, _errorFactory)) && ((null !== input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5667
+ method: "typia.assert",
5668
+ path: _path + ".type",
5669
+ expected: "undefined",
5670
+ value: input.type
5671
+ }, _errorFactory)) && (undefined === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5672
+ method: "typia.assert",
5673
+ path: _path + ".type",
5674
+ expected: "undefined",
5675
+ value: input.type
5676
+ }, _errorFactory))); const _ao119 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
5677
5677
  const value = input[key];
5678
5678
  if (undefined === value)
5679
5679
  return true;
@@ -5858,7 +5858,7 @@ class NestiaMigrateApplication {
5858
5858
  path: _path + ".name",
5859
5859
  expected: "(string | undefined)",
5860
5860
  value: input.name
5861
- }, _errorFactory)) && ("query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5861
+ }, _errorFactory)) && ("query" === input["in"] || "path" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5862
5862
  method: "typia.assert",
5863
5863
  path: _path + "[\"in\"]",
5864
5864
  expected: "(\"cookie\" | \"header\" | \"path\" | \"query\")",
@@ -7208,11 +7208,6 @@ class NestiaMigrateApplication {
7208
7208
  path: _path + "[\"enum\"]",
7209
7209
  expected: "(Array<boolean | null> | undefined)",
7210
7210
  value: input["enum"]
7211
- }, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7212
- method: "typia.assert",
7213
- path: _path + ".type",
7214
- expected: "\"boolean\"",
7215
- value: input.type
7216
7211
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7217
7212
  method: "typia.assert",
7218
7213
  path: _path + ".title",
@@ -7238,6 +7233,11 @@ class NestiaMigrateApplication {
7238
7233
  path: _path + ".writeOnly",
7239
7234
  expected: "(boolean | undefined)",
7240
7235
  value: input.writeOnly
7236
+ }, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7237
+ method: "typia.assert",
7238
+ path: _path + ".type",
7239
+ expected: "\"boolean\"",
7240
+ value: input.type
7241
7241
  }, _errorFactory)); const _ao166 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7242
7242
  method: "typia.assert",
7243
7243
  path: _path + ".nullable",
@@ -7323,11 +7323,6 @@ class NestiaMigrateApplication {
7323
7323
  path: _path + ".multipleOf",
7324
7324
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
7325
7325
  value: input.multipleOf
7326
- }, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7327
- method: "typia.assert",
7328
- path: _path + ".type",
7329
- expected: "\"integer\"",
7330
- value: input.type
7331
7326
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7332
7327
  method: "typia.assert",
7333
7328
  path: _path + ".title",
@@ -7353,6 +7348,11 @@ class NestiaMigrateApplication {
7353
7348
  path: _path + ".writeOnly",
7354
7349
  expected: "(boolean | undefined)",
7355
7350
  value: input.writeOnly
7351
+ }, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7352
+ method: "typia.assert",
7353
+ path: _path + ".type",
7354
+ expected: "\"integer\"",
7355
+ value: input.type
7356
7356
  }, _errorFactory)); const _ao167 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7357
7357
  method: "typia.assert",
7358
7358
  path: _path + ".nullable",
@@ -7408,11 +7408,6 @@ class NestiaMigrateApplication {
7408
7408
  path: _path + ".multipleOf",
7409
7409
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
7410
7410
  value: input.multipleOf
7411
- }, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7412
- method: "typia.assert",
7413
- path: _path + ".type",
7414
- expected: "\"number\"",
7415
- value: input.type
7416
7411
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7417
7412
  method: "typia.assert",
7418
7413
  path: _path + ".title",
@@ -7438,6 +7433,11 @@ class NestiaMigrateApplication {
7438
7433
  path: _path + ".writeOnly",
7439
7434
  expected: "(boolean | undefined)",
7440
7435
  value: input.writeOnly
7436
+ }, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7437
+ method: "typia.assert",
7438
+ path: _path + ".type",
7439
+ expected: "\"number\"",
7440
+ value: input.type
7441
7441
  }, _errorFactory)); const _ao168 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7442
7442
  method: "typia.assert",
7443
7443
  path: _path + ".nullable",
@@ -7498,11 +7498,6 @@ class NestiaMigrateApplication {
7498
7498
  path: _path + ".maxLength",
7499
7499
  expected: "((number & Type<\"uint64\">) | undefined)",
7500
7500
  value: input.maxLength
7501
- }, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7502
- method: "typia.assert",
7503
- path: _path + ".type",
7504
- expected: "\"string\"",
7505
- value: input.type
7506
7501
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7507
7502
  method: "typia.assert",
7508
7503
  path: _path + ".title",
@@ -7528,6 +7523,11 @@ class NestiaMigrateApplication {
7528
7523
  path: _path + ".writeOnly",
7529
7524
  expected: "(boolean | undefined)",
7530
7525
  value: input.writeOnly
7526
+ }, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7527
+ method: "typia.assert",
7528
+ path: _path + ".type",
7529
+ expected: "\"string\"",
7530
+ value: input.type
7531
7531
  }, _errorFactory)); const _ao169 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7532
7532
  method: "typia.assert",
7533
7533
  path: _path + ".nullable",
@@ -7618,11 +7618,6 @@ class NestiaMigrateApplication {
7618
7618
  path: _path + ".maxItems",
7619
7619
  expected: "((number & Type<\"uint64\">) | undefined)",
7620
7620
  value: input.maxItems
7621
- }, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7622
- method: "typia.assert",
7623
- path: _path + ".type",
7624
- expected: "\"array\"",
7625
- value: input.type
7626
7621
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7627
7622
  method: "typia.assert",
7628
7623
  path: _path + ".title",
@@ -7648,6 +7643,11 @@ class NestiaMigrateApplication {
7648
7643
  path: _path + ".writeOnly",
7649
7644
  expected: "(boolean | undefined)",
7650
7645
  value: input.writeOnly
7646
+ }, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7647
+ method: "typia.assert",
7648
+ path: _path + ".type",
7649
+ expected: "\"array\"",
7650
+ value: input.type
7651
7651
  }, _errorFactory)); const _ao170 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7652
7652
  method: "typia.assert",
7653
7653
  path: _path + ".nullable",
@@ -7703,11 +7703,6 @@ class NestiaMigrateApplication {
7703
7703
  path: _path + ".minProperties",
7704
7704
  expected: "(number | undefined)",
7705
7705
  value: input.minProperties
7706
- }, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7707
- method: "typia.assert",
7708
- path: _path + ".type",
7709
- expected: "\"object\"",
7710
- value: input.type
7711
7706
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7712
7707
  method: "typia.assert",
7713
7708
  path: _path + ".title",
@@ -7733,6 +7728,11 @@ class NestiaMigrateApplication {
7733
7728
  path: _path + ".writeOnly",
7734
7729
  expected: "(boolean | undefined)",
7735
7730
  value: input.writeOnly
7731
+ }, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7732
+ method: "typia.assert",
7733
+ path: _path + ".type",
7734
+ expected: "\"object\"",
7735
+ value: input.type
7736
7736
  }, _errorFactory)); const _ao171 = (input, _path, _exceptionable = true) => "string" === typeof input.$ref || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7737
7737
  method: "typia.assert",
7738
7738
  path: _path + ".$ref",
@@ -7833,11 +7833,6 @@ class NestiaMigrateApplication {
7833
7833
  path: _path + "[\"default\"]",
7834
7834
  expected: "(null | undefined)",
7835
7835
  value: input["default"]
7836
- }, _errorFactory)) && ("null" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7837
- method: "typia.assert",
7838
- path: _path + ".type",
7839
- expected: "\"null\"",
7840
- value: input.type
7841
7836
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7842
7837
  method: "typia.assert",
7843
7838
  path: _path + ".title",
@@ -7863,6 +7858,11 @@ class NestiaMigrateApplication {
7863
7858
  path: _path + ".writeOnly",
7864
7859
  expected: "(boolean | undefined)",
7865
7860
  value: input.writeOnly
7861
+ }, _errorFactory)) && ("null" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7862
+ method: "typia.assert",
7863
+ path: _path + ".type",
7864
+ expected: "\"null\"",
7865
+ value: input.type
7866
7866
  }, _errorFactory)); const _ao178 = (input, _path, _exceptionable = true) => (null !== input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
7867
7867
  method: "typia.assert",
7868
7868
  path: _path + ".type",
@@ -8058,7 +8058,7 @@ class NestiaMigrateApplication {
8058
8058
  path: _path + ".name",
8059
8059
  expected: "(string | undefined)",
8060
8060
  value: input.name
8061
- }, _errorFactory)) && ("query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8061
+ }, _errorFactory)) && ("query" === input["in"] || "path" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8062
8062
  method: "typia.assert",
8063
8063
  path: _path + "[\"in\"]",
8064
8064
  expected: "(\"cookie\" | \"header\" | \"path\" | \"query\")",
@@ -9453,11 +9453,6 @@ class NestiaMigrateApplication {
9453
9453
  path: _path + "[\"enum\"]",
9454
9454
  expected: "(Array<boolean | null> | undefined)",
9455
9455
  value: input["enum"]
9456
- }, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9457
- method: "typia.assert",
9458
- path: _path + ".type",
9459
- expected: "\"boolean\"",
9460
- value: input.type
9461
9456
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9462
9457
  method: "typia.assert",
9463
9458
  path: _path + ".title",
@@ -9483,6 +9478,11 @@ class NestiaMigrateApplication {
9483
9478
  path: _path + ".writeOnly",
9484
9479
  expected: "(boolean | undefined)",
9485
9480
  value: input.writeOnly
9481
+ }, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9482
+ method: "typia.assert",
9483
+ path: _path + ".type",
9484
+ expected: "\"boolean\"",
9485
+ value: input.type
9486
9486
  }, _errorFactory)); const _ao228 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9487
9487
  method: "typia.assert",
9488
9488
  path: _path + ".nullable",
@@ -9568,11 +9568,6 @@ class NestiaMigrateApplication {
9568
9568
  path: _path + ".multipleOf",
9569
9569
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
9570
9570
  value: input.multipleOf
9571
- }, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9572
- method: "typia.assert",
9573
- path: _path + ".type",
9574
- expected: "\"integer\"",
9575
- value: input.type
9576
9571
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9577
9572
  method: "typia.assert",
9578
9573
  path: _path + ".title",
@@ -9598,6 +9593,11 @@ class NestiaMigrateApplication {
9598
9593
  path: _path + ".writeOnly",
9599
9594
  expected: "(boolean | undefined)",
9600
9595
  value: input.writeOnly
9596
+ }, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9597
+ method: "typia.assert",
9598
+ path: _path + ".type",
9599
+ expected: "\"integer\"",
9600
+ value: input.type
9601
9601
  }, _errorFactory)); const _ao229 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9602
9602
  method: "typia.assert",
9603
9603
  path: _path + ".nullable",
@@ -9653,11 +9653,6 @@ class NestiaMigrateApplication {
9653
9653
  path: _path + ".multipleOf",
9654
9654
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
9655
9655
  value: input.multipleOf
9656
- }, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9657
- method: "typia.assert",
9658
- path: _path + ".type",
9659
- expected: "\"number\"",
9660
- value: input.type
9661
9656
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9662
9657
  method: "typia.assert",
9663
9658
  path: _path + ".title",
@@ -9683,6 +9678,11 @@ class NestiaMigrateApplication {
9683
9678
  path: _path + ".writeOnly",
9684
9679
  expected: "(boolean | undefined)",
9685
9680
  value: input.writeOnly
9681
+ }, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9682
+ method: "typia.assert",
9683
+ path: _path + ".type",
9684
+ expected: "\"number\"",
9685
+ value: input.type
9686
9686
  }, _errorFactory)); const _ao230 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9687
9687
  method: "typia.assert",
9688
9688
  path: _path + ".nullable",
@@ -9743,11 +9743,6 @@ class NestiaMigrateApplication {
9743
9743
  path: _path + ".maxLength",
9744
9744
  expected: "((number & Type<\"uint64\">) | undefined)",
9745
9745
  value: input.maxLength
9746
- }, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9747
- method: "typia.assert",
9748
- path: _path + ".type",
9749
- expected: "\"string\"",
9750
- value: input.type
9751
9746
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9752
9747
  method: "typia.assert",
9753
9748
  path: _path + ".title",
@@ -9773,6 +9768,11 @@ class NestiaMigrateApplication {
9773
9768
  path: _path + ".writeOnly",
9774
9769
  expected: "(boolean | undefined)",
9775
9770
  value: input.writeOnly
9771
+ }, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9772
+ method: "typia.assert",
9773
+ path: _path + ".type",
9774
+ expected: "\"string\"",
9775
+ value: input.type
9776
9776
  }, _errorFactory)); const _ao231 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9777
9777
  method: "typia.assert",
9778
9778
  path: _path + ".nullable",
@@ -9863,11 +9863,6 @@ class NestiaMigrateApplication {
9863
9863
  path: _path + ".maxItems",
9864
9864
  expected: "((number & Type<\"uint64\">) | undefined)",
9865
9865
  value: input.maxItems
9866
- }, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9867
- method: "typia.assert",
9868
- path: _path + ".type",
9869
- expected: "\"array\"",
9870
- value: input.type
9871
9866
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9872
9867
  method: "typia.assert",
9873
9868
  path: _path + ".title",
@@ -9893,6 +9888,11 @@ class NestiaMigrateApplication {
9893
9888
  path: _path + ".writeOnly",
9894
9889
  expected: "(boolean | undefined)",
9895
9890
  value: input.writeOnly
9891
+ }, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9892
+ method: "typia.assert",
9893
+ path: _path + ".type",
9894
+ expected: "\"array\"",
9895
+ value: input.type
9896
9896
  }, _errorFactory)); const _ao232 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9897
9897
  method: "typia.assert",
9898
9898
  path: _path + ".nullable",
@@ -9948,11 +9948,6 @@ class NestiaMigrateApplication {
9948
9948
  path: _path + ".minProperties",
9949
9949
  expected: "(number | undefined)",
9950
9950
  value: input.minProperties
9951
- }, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9952
- method: "typia.assert",
9953
- path: _path + ".type",
9954
- expected: "\"object\"",
9955
- value: input.type
9956
9951
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9957
9952
  method: "typia.assert",
9958
9953
  path: _path + ".title",
@@ -9978,6 +9973,11 @@ class NestiaMigrateApplication {
9978
9973
  path: _path + ".writeOnly",
9979
9974
  expected: "(boolean | undefined)",
9980
9975
  value: input.writeOnly
9976
+ }, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9977
+ method: "typia.assert",
9978
+ path: _path + ".type",
9979
+ expected: "\"object\"",
9980
+ value: input.type
9981
9981
  }, _errorFactory)); const _ao233 = (input, _path, _exceptionable = true) => "string" === typeof input.$ref || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9982
9982
  method: "typia.assert",
9983
9983
  path: _path + ".$ref",
@@ -10078,11 +10078,6 @@ class NestiaMigrateApplication {
10078
10078
  path: _path + "[\"default\"]",
10079
10079
  expected: "(null | undefined)",
10080
10080
  value: input["default"]
10081
- }, _errorFactory)) && ("null" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10082
- method: "typia.assert",
10083
- path: _path + ".type",
10084
- expected: "\"null\"",
10085
- value: input.type
10086
10081
  }, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10087
10082
  method: "typia.assert",
10088
10083
  path: _path + ".title",
@@ -10108,6 +10103,11 @@ class NestiaMigrateApplication {
10108
10103
  path: _path + ".writeOnly",
10109
10104
  expected: "(boolean | undefined)",
10110
10105
  value: input.writeOnly
10106
+ }, _errorFactory)) && ("null" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10107
+ method: "typia.assert",
10108
+ path: _path + ".type",
10109
+ expected: "\"null\"",
10110
+ value: input.type
10111
10111
  }, _errorFactory)); const _ao240 = (input, _path, _exceptionable = true) => (null !== input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10112
10112
  method: "typia.assert",
10113
10113
  path: _path + ".type",
@@ -10313,7 +10313,7 @@ class NestiaMigrateApplication {
10313
10313
  path: _path + ".name",
10314
10314
  expected: "(string | undefined)",
10315
10315
  value: input.name
10316
- }, _errorFactory)) && ("query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || "querystring" === input["in"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10316
+ }, _errorFactory)) && ("query" === input["in"] || "path" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "querystring" === input["in"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10317
10317
  method: "typia.assert",
10318
10318
  path: _path + "[\"in\"]",
10319
10319
  expected: "(\"cookie\" | \"header\" | \"path\" | \"query\" | \"querystring\")",
@@ -11605,7 +11605,7 @@ class NestiaMigrateApplication {
11605
11605
  if (undefined === value)
11606
11606
  return true;
11607
11607
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _io38(value);
11608
- }); const _io38 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _io39(elem))) && (undefined === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && false === Array.isArray(input.requestBody) && _io42(input.requestBody)) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io45(input.responses)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io1(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) && _io48(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input["x-samchon-human"] || "boolean" === typeof input["x-samchon-human"]) && (undefined === input["x-samchon-accessor"] || Array.isArray(input["x-samchon-accessor"]) && input["x-samchon-accessor"].every(elem => "string" === typeof elem)) && (undefined === input["x-samchon-controller"] || "string" === typeof input["x-samchon-controller"]); const _io39 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || "querystring" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu0(input.schema)) && (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) && _io40(input.examples)); const _io40 = input => Object.keys(input).every(key => {
11608
+ }); const _io38 = input => (undefined === input.operationId || "string" === typeof input.operationId) && (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _io39(elem))) && (undefined === input.requestBody || "object" === typeof input.requestBody && null !== input.requestBody && false === Array.isArray(input.requestBody) && _io42(input.requestBody)) && (undefined === input.responses || "object" === typeof input.responses && null !== input.responses && false === Array.isArray(input.responses) && _io45(input.responses)) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io1(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) && _io48(elem))) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input["x-samchon-human"] || "boolean" === typeof input["x-samchon-human"]) && (undefined === input["x-samchon-accessor"] || Array.isArray(input["x-samchon-accessor"]) && input["x-samchon-accessor"].every(elem => "string" === typeof elem)) && (undefined === input["x-samchon-controller"] || "string" === typeof input["x-samchon-controller"]); const _io39 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "path" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "querystring" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu0(input.schema)) && (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) && _io40(input.examples)); const _io40 = input => Object.keys(input).every(key => {
11609
11609
  const value = input[key];
11610
11610
  if (undefined === value)
11611
11611
  return true;
@@ -11637,12 +11637,12 @@ class NestiaMigrateApplication {
11637
11637
  if (undefined === value)
11638
11638
  return true;
11639
11639
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu2(value);
11640
- }); const _io55 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io56 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(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) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io57 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io58 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io59 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu2(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io60 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io54(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) && _iu2(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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io61 = input => "string" === typeof input.$ref; const _io62 = input => Array.isArray(input["x-anyOf"]) && input["x-anyOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem)); const _io63 = input => Array.isArray(input["x-oneOf"]) && input["x-oneOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem)); const _io64 = input => "null" === input.type && (null === input["default"] || undefined === input["default"]); const _io65 = input => null !== input.type && undefined === input.type; const _io66 = input => Object.keys(input).every(key => {
11640
+ }); const _io55 = 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)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "boolean" === input.type; const _io56 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(input.maximum)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "integer" === input.type; const _io57 = 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) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "number" === input.type; const _io58 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === input.type; const _io59 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu2(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "array" === input.type; const _io60 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io54(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) && _iu2(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "object" === input.type; const _io61 = input => "string" === typeof input.$ref; const _io62 = input => Array.isArray(input["x-anyOf"]) && input["x-anyOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem)); const _io63 = input => Array.isArray(input["x-oneOf"]) && input["x-oneOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem)); const _io64 = input => "null" === input.type && (null === input["default"] || undefined === input["default"]); const _io65 = input => null !== input.type && undefined === input.type; const _io66 = input => Object.keys(input).every(key => {
11641
11641
  const value = input[key];
11642
11642
  if (undefined === value)
11643
11643
  return true;
11644
11644
  return "object" === typeof value && null !== value && _iu12(value);
11645
- }); const _io67 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io68 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(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) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io69 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io70 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io71 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu2(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io72 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io54(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) && _iu2(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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === typeof input.name && "string" === typeof input["in"]; const _io73 = input => "string" === typeof input.$ref && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io74 = input => Array.isArray(input["x-anyOf"]) && input["x-anyOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem)) && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io75 = input => Array.isArray(input["x-oneOf"]) && input["x-oneOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem)) && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io76 = input => "null" === input.type && (null === input["default"] || undefined === input["default"]) && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io77 = input => null !== input.type && undefined === input.type && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io78 = input => "object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu2(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 _io79 = input => Object.keys(input).every(key => {
11645
+ }); const _io67 = 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)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "boolean" === input.type && "string" === typeof input.name && "string" === typeof input["in"]; const _io68 = input => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(input.maximum)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "integer" === input.type && "string" === typeof input.name && "string" === typeof input["in"]; const _io69 = 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) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "number" === input.type && "string" === typeof input.name && "string" === typeof input["in"]; const _io70 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === input.type && "string" === typeof input.name && "string" === typeof input["in"]; const _io71 = input => "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu2(input.items) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "array" === input.type && "string" === typeof input.name && "string" === typeof input["in"]; const _io72 = input => (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io54(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) && _iu2(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "object" === input.type && "string" === typeof input.name && "string" === typeof input["in"]; const _io73 = input => "string" === typeof input.$ref && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io74 = input => Array.isArray(input["x-anyOf"]) && input["x-anyOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem)) && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io75 = input => Array.isArray(input["x-oneOf"]) && input["x-oneOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem)) && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io76 = input => "null" === input.type && (null === input["default"] || undefined === input["default"]) && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io77 = input => null !== input.type && undefined === input.type && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description); const _io78 = input => "object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu2(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 _io79 = input => Object.keys(input).every(key => {
11646
11646
  const value = input[key];
11647
11647
  if (undefined === value)
11648
11648
  return true;
@@ -11677,7 +11677,7 @@ class NestiaMigrateApplication {
11677
11677
  if (undefined === value)
11678
11678
  return true;
11679
11679
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu5(value);
11680
- }); const _io106 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io107 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(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) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io108 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io109 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io110 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && ("object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu5(input.items)) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io111 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io105(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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io112 = input => "string" === typeof input.$ref; const _io113 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)); const _io114 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)); const _io115 = 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 && _io116(input.discriminator)); const _io116 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io23(input.mapping)); const _io117 = input => (null === input["default"] || undefined === input["default"]) && "null" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io118 = input => true && (null !== input.type && undefined === input.type) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io119 = input => Object.keys(input).every(key => {
11680
+ }); const _io106 = 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)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "boolean" === input.type; const _io107 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(input.maximum)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "integer" === input.type; const _io108 = 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) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "number" === input.type; const _io109 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === input.type; const _io110 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && ("object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu5(input.items)) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "array" === input.type; const _io111 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io105(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) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "object" === input.type; const _io112 = input => "string" === typeof input.$ref; const _io113 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)); const _io114 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem)); const _io115 = 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 && _io116(input.discriminator)); const _io116 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io23(input.mapping)); const _io117 = input => (null === input["default"] || undefined === input["default"]) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "null" === input.type; const _io118 = input => true && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (null !== input.type && undefined === input.type); const _io119 = input => Object.keys(input).every(key => {
11681
11681
  const value = input[key];
11682
11682
  if (undefined === value)
11683
11683
  return true;
@@ -11702,7 +11702,7 @@ class NestiaMigrateApplication {
11702
11702
  if (undefined === value)
11703
11703
  return true;
11704
11704
  return "object" === typeof value && null !== value && _io130(value);
11705
- }); const _io130 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu5(input.schema)) && (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) && _io123(input.examples)); const _io131 = input => Object.keys(input).every(key => {
11705
+ }); const _io130 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "path" === input["in"] || "header" === input["in"] || "cookie" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu5(input.schema)) && (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) && _io123(input.examples)); const _io131 = input => Object.keys(input).every(key => {
11706
11706
  const value = input[key];
11707
11707
  if (undefined === value)
11708
11708
  return true;
@@ -11747,12 +11747,12 @@ class NestiaMigrateApplication {
11747
11747
  if (undefined === value)
11748
11748
  return true;
11749
11749
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu7(value);
11750
- }); const _io163 = input => Array.isArray(input.type) && input.type.every(elem => "string" === elem || "number" === elem || "boolean" === elem || "object" === elem || "null" === elem || "integer" === elem || "array" === elem) && (null === input["default"] || undefined === input["default"] || Array.isArray(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"])) && ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && (null !== input.items && (undefined === input.items || (Array.isArray(input.items) && input.items.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem)) || "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 && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && (undefined === input.prefixItems || 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.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io162(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)) && (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) && _iu7(elem))) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io176(input.discriminator)) && (Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem))) && (Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem))) && "string" === typeof input.$ref; const _io164 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable); const _io165 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io166 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(input.maximum)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum && __typia_transform__isTypeInt64._isTypeInt64(input.exclusiveMinimum) || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum && __typia_transform__isTypeInt64._isTypeInt64(input.exclusiveMaximum) || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io167 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io168 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io169 = 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) && _iu7(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu7(input.items)))) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(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) && _iu7(input.additionalItems))) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io170 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io162(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) && _iu7(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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io171 = input => "string" === typeof input.$ref; const _io172 = input => "string" === typeof input.$recursiveRef; const _io173 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem)); const _io174 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem)); const _io175 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io176(input.discriminator)); const _io176 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io23(input.mapping)); const _io177 = input => (null === input["default"] || undefined === input["default"]) && "null" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io178 = input => null !== input.type && undefined === input.type && true && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io179 = input => Object.keys(input).every(key => {
11750
+ }); const _io163 = input => Array.isArray(input.type) && input.type.every(elem => "string" === elem || "number" === elem || "boolean" === elem || "object" === elem || "null" === elem || "integer" === elem || "array" === elem) && (null === input["default"] || undefined === input["default"] || Array.isArray(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"])) && ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && (null !== input.items && (undefined === input.items || (Array.isArray(input.items) && input.items.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem)) || "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 && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && (undefined === input.prefixItems || 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.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io162(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)) && (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) && _iu7(elem))) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io176(input.discriminator)) && (Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem))) && (Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem))) && "string" === typeof input.$ref; const _io164 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable); const _io165 = 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)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "boolean" === input.type; const _io166 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(input.maximum)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum && __typia_transform__isTypeInt64._isTypeInt64(input.exclusiveMinimum) || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum && __typia_transform__isTypeInt64._isTypeInt64(input.exclusiveMaximum) || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "integer" === input.type; const _io167 = 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) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "number" === input.type; const _io168 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === input.type; const _io169 = 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) && _iu7(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu7(input.items)))) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(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) && _iu7(input.additionalItems))) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "array" === input.type; const _io170 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io162(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) && _iu7(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "object" === input.type; const _io171 = input => "string" === typeof input.$ref; const _io172 = input => "string" === typeof input.$recursiveRef; const _io173 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem)); const _io174 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem)); const _io175 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io176(input.discriminator)); const _io176 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io23(input.mapping)); const _io177 = input => (null === input["default"] || undefined === input["default"]) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "null" === input.type; const _io178 = input => null !== input.type && undefined === input.type && true && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io179 = input => Object.keys(input).every(key => {
11751
11751
  const value = input[key];
11752
11752
  if (undefined === value)
11753
11753
  return true;
11754
11754
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _io180(value);
11755
- }); const _io180 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu8(elem))) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io155(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input["x-additionalOperations"] || "object" === typeof input["x-additionalOperations"] && null !== input["x-additionalOperations"] && false === Array.isArray(input["x-additionalOperations"]) && _io187(input["x-additionalOperations"])) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io188(input["delete"])) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io188(input.head)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io188(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io188(input.post)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io188(input.put)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io188(input.patch)) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io188(input.options)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io188(input.trace)); const _io181 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu7(input.schema)) && (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) && _io182(input.examples)); const _io182 = input => Object.keys(input).every(key => {
11755
+ }); const _io180 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu8(elem))) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io155(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input["x-additionalOperations"] || "object" === typeof input["x-additionalOperations"] && null !== input["x-additionalOperations"] && false === Array.isArray(input["x-additionalOperations"]) && _io187(input["x-additionalOperations"])) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io188(input["delete"])) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io188(input.head)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io188(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io188(input.post)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io188(input.put)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io188(input.patch)) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io188(input.options)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io188(input.trace)); const _io181 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "path" === input["in"] || "header" === input["in"] || "cookie" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu7(input.schema)) && (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) && _io182(input.examples)); const _io182 = input => Object.keys(input).every(key => {
11756
11756
  const value = input[key];
11757
11757
  if (undefined === value)
11758
11758
  return true;
@@ -11822,12 +11822,12 @@ class NestiaMigrateApplication {
11822
11822
  if (undefined === value)
11823
11823
  return true;
11824
11824
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu9(value);
11825
- }); const _io225 = input => Array.isArray(input.type) && input.type.every(elem => "string" === elem || "number" === elem || "boolean" === elem || "object" === elem || "null" === elem || "integer" === elem || "array" === elem) && (null === input["default"] || undefined === input["default"] || Array.isArray(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"])) && ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && (null !== input.items && (undefined === input.items || (Array.isArray(input.items) && input.items.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu9(input.items)))) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem))) && (null !== input.additionalItems && (undefined === input.additionalItems || "boolean" === typeof input.additionalItems || "object" === typeof input.additionalItems && null !== input.additionalItems && false === Array.isArray(input.additionalItems) && _iu9(input.additionalItems))) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io224(input.properties)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu9(input.additionalProperties))) && (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) && _iu9(elem))) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io238(input.discriminator)) && (Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem))) && (Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem))) && "string" === typeof input.$ref; const _io226 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable); const _io227 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io228 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(input.maximum)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum && __typia_transform__isTypeInt64._isTypeInt64(input.exclusiveMinimum) || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum && __typia_transform__isTypeInt64._isTypeInt64(input.exclusiveMaximum) || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && "integer" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io229 = 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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io230 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && "string" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io231 = 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) && _iu9(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu9(input.items)))) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(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) && _iu9(input.additionalItems))) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && "array" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io232 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io224(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) && _iu9(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.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io233 = input => "string" === typeof input.$ref; const _io234 = input => "string" === typeof input.$recursiveRef; const _io235 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem)); const _io236 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem)); const _io237 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io238(input.discriminator)); const _io238 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io23(input.mapping)); const _io239 = input => (null === input["default"] || undefined === input["default"]) && "null" === input.type && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io240 = input => null !== input.type && undefined === input.type && true && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io241 = input => Object.keys(input).every(key => {
11825
+ }); const _io225 = input => Array.isArray(input.type) && input.type.every(elem => "string" === elem || "number" === elem || "boolean" === elem || "object" === elem || "null" === elem || "integer" === elem || "array" === elem) && (null === input["default"] || undefined === input["default"] || Array.isArray(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"])) && ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.minimum || "number" === typeof input.minimum) && (undefined === input.maximum || "number" === typeof input.maximum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.contentMediaType || "string" === typeof input.contentMediaType) && (undefined === input.format || "string" === typeof input.format) && (undefined === input.pattern || "string" === typeof input.pattern) && (undefined === input.minLength || "number" === typeof input.minLength && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && (null !== input.items && (undefined === input.items || (Array.isArray(input.items) && input.items.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu9(input.items)))) && (undefined === input.uniqueItems || "boolean" === typeof input.uniqueItems) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem))) && (null !== input.additionalItems && (undefined === input.additionalItems || "boolean" === typeof input.additionalItems || "object" === typeof input.additionalItems && null !== input.additionalItems && false === Array.isArray(input.additionalItems) && _iu9(input.additionalItems))) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io224(input.properties)) && (null !== input.additionalProperties && (undefined === input.additionalProperties || "boolean" === typeof input.additionalProperties || "object" === typeof input.additionalProperties && null !== input.additionalProperties && false === Array.isArray(input.additionalProperties) && _iu9(input.additionalProperties))) && (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) && _iu9(elem))) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io238(input.discriminator)) && (Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem))) && (Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem))) && "string" === typeof input.$ref; const _io226 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable); const _io227 = 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)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "boolean" === input.type; const _io228 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && __typia_transform__isTypeInt64._isTypeInt64(input["default"])) && (undefined === input["enum"] || Array.isArray(input["enum"]) && input["enum"].every(elem => null === elem || "number" === typeof elem && __typia_transform__isTypeInt64._isTypeInt64(elem))) && (undefined === input.minimum || "number" === typeof input.minimum && __typia_transform__isTypeInt64._isTypeInt64(input.minimum)) && (undefined === input.maximum || "number" === typeof input.maximum && __typia_transform__isTypeInt64._isTypeInt64(input.maximum)) && (undefined === input.exclusiveMinimum || "number" === typeof input.exclusiveMinimum && __typia_transform__isTypeInt64._isTypeInt64(input.exclusiveMinimum) || "boolean" === typeof input.exclusiveMinimum) && (undefined === input.exclusiveMaximum || "number" === typeof input.exclusiveMaximum && __typia_transform__isTypeInt64._isTypeInt64(input.exclusiveMaximum) || "boolean" === typeof input.exclusiveMaximum) && (undefined === input.multipleOf || "number" === typeof input.multipleOf && 0 < input.multipleOf) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "integer" === input.type; const _io229 = 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) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "number" === input.type; const _io230 = 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 && __typia_transform__isTypeUint64._isTypeUint64(input.minLength)) && (undefined === input.maxLength || "number" === typeof input.maxLength && __typia_transform__isTypeUint64._isTypeUint64(input.maxLength)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "string" === input.type; const _io231 = 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) && _iu9(elem)) || "object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) && _iu9(input.items)))) && (undefined === input.prefixItems || Array.isArray(input.prefixItems) && input.prefixItems.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(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) && _iu9(input.additionalItems))) && (undefined === input.minItems || "number" === typeof input.minItems && __typia_transform__isTypeUint64._isTypeUint64(input.minItems)) && (undefined === input.maxItems || "number" === typeof input.maxItems && __typia_transform__isTypeUint64._isTypeUint64(input.maxItems)) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "array" === input.type; const _io232 = input => (undefined === input.nullable || "boolean" === typeof input.nullable) && (undefined === input.properties || "object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) && _io224(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) && _iu9(input.additionalProperties))) && (undefined === input.maxProperties || "number" === typeof input.maxProperties) && (undefined === input.minProperties || "number" === typeof input.minProperties) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "object" === input.type; const _io233 = input => "string" === typeof input.$ref; const _io234 = input => "string" === typeof input.$recursiveRef; const _io235 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem)); const _io236 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem)); const _io237 = input => Array.isArray(input.oneOf) && input.oneOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem)) && (undefined === input.discriminator || "object" === typeof input.discriminator && null !== input.discriminator && _io238(input.discriminator)); const _io238 = input => "string" === typeof input.propertyName && (undefined === input.mapping || "object" === typeof input.mapping && null !== input.mapping && false === Array.isArray(input.mapping) && _io23(input.mapping)); const _io239 = input => (null === input["default"] || undefined === input["default"]) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly) && "null" === input.type; const _io240 = input => null !== input.type && undefined === input.type && true && (undefined === input.title || "string" === typeof input.title) && (undefined === input.deprecated || "boolean" === typeof input.deprecated) && (undefined === input.description || "string" === typeof input.description) && true && (undefined === input.readOnly || "boolean" === typeof input.readOnly) && (undefined === input.writeOnly || "boolean" === typeof input.writeOnly); const _io241 = input => Object.keys(input).every(key => {
11826
11826
  const value = input[key];
11827
11827
  if (undefined === value)
11828
11828
  return true;
11829
11829
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _io242(value);
11830
- }); const _io242 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu10(elem))) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io217(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.additionalOperations || "object" === typeof input.additionalOperations && null !== input.additionalOperations && false === Array.isArray(input.additionalOperations) && _io249(input.additionalOperations)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io250(input["delete"])) && (undefined === input.query || "object" === typeof input.query && null !== input.query && false === Array.isArray(input.query) && _io250(input.query)) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io250(input.head)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io250(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io250(input.post)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io250(input.put)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io250(input.patch)) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io250(input.options)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io250(input.trace)); const _io243 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || "querystring" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu9(input.schema)) && (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) && _io244(input.examples)); const _io244 = input => Object.keys(input).every(key => {
11830
+ }); const _io242 = input => (undefined === input.parameters || Array.isArray(input.parameters) && input.parameters.every(elem => "object" === typeof elem && null !== elem && _iu10(elem))) && (undefined === input.servers || Array.isArray(input.servers) && input.servers.every(elem => "object" === typeof elem && null !== elem && _io217(elem))) && (undefined === input.summary || "string" === typeof input.summary) && (undefined === input.description || "string" === typeof input.description) && (undefined === input.additionalOperations || "object" === typeof input.additionalOperations && null !== input.additionalOperations && false === Array.isArray(input.additionalOperations) && _io249(input.additionalOperations)) && (undefined === input["delete"] || "object" === typeof input["delete"] && null !== input["delete"] && false === Array.isArray(input["delete"]) && _io250(input["delete"])) && (undefined === input.query || "object" === typeof input.query && null !== input.query && false === Array.isArray(input.query) && _io250(input.query)) && (undefined === input.head || "object" === typeof input.head && null !== input.head && false === Array.isArray(input.head) && _io250(input.head)) && (undefined === input.get || "object" === typeof input.get && null !== input.get && false === Array.isArray(input.get) && _io250(input.get)) && (undefined === input.post || "object" === typeof input.post && null !== input.post && false === Array.isArray(input.post) && _io250(input.post)) && (undefined === input.put || "object" === typeof input.put && null !== input.put && false === Array.isArray(input.put) && _io250(input.put)) && (undefined === input.patch || "object" === typeof input.patch && null !== input.patch && false === Array.isArray(input.patch) && _io250(input.patch)) && (undefined === input.options || "object" === typeof input.options && null !== input.options && false === Array.isArray(input.options) && _io250(input.options)) && (undefined === input.trace || "object" === typeof input.trace && null !== input.trace && false === Array.isArray(input.trace) && _io250(input.trace)); const _io243 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "path" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "querystring" === input["in"]) && ("object" === typeof input.schema && null !== input.schema && false === Array.isArray(input.schema) && _iu9(input.schema)) && (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) && _io244(input.examples)); const _io244 = input => Object.keys(input).every(key => {
11831
11831
  const value = input[key];
11832
11832
  if (undefined === value)
11833
11833
  return true;
@@ -13661,7 +13661,7 @@ class NestiaMigrateApplication {
13661
13661
  path: _path + ".name",
13662
13662
  expected: "(string | undefined)",
13663
13663
  value: input.name
13664
- }), "query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || "querystring" === input["in"] || _report(_exceptionable, {
13664
+ }), "query" === input["in"] || "path" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "querystring" === input["in"] || _report(_exceptionable, {
13665
13665
  path: _path + "[\"in\"]",
13666
13666
  expected: "(\"cookie\" | \"header\" | \"path\" | \"query\" | \"querystring\")",
13667
13667
  value: input["in"]
@@ -14109,10 +14109,6 @@ class NestiaMigrateApplication {
14109
14109
  path: _path + "[\"enum\"]",
14110
14110
  expected: "(Array<boolean | null> | undefined)",
14111
14111
  value: input["enum"]
14112
- }), "boolean" === input.type || _report(_exceptionable, {
14113
- path: _path + ".type",
14114
- expected: "\"boolean\"",
14115
- value: input.type
14116
14112
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
14117
14113
  path: _path + ".title",
14118
14114
  expected: "(string | undefined)",
@@ -14133,6 +14129,10 @@ class NestiaMigrateApplication {
14133
14129
  path: _path + ".writeOnly",
14134
14130
  expected: "(boolean | undefined)",
14135
14131
  value: input.writeOnly
14132
+ }), "boolean" === input.type || _report(_exceptionable, {
14133
+ path: _path + ".type",
14134
+ expected: "\"boolean\"",
14135
+ value: input.type
14136
14136
  })].every(flag => flag); const _vo56 = (input, _path, _exceptionable = true) => [null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (__typia_transform__isTypeInt64._isTypeInt64(input["default"]) || _report(_exceptionable, {
14137
14137
  path: _path + "[\"default\"]",
14138
14138
  expected: "number & Type<\"int64\">",
@@ -14189,10 +14189,6 @@ class NestiaMigrateApplication {
14189
14189
  path: _path + ".multipleOf",
14190
14190
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
14191
14191
  value: input.multipleOf
14192
- }), "integer" === input.type || _report(_exceptionable, {
14193
- path: _path + ".type",
14194
- expected: "\"integer\"",
14195
- value: input.type
14196
14192
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
14197
14193
  path: _path + ".title",
14198
14194
  expected: "(string | undefined)",
@@ -14213,6 +14209,10 @@ class NestiaMigrateApplication {
14213
14209
  path: _path + ".writeOnly",
14214
14210
  expected: "(boolean | undefined)",
14215
14211
  value: input.writeOnly
14212
+ }), "integer" === input.type || _report(_exceptionable, {
14213
+ path: _path + ".type",
14214
+ expected: "\"integer\"",
14215
+ value: input.type
14216
14216
  })].every(flag => flag); const _vo57 = (input, _path, _exceptionable = true) => [null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] || _report(_exceptionable, {
14217
14217
  path: _path + "[\"default\"]",
14218
14218
  expected: "(null | number | undefined)",
@@ -14252,11 +14252,7 @@ class NestiaMigrateApplication {
14252
14252
  })) || _report(_exceptionable, {
14253
14253
  path: _path + ".multipleOf",
14254
14254
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
14255
- value: input.multipleOf
14256
- }), "number" === input.type || _report(_exceptionable, {
14257
- path: _path + ".type",
14258
- expected: "\"number\"",
14259
- value: input.type
14255
+ value: input.multipleOf
14260
14256
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
14261
14257
  path: _path + ".title",
14262
14258
  expected: "(string | undefined)",
@@ -14277,6 +14273,10 @@ class NestiaMigrateApplication {
14277
14273
  path: _path + ".writeOnly",
14278
14274
  expected: "(boolean | undefined)",
14279
14275
  value: input.writeOnly
14276
+ }), "number" === input.type || _report(_exceptionable, {
14277
+ path: _path + ".type",
14278
+ expected: "\"number\"",
14279
+ value: input.type
14280
14280
  })].every(flag => flag); const _vo58 = (input, _path, _exceptionable = true) => [null === input["default"] || undefined === input["default"] || "string" === typeof input["default"] || _report(_exceptionable, {
14281
14281
  path: _path + "[\"default\"]",
14282
14282
  expected: "(null | string | undefined)",
@@ -14317,10 +14317,6 @@ class NestiaMigrateApplication {
14317
14317
  path: _path + ".maxLength",
14318
14318
  expected: "((number & Type<\"uint64\">) | undefined)",
14319
14319
  value: input.maxLength
14320
- }), "string" === input.type || _report(_exceptionable, {
14321
- path: _path + ".type",
14322
- expected: "\"string\"",
14323
- value: input.type
14324
14320
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
14325
14321
  path: _path + ".title",
14326
14322
  expected: "(string | undefined)",
@@ -14341,6 +14337,10 @@ class NestiaMigrateApplication {
14341
14337
  path: _path + ".writeOnly",
14342
14338
  expected: "(boolean | undefined)",
14343
14339
  value: input.writeOnly
14340
+ }), "string" === input.type || _report(_exceptionable, {
14341
+ path: _path + ".type",
14342
+ expected: "\"string\"",
14343
+ value: input.type
14344
14344
  })].every(flag => flag); const _vo59 = (input, _path, _exceptionable = true) => [("object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) || _report(_exceptionable, {
14345
14345
  path: _path + ".items",
14346
14346
  expected: "(SwaggerV2.IJsonSchema.IAnyOf | SwaggerV2.IJsonSchema.IArray | SwaggerV2.IJsonSchema.IBoolean | SwaggerV2.IJsonSchema.IInteger | SwaggerV2.IJsonSchema.INullOnly | SwaggerV2.IJsonSchema.INumber | SwaggerV2.IJsonSchema.IObject | SwaggerV2.IJsonSchema.IOneOf | SwaggerV2.IJsonSchema.IReference<string> | SwaggerV2.IJsonSchema.IString | SwaggerV2.IJsonSchema.IUnknown)",
@@ -14369,10 +14369,6 @@ class NestiaMigrateApplication {
14369
14369
  path: _path + ".maxItems",
14370
14370
  expected: "((number & Type<\"uint64\">) | undefined)",
14371
14371
  value: input.maxItems
14372
- }), "array" === input.type || _report(_exceptionable, {
14373
- path: _path + ".type",
14374
- expected: "\"array\"",
14375
- value: input.type
14376
14372
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
14377
14373
  path: _path + ".title",
14378
14374
  expected: "(string | undefined)",
@@ -14393,6 +14389,10 @@ class NestiaMigrateApplication {
14393
14389
  path: _path + ".writeOnly",
14394
14390
  expected: "(boolean | undefined)",
14395
14391
  value: input.writeOnly
14392
+ }), "array" === input.type || _report(_exceptionable, {
14393
+ path: _path + ".type",
14394
+ expected: "\"array\"",
14395
+ value: input.type
14396
14396
  })].every(flag => flag); const _vo60 = (input, _path, _exceptionable = true) => [undefined === input.properties || ("object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) || _report(_exceptionable, {
14397
14397
  path: _path + ".properties",
14398
14398
  expected: "(Record<string, SwaggerV2.IJsonSchema> | undefined)",
@@ -14433,10 +14433,6 @@ class NestiaMigrateApplication {
14433
14433
  path: _path + ".minProperties",
14434
14434
  expected: "(number | undefined)",
14435
14435
  value: input.minProperties
14436
- }), "object" === input.type || _report(_exceptionable, {
14437
- path: _path + ".type",
14438
- expected: "\"object\"",
14439
- value: input.type
14440
14436
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
14441
14437
  path: _path + ".title",
14442
14438
  expected: "(string | undefined)",
@@ -14457,6 +14453,10 @@ class NestiaMigrateApplication {
14457
14453
  path: _path + ".writeOnly",
14458
14454
  expected: "(boolean | undefined)",
14459
14455
  value: input.writeOnly
14456
+ }), "object" === input.type || _report(_exceptionable, {
14457
+ path: _path + ".type",
14458
+ expected: "\"object\"",
14459
+ value: input.type
14460
14460
  })].every(flag => flag); const _vo61 = (input, _path, _exceptionable = true) => ["string" === typeof input.$ref || _report(_exceptionable, {
14461
14461
  path: _path + ".$ref",
14462
14462
  expected: "string",
@@ -14538,10 +14538,6 @@ class NestiaMigrateApplication {
14538
14538
  path: _path + "[\"enum\"]",
14539
14539
  expected: "(Array<boolean | null> | undefined)",
14540
14540
  value: input["enum"]
14541
- }), "boolean" === input.type || _report(_exceptionable, {
14542
- path: _path + ".type",
14543
- expected: "\"boolean\"",
14544
- value: input.type
14545
14541
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
14546
14542
  path: _path + ".title",
14547
14543
  expected: "(string | undefined)",
@@ -14562,6 +14558,10 @@ class NestiaMigrateApplication {
14562
14558
  path: _path + ".writeOnly",
14563
14559
  expected: "(boolean | undefined)",
14564
14560
  value: input.writeOnly
14561
+ }), "boolean" === input.type || _report(_exceptionable, {
14562
+ path: _path + ".type",
14563
+ expected: "\"boolean\"",
14564
+ value: input.type
14565
14565
  }), "string" === typeof input.name || _report(_exceptionable, {
14566
14566
  path: _path + ".name",
14567
14567
  expected: "string",
@@ -14626,10 +14626,6 @@ class NestiaMigrateApplication {
14626
14626
  path: _path + ".multipleOf",
14627
14627
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
14628
14628
  value: input.multipleOf
14629
- }), "integer" === input.type || _report(_exceptionable, {
14630
- path: _path + ".type",
14631
- expected: "\"integer\"",
14632
- value: input.type
14633
14629
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
14634
14630
  path: _path + ".title",
14635
14631
  expected: "(string | undefined)",
@@ -14650,6 +14646,10 @@ class NestiaMigrateApplication {
14650
14646
  path: _path + ".writeOnly",
14651
14647
  expected: "(boolean | undefined)",
14652
14648
  value: input.writeOnly
14649
+ }), "integer" === input.type || _report(_exceptionable, {
14650
+ path: _path + ".type",
14651
+ expected: "\"integer\"",
14652
+ value: input.type
14653
14653
  }), "string" === typeof input.name || _report(_exceptionable, {
14654
14654
  path: _path + ".name",
14655
14655
  expected: "string",
@@ -14698,10 +14698,6 @@ class NestiaMigrateApplication {
14698
14698
  path: _path + ".multipleOf",
14699
14699
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
14700
14700
  value: input.multipleOf
14701
- }), "number" === input.type || _report(_exceptionable, {
14702
- path: _path + ".type",
14703
- expected: "\"number\"",
14704
- value: input.type
14705
14701
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
14706
14702
  path: _path + ".title",
14707
14703
  expected: "(string | undefined)",
@@ -14722,6 +14718,10 @@ class NestiaMigrateApplication {
14722
14718
  path: _path + ".writeOnly",
14723
14719
  expected: "(boolean | undefined)",
14724
14720
  value: input.writeOnly
14721
+ }), "number" === input.type || _report(_exceptionable, {
14722
+ path: _path + ".type",
14723
+ expected: "\"number\"",
14724
+ value: input.type
14725
14725
  }), "string" === typeof input.name || _report(_exceptionable, {
14726
14726
  path: _path + ".name",
14727
14727
  expected: "string",
@@ -14770,10 +14770,6 @@ class NestiaMigrateApplication {
14770
14770
  path: _path + ".maxLength",
14771
14771
  expected: "((number & Type<\"uint64\">) | undefined)",
14772
14772
  value: input.maxLength
14773
- }), "string" === input.type || _report(_exceptionable, {
14774
- path: _path + ".type",
14775
- expected: "\"string\"",
14776
- value: input.type
14777
14773
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
14778
14774
  path: _path + ".title",
14779
14775
  expected: "(string | undefined)",
@@ -14794,6 +14790,10 @@ class NestiaMigrateApplication {
14794
14790
  path: _path + ".writeOnly",
14795
14791
  expected: "(boolean | undefined)",
14796
14792
  value: input.writeOnly
14793
+ }), "string" === input.type || _report(_exceptionable, {
14794
+ path: _path + ".type",
14795
+ expected: "\"string\"",
14796
+ value: input.type
14797
14797
  }), "string" === typeof input.name || _report(_exceptionable, {
14798
14798
  path: _path + ".name",
14799
14799
  expected: "string",
@@ -14830,10 +14830,6 @@ class NestiaMigrateApplication {
14830
14830
  path: _path + ".maxItems",
14831
14831
  expected: "((number & Type<\"uint64\">) | undefined)",
14832
14832
  value: input.maxItems
14833
- }), "array" === input.type || _report(_exceptionable, {
14834
- path: _path + ".type",
14835
- expected: "\"array\"",
14836
- value: input.type
14837
14833
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
14838
14834
  path: _path + ".title",
14839
14835
  expected: "(string | undefined)",
@@ -14854,6 +14850,10 @@ class NestiaMigrateApplication {
14854
14850
  path: _path + ".writeOnly",
14855
14851
  expected: "(boolean | undefined)",
14856
14852
  value: input.writeOnly
14853
+ }), "array" === input.type || _report(_exceptionable, {
14854
+ path: _path + ".type",
14855
+ expected: "\"array\"",
14856
+ value: input.type
14857
14857
  }), "string" === typeof input.name || _report(_exceptionable, {
14858
14858
  path: _path + ".name",
14859
14859
  expected: "string",
@@ -14902,10 +14902,6 @@ class NestiaMigrateApplication {
14902
14902
  path: _path + ".minProperties",
14903
14903
  expected: "(number | undefined)",
14904
14904
  value: input.minProperties
14905
- }), "object" === input.type || _report(_exceptionable, {
14906
- path: _path + ".type",
14907
- expected: "\"object\"",
14908
- value: input.type
14909
14905
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
14910
14906
  path: _path + ".title",
14911
14907
  expected: "(string | undefined)",
@@ -14926,6 +14922,10 @@ class NestiaMigrateApplication {
14926
14922
  path: _path + ".writeOnly",
14927
14923
  expected: "(boolean | undefined)",
14928
14924
  value: input.writeOnly
14925
+ }), "object" === input.type || _report(_exceptionable, {
14926
+ path: _path + ".type",
14927
+ expected: "\"object\"",
14928
+ value: input.type
14929
14929
  }), "string" === typeof input.name || _report(_exceptionable, {
14930
14930
  path: _path + ".name",
14931
14931
  expected: "string",
@@ -15737,10 +15737,6 @@ class NestiaMigrateApplication {
15737
15737
  path: _path + "[\"enum\"]",
15738
15738
  expected: "(Array<boolean | null> | undefined)",
15739
15739
  value: input["enum"]
15740
- }), "boolean" === input.type || _report(_exceptionable, {
15741
- path: _path + ".type",
15742
- expected: "\"boolean\"",
15743
- value: input.type
15744
15740
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
15745
15741
  path: _path + ".title",
15746
15742
  expected: "(string | undefined)",
@@ -15761,6 +15757,10 @@ class NestiaMigrateApplication {
15761
15757
  path: _path + ".writeOnly",
15762
15758
  expected: "(boolean | undefined)",
15763
15759
  value: input.writeOnly
15760
+ }), "boolean" === input.type || _report(_exceptionable, {
15761
+ path: _path + ".type",
15762
+ expected: "\"boolean\"",
15763
+ value: input.type
15764
15764
  })].every(flag => flag); const _vo107 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
15765
15765
  path: _path + ".nullable",
15766
15766
  expected: "(boolean | undefined)",
@@ -15821,10 +15821,6 @@ class NestiaMigrateApplication {
15821
15821
  path: _path + ".multipleOf",
15822
15822
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
15823
15823
  value: input.multipleOf
15824
- }), "integer" === input.type || _report(_exceptionable, {
15825
- path: _path + ".type",
15826
- expected: "\"integer\"",
15827
- value: input.type
15828
15824
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
15829
15825
  path: _path + ".title",
15830
15826
  expected: "(string | undefined)",
@@ -15845,6 +15841,10 @@ class NestiaMigrateApplication {
15845
15841
  path: _path + ".writeOnly",
15846
15842
  expected: "(boolean | undefined)",
15847
15843
  value: input.writeOnly
15844
+ }), "integer" === input.type || _report(_exceptionable, {
15845
+ path: _path + ".type",
15846
+ expected: "\"integer\"",
15847
+ value: input.type
15848
15848
  })].every(flag => flag); const _vo108 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
15849
15849
  path: _path + ".nullable",
15850
15850
  expected: "(boolean | undefined)",
@@ -15889,10 +15889,6 @@ class NestiaMigrateApplication {
15889
15889
  path: _path + ".multipleOf",
15890
15890
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
15891
15891
  value: input.multipleOf
15892
- }), "number" === input.type || _report(_exceptionable, {
15893
- path: _path + ".type",
15894
- expected: "\"number\"",
15895
- value: input.type
15896
15892
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
15897
15893
  path: _path + ".title",
15898
15894
  expected: "(string | undefined)",
@@ -15913,6 +15909,10 @@ class NestiaMigrateApplication {
15913
15909
  path: _path + ".writeOnly",
15914
15910
  expected: "(boolean | undefined)",
15915
15911
  value: input.writeOnly
15912
+ }), "number" === input.type || _report(_exceptionable, {
15913
+ path: _path + ".type",
15914
+ expected: "\"number\"",
15915
+ value: input.type
15916
15916
  })].every(flag => flag); const _vo109 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
15917
15917
  path: _path + ".nullable",
15918
15918
  expected: "(boolean | undefined)",
@@ -15957,10 +15957,6 @@ class NestiaMigrateApplication {
15957
15957
  path: _path + ".maxLength",
15958
15958
  expected: "((number & Type<\"uint64\">) | undefined)",
15959
15959
  value: input.maxLength
15960
- }), "string" === input.type || _report(_exceptionable, {
15961
- path: _path + ".type",
15962
- expected: "\"string\"",
15963
- value: input.type
15964
15960
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
15965
15961
  path: _path + ".title",
15966
15962
  expected: "(string | undefined)",
@@ -15981,6 +15977,10 @@ class NestiaMigrateApplication {
15981
15977
  path: _path + ".writeOnly",
15982
15978
  expected: "(boolean | undefined)",
15983
15979
  value: input.writeOnly
15980
+ }), "string" === input.type || _report(_exceptionable, {
15981
+ path: _path + ".type",
15982
+ expected: "\"string\"",
15983
+ value: input.type
15984
15984
  })].every(flag => flag); const _vo110 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
15985
15985
  path: _path + ".nullable",
15986
15986
  expected: "(boolean | undefined)",
@@ -16013,10 +16013,6 @@ class NestiaMigrateApplication {
16013
16013
  path: _path + ".maxItems",
16014
16014
  expected: "((number & Type<\"uint64\">) | undefined)",
16015
16015
  value: input.maxItems
16016
- }), "array" === input.type || _report(_exceptionable, {
16017
- path: _path + ".type",
16018
- expected: "\"array\"",
16019
- value: input.type
16020
16016
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
16021
16017
  path: _path + ".title",
16022
16018
  expected: "(string | undefined)",
@@ -16037,6 +16033,10 @@ class NestiaMigrateApplication {
16037
16033
  path: _path + ".writeOnly",
16038
16034
  expected: "(boolean | undefined)",
16039
16035
  value: input.writeOnly
16036
+ }), "array" === input.type || _report(_exceptionable, {
16037
+ path: _path + ".type",
16038
+ expected: "\"array\"",
16039
+ value: input.type
16040
16040
  })].every(flag => flag); const _vo111 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
16041
16041
  path: _path + ".nullable",
16042
16042
  expected: "(boolean | undefined)",
@@ -16081,10 +16081,6 @@ class NestiaMigrateApplication {
16081
16081
  path: _path + ".minProperties",
16082
16082
  expected: "(number | undefined)",
16083
16083
  value: input.minProperties
16084
- }), "object" === input.type || _report(_exceptionable, {
16085
- path: _path + ".type",
16086
- expected: "\"object\"",
16087
- value: input.type
16088
16084
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
16089
16085
  path: _path + ".title",
16090
16086
  expected: "(string | undefined)",
@@ -16105,6 +16101,10 @@ class NestiaMigrateApplication {
16105
16101
  path: _path + ".writeOnly",
16106
16102
  expected: "(boolean | undefined)",
16107
16103
  value: input.writeOnly
16104
+ }), "object" === input.type || _report(_exceptionable, {
16105
+ path: _path + ".type",
16106
+ expected: "\"object\"",
16107
+ value: input.type
16108
16108
  })].every(flag => flag); const _vo112 = (input, _path, _exceptionable = true) => ["string" === typeof input.$ref || _report(_exceptionable, {
16109
16109
  path: _path + ".$ref",
16110
16110
  expected: "string",
@@ -16181,10 +16181,6 @@ class NestiaMigrateApplication {
16181
16181
  path: _path + "[\"default\"]",
16182
16182
  expected: "(null | undefined)",
16183
16183
  value: input["default"]
16184
- }), "null" === input.type || _report(_exceptionable, {
16185
- path: _path + ".type",
16186
- expected: "\"null\"",
16187
- value: input.type
16188
16184
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
16189
16185
  path: _path + ".title",
16190
16186
  expected: "(string | undefined)",
@@ -16205,15 +16201,11 @@ class NestiaMigrateApplication {
16205
16201
  path: _path + ".writeOnly",
16206
16202
  expected: "(boolean | undefined)",
16207
16203
  value: input.writeOnly
16208
- })].every(flag => flag); const _vo118 = (input, _path, _exceptionable = true) => [true, (null !== input.type || _report(_exceptionable, {
16209
- path: _path + ".type",
16210
- expected: "undefined",
16211
- value: input.type
16212
- })) && (undefined === input.type || _report(_exceptionable, {
16204
+ }), "null" === input.type || _report(_exceptionable, {
16213
16205
  path: _path + ".type",
16214
- expected: "undefined",
16206
+ expected: "\"null\"",
16215
16207
  value: input.type
16216
- })), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
16208
+ })].every(flag => flag); const _vo118 = (input, _path, _exceptionable = true) => [true, undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
16217
16209
  path: _path + ".title",
16218
16210
  expected: "(string | undefined)",
16219
16211
  value: input.title
@@ -16233,7 +16225,15 @@ class NestiaMigrateApplication {
16233
16225
  path: _path + ".writeOnly",
16234
16226
  expected: "(boolean | undefined)",
16235
16227
  value: input.writeOnly
16236
- })].every(flag => flag); const _vo119 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
16228
+ }), (null !== input.type || _report(_exceptionable, {
16229
+ path: _path + ".type",
16230
+ expected: "undefined",
16231
+ value: input.type
16232
+ })) && (undefined === input.type || _report(_exceptionable, {
16233
+ path: _path + ".type",
16234
+ expected: "undefined",
16235
+ value: input.type
16236
+ }))].every(flag => flag); const _vo119 = (input, _path, _exceptionable = true) => [false === _exceptionable || Object.keys(input).map(key => {
16237
16237
  const value = input[key];
16238
16238
  if (undefined === value)
16239
16239
  return true;
@@ -16386,7 +16386,7 @@ class NestiaMigrateApplication {
16386
16386
  path: _path + ".name",
16387
16387
  expected: "(string | undefined)",
16388
16388
  value: input.name
16389
- }), "query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || _report(_exceptionable, {
16389
+ }), "query" === input["in"] || "path" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || _report(_exceptionable, {
16390
16390
  path: _path + "[\"in\"]",
16391
16391
  expected: "(\"cookie\" | \"header\" | \"path\" | \"query\")",
16392
16392
  value: input["in"]
@@ -17475,10 +17475,6 @@ class NestiaMigrateApplication {
17475
17475
  path: _path + "[\"enum\"]",
17476
17476
  expected: "(Array<boolean | null> | undefined)",
17477
17477
  value: input["enum"]
17478
- }), "boolean" === input.type || _report(_exceptionable, {
17479
- path: _path + ".type",
17480
- expected: "\"boolean\"",
17481
- value: input.type
17482
17478
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
17483
17479
  path: _path + ".title",
17484
17480
  expected: "(string | undefined)",
@@ -17499,6 +17495,10 @@ class NestiaMigrateApplication {
17499
17495
  path: _path + ".writeOnly",
17500
17496
  expected: "(boolean | undefined)",
17501
17497
  value: input.writeOnly
17498
+ }), "boolean" === input.type || _report(_exceptionable, {
17499
+ path: _path + ".type",
17500
+ expected: "\"boolean\"",
17501
+ value: input.type
17502
17502
  })].every(flag => flag); const _vo166 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
17503
17503
  path: _path + ".nullable",
17504
17504
  expected: "(boolean | undefined)",
@@ -17567,10 +17567,6 @@ class NestiaMigrateApplication {
17567
17567
  path: _path + ".multipleOf",
17568
17568
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
17569
17569
  value: input.multipleOf
17570
- }), "integer" === input.type || _report(_exceptionable, {
17571
- path: _path + ".type",
17572
- expected: "\"integer\"",
17573
- value: input.type
17574
17570
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
17575
17571
  path: _path + ".title",
17576
17572
  expected: "(string | undefined)",
@@ -17591,6 +17587,10 @@ class NestiaMigrateApplication {
17591
17587
  path: _path + ".writeOnly",
17592
17588
  expected: "(boolean | undefined)",
17593
17589
  value: input.writeOnly
17590
+ }), "integer" === input.type || _report(_exceptionable, {
17591
+ path: _path + ".type",
17592
+ expected: "\"integer\"",
17593
+ value: input.type
17594
17594
  })].every(flag => flag); const _vo167 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
17595
17595
  path: _path + ".nullable",
17596
17596
  expected: "(boolean | undefined)",
@@ -17635,10 +17635,6 @@ class NestiaMigrateApplication {
17635
17635
  path: _path + ".multipleOf",
17636
17636
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
17637
17637
  value: input.multipleOf
17638
- }), "number" === input.type || _report(_exceptionable, {
17639
- path: _path + ".type",
17640
- expected: "\"number\"",
17641
- value: input.type
17642
17638
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
17643
17639
  path: _path + ".title",
17644
17640
  expected: "(string | undefined)",
@@ -17659,6 +17655,10 @@ class NestiaMigrateApplication {
17659
17655
  path: _path + ".writeOnly",
17660
17656
  expected: "(boolean | undefined)",
17661
17657
  value: input.writeOnly
17658
+ }), "number" === input.type || _report(_exceptionable, {
17659
+ path: _path + ".type",
17660
+ expected: "\"number\"",
17661
+ value: input.type
17662
17662
  })].every(flag => flag); const _vo168 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
17663
17663
  path: _path + ".nullable",
17664
17664
  expected: "(boolean | undefined)",
@@ -17707,10 +17707,6 @@ class NestiaMigrateApplication {
17707
17707
  path: _path + ".maxLength",
17708
17708
  expected: "((number & Type<\"uint64\">) | undefined)",
17709
17709
  value: input.maxLength
17710
- }), "string" === input.type || _report(_exceptionable, {
17711
- path: _path + ".type",
17712
- expected: "\"string\"",
17713
- value: input.type
17714
17710
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
17715
17711
  path: _path + ".title",
17716
17712
  expected: "(string | undefined)",
@@ -17731,6 +17727,10 @@ class NestiaMigrateApplication {
17731
17727
  path: _path + ".writeOnly",
17732
17728
  expected: "(boolean | undefined)",
17733
17729
  value: input.writeOnly
17730
+ }), "string" === input.type || _report(_exceptionable, {
17731
+ path: _path + ".type",
17732
+ expected: "\"string\"",
17733
+ value: input.type
17734
17734
  })].every(flag => flag); const _vo169 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
17735
17735
  path: _path + ".nullable",
17736
17736
  expected: "(boolean | undefined)",
@@ -17803,10 +17803,6 @@ class NestiaMigrateApplication {
17803
17803
  path: _path + ".maxItems",
17804
17804
  expected: "((number & Type<\"uint64\">) | undefined)",
17805
17805
  value: input.maxItems
17806
- }), "array" === input.type || _report(_exceptionable, {
17807
- path: _path + ".type",
17808
- expected: "\"array\"",
17809
- value: input.type
17810
17806
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
17811
17807
  path: _path + ".title",
17812
17808
  expected: "(string | undefined)",
@@ -17827,6 +17823,10 @@ class NestiaMigrateApplication {
17827
17823
  path: _path + ".writeOnly",
17828
17824
  expected: "(boolean | undefined)",
17829
17825
  value: input.writeOnly
17826
+ }), "array" === input.type || _report(_exceptionable, {
17827
+ path: _path + ".type",
17828
+ expected: "\"array\"",
17829
+ value: input.type
17830
17830
  })].every(flag => flag); const _vo170 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
17831
17831
  path: _path + ".nullable",
17832
17832
  expected: "(boolean | undefined)",
@@ -17871,10 +17871,6 @@ class NestiaMigrateApplication {
17871
17871
  path: _path + ".minProperties",
17872
17872
  expected: "(number | undefined)",
17873
17873
  value: input.minProperties
17874
- }), "object" === input.type || _report(_exceptionable, {
17875
- path: _path + ".type",
17876
- expected: "\"object\"",
17877
- value: input.type
17878
17874
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
17879
17875
  path: _path + ".title",
17880
17876
  expected: "(string | undefined)",
@@ -17895,6 +17891,10 @@ class NestiaMigrateApplication {
17895
17891
  path: _path + ".writeOnly",
17896
17892
  expected: "(boolean | undefined)",
17897
17893
  value: input.writeOnly
17894
+ }), "object" === input.type || _report(_exceptionable, {
17895
+ path: _path + ".type",
17896
+ expected: "\"object\"",
17897
+ value: input.type
17898
17898
  })].every(flag => flag); const _vo171 = (input, _path, _exceptionable = true) => ["string" === typeof input.$ref || _report(_exceptionable, {
17899
17899
  path: _path + ".$ref",
17900
17900
  expected: "string",
@@ -17975,10 +17975,6 @@ class NestiaMigrateApplication {
17975
17975
  path: _path + "[\"default\"]",
17976
17976
  expected: "(null | undefined)",
17977
17977
  value: input["default"]
17978
- }), "null" === input.type || _report(_exceptionable, {
17979
- path: _path + ".type",
17980
- expected: "\"null\"",
17981
- value: input.type
17982
17978
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
17983
17979
  path: _path + ".title",
17984
17980
  expected: "(string | undefined)",
@@ -17999,6 +17995,10 @@ class NestiaMigrateApplication {
17999
17995
  path: _path + ".writeOnly",
18000
17996
  expected: "(boolean | undefined)",
18001
17997
  value: input.writeOnly
17998
+ }), "null" === input.type || _report(_exceptionable, {
17999
+ path: _path + ".type",
18000
+ expected: "\"null\"",
18001
+ value: input.type
18002
18002
  })].every(flag => flag); const _vo178 = (input, _path, _exceptionable = true) => [(null !== input.type || _report(_exceptionable, {
18003
18003
  path: _path + ".type",
18004
18004
  expected: "undefined",
@@ -18156,7 +18156,7 @@ class NestiaMigrateApplication {
18156
18156
  path: _path + ".name",
18157
18157
  expected: "(string | undefined)",
18158
18158
  value: input.name
18159
- }), "query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || _report(_exceptionable, {
18159
+ }), "query" === input["in"] || "path" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || _report(_exceptionable, {
18160
18160
  path: _path + "[\"in\"]",
18161
18161
  expected: "(\"cookie\" | \"header\" | \"path\" | \"query\")",
18162
18162
  value: input["in"]
@@ -19286,10 +19286,6 @@ class NestiaMigrateApplication {
19286
19286
  path: _path + "[\"enum\"]",
19287
19287
  expected: "(Array<boolean | null> | undefined)",
19288
19288
  value: input["enum"]
19289
- }), "boolean" === input.type || _report(_exceptionable, {
19290
- path: _path + ".type",
19291
- expected: "\"boolean\"",
19292
- value: input.type
19293
19289
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
19294
19290
  path: _path + ".title",
19295
19291
  expected: "(string | undefined)",
@@ -19310,6 +19306,10 @@ class NestiaMigrateApplication {
19310
19306
  path: _path + ".writeOnly",
19311
19307
  expected: "(boolean | undefined)",
19312
19308
  value: input.writeOnly
19309
+ }), "boolean" === input.type || _report(_exceptionable, {
19310
+ path: _path + ".type",
19311
+ expected: "\"boolean\"",
19312
+ value: input.type
19313
19313
  })].every(flag => flag); const _vo228 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
19314
19314
  path: _path + ".nullable",
19315
19315
  expected: "(boolean | undefined)",
@@ -19378,10 +19378,6 @@ class NestiaMigrateApplication {
19378
19378
  path: _path + ".multipleOf",
19379
19379
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
19380
19380
  value: input.multipleOf
19381
- }), "integer" === input.type || _report(_exceptionable, {
19382
- path: _path + ".type",
19383
- expected: "\"integer\"",
19384
- value: input.type
19385
19381
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
19386
19382
  path: _path + ".title",
19387
19383
  expected: "(string | undefined)",
@@ -19402,6 +19398,10 @@ class NestiaMigrateApplication {
19402
19398
  path: _path + ".writeOnly",
19403
19399
  expected: "(boolean | undefined)",
19404
19400
  value: input.writeOnly
19401
+ }), "integer" === input.type || _report(_exceptionable, {
19402
+ path: _path + ".type",
19403
+ expected: "\"integer\"",
19404
+ value: input.type
19405
19405
  })].every(flag => flag); const _vo229 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
19406
19406
  path: _path + ".nullable",
19407
19407
  expected: "(boolean | undefined)",
@@ -19446,10 +19446,6 @@ class NestiaMigrateApplication {
19446
19446
  path: _path + ".multipleOf",
19447
19447
  expected: "((number & ExclusiveMinimum<0>) | undefined)",
19448
19448
  value: input.multipleOf
19449
- }), "number" === input.type || _report(_exceptionable, {
19450
- path: _path + ".type",
19451
- expected: "\"number\"",
19452
- value: input.type
19453
19449
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
19454
19450
  path: _path + ".title",
19455
19451
  expected: "(string | undefined)",
@@ -19470,6 +19466,10 @@ class NestiaMigrateApplication {
19470
19466
  path: _path + ".writeOnly",
19471
19467
  expected: "(boolean | undefined)",
19472
19468
  value: input.writeOnly
19469
+ }), "number" === input.type || _report(_exceptionable, {
19470
+ path: _path + ".type",
19471
+ expected: "\"number\"",
19472
+ value: input.type
19473
19473
  })].every(flag => flag); const _vo230 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
19474
19474
  path: _path + ".nullable",
19475
19475
  expected: "(boolean | undefined)",
@@ -19518,10 +19518,6 @@ class NestiaMigrateApplication {
19518
19518
  path: _path + ".maxLength",
19519
19519
  expected: "((number & Type<\"uint64\">) | undefined)",
19520
19520
  value: input.maxLength
19521
- }), "string" === input.type || _report(_exceptionable, {
19522
- path: _path + ".type",
19523
- expected: "\"string\"",
19524
- value: input.type
19525
19521
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
19526
19522
  path: _path + ".title",
19527
19523
  expected: "(string | undefined)",
@@ -19542,6 +19538,10 @@ class NestiaMigrateApplication {
19542
19538
  path: _path + ".writeOnly",
19543
19539
  expected: "(boolean | undefined)",
19544
19540
  value: input.writeOnly
19541
+ }), "string" === input.type || _report(_exceptionable, {
19542
+ path: _path + ".type",
19543
+ expected: "\"string\"",
19544
+ value: input.type
19545
19545
  })].every(flag => flag); const _vo231 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
19546
19546
  path: _path + ".nullable",
19547
19547
  expected: "(boolean | undefined)",
@@ -19614,10 +19614,6 @@ class NestiaMigrateApplication {
19614
19614
  path: _path + ".maxItems",
19615
19615
  expected: "((number & Type<\"uint64\">) | undefined)",
19616
19616
  value: input.maxItems
19617
- }), "array" === input.type || _report(_exceptionable, {
19618
- path: _path + ".type",
19619
- expected: "\"array\"",
19620
- value: input.type
19621
19617
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
19622
19618
  path: _path + ".title",
19623
19619
  expected: "(string | undefined)",
@@ -19638,6 +19634,10 @@ class NestiaMigrateApplication {
19638
19634
  path: _path + ".writeOnly",
19639
19635
  expected: "(boolean | undefined)",
19640
19636
  value: input.writeOnly
19637
+ }), "array" === input.type || _report(_exceptionable, {
19638
+ path: _path + ".type",
19639
+ expected: "\"array\"",
19640
+ value: input.type
19641
19641
  })].every(flag => flag); const _vo232 = (input, _path, _exceptionable = true) => [undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
19642
19642
  path: _path + ".nullable",
19643
19643
  expected: "(boolean | undefined)",
@@ -19682,10 +19682,6 @@ class NestiaMigrateApplication {
19682
19682
  path: _path + ".minProperties",
19683
19683
  expected: "(number | undefined)",
19684
19684
  value: input.minProperties
19685
- }), "object" === input.type || _report(_exceptionable, {
19686
- path: _path + ".type",
19687
- expected: "\"object\"",
19688
- value: input.type
19689
19685
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
19690
19686
  path: _path + ".title",
19691
19687
  expected: "(string | undefined)",
@@ -19706,6 +19702,10 @@ class NestiaMigrateApplication {
19706
19702
  path: _path + ".writeOnly",
19707
19703
  expected: "(boolean | undefined)",
19708
19704
  value: input.writeOnly
19705
+ }), "object" === input.type || _report(_exceptionable, {
19706
+ path: _path + ".type",
19707
+ expected: "\"object\"",
19708
+ value: input.type
19709
19709
  })].every(flag => flag); const _vo233 = (input, _path, _exceptionable = true) => ["string" === typeof input.$ref || _report(_exceptionable, {
19710
19710
  path: _path + ".$ref",
19711
19711
  expected: "string",
@@ -19786,10 +19786,6 @@ class NestiaMigrateApplication {
19786
19786
  path: _path + "[\"default\"]",
19787
19787
  expected: "(null | undefined)",
19788
19788
  value: input["default"]
19789
- }), "null" === input.type || _report(_exceptionable, {
19790
- path: _path + ".type",
19791
- expected: "\"null\"",
19792
- value: input.type
19793
19789
  }), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
19794
19790
  path: _path + ".title",
19795
19791
  expected: "(string | undefined)",
@@ -19810,6 +19806,10 @@ class NestiaMigrateApplication {
19810
19806
  path: _path + ".writeOnly",
19811
19807
  expected: "(boolean | undefined)",
19812
19808
  value: input.writeOnly
19809
+ }), "null" === input.type || _report(_exceptionable, {
19810
+ path: _path + ".type",
19811
+ expected: "\"null\"",
19812
+ value: input.type
19813
19813
  })].every(flag => flag); const _vo240 = (input, _path, _exceptionable = true) => [(null !== input.type || _report(_exceptionable, {
19814
19814
  path: _path + ".type",
19815
19815
  expected: "undefined",
@@ -19975,7 +19975,7 @@ class NestiaMigrateApplication {
19975
19975
  path: _path + ".name",
19976
19976
  expected: "(string | undefined)",
19977
19977
  value: input.name
19978
- }), "query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || "querystring" === input["in"] || _report(_exceptionable, {
19978
+ }), "query" === input["in"] || "path" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "querystring" === input["in"] || _report(_exceptionable, {
19979
19979
  path: _path + "[\"in\"]",
19980
19980
  expected: "(\"cookie\" | \"header\" | \"path\" | \"query\" | \"querystring\")",
19981
19981
  value: input["in"]