@nestia/migrate 11.0.0-dev.20260313-2 → 11.0.0-dev.20260313-4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/NestiaMigrateApplication.js +340 -340
- package/lib/bundles/NEST_TEMPLATE.js +1 -1
- package/lib/bundles/NEST_TEMPLATE.js.map +1 -1
- package/lib/bundles/SDK_TEMPLATE.js +1 -1
- package/lib/bundles/SDK_TEMPLATE.js.map +1 -1
- package/lib/index.mjs +403 -403
- package/package.json +1 -1
- package/src/bundles/NEST_TEMPLATE.ts +1 -1
- package/src/bundles/SDK_TEMPLATE.ts +1 -1
package/lib/index.mjs
CHANGED
|
@@ -50,7 +50,7 @@ const NEST_TEMPLATE = {
|
|
|
50
50
|
LICENSE: 'MIT License\r\n\r\nCopyright (c) 2022 Jeongho Nam\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the "Software"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n',
|
|
51
51
|
"nest-cli.json": '{\r\n "$schema": "https://json.schemastore.org/nest-cli",\r\n "collection": "@nestjs/schematics",\r\n "sourceRoot": "src",\r\n "entryFile": "executable/server",\r\n "compilerOptions": {\r\n "deleteOutDir": true\r\n }\r\n}\r\n',
|
|
52
52
|
"nestia.config.ts": '// nestia configuration file\r\nimport type sdk from "@nestia/sdk";\r\nimport { NestFactory } from "@nestjs/core";\r\n\r\nimport { MyModule } from "./src/MyModule";\r\n\r\nconst NESTIA_CONFIG: sdk.INestiaConfig = {\r\n input: () => NestFactory.create(MyModule),\r\n output: "src/api",\r\n swagger: {\r\n output: "packages/api/swagger.json",\r\n servers: [\r\n {\r\n url: "http://localhost:37001",\r\n description: "Local Server",\r\n },\r\n ],\r\n beautify: true,\r\n },\r\n distribute: "packages/api",\r\n keyword: true,\r\n simulate: true,\r\n primitive: false,\r\n};\r\nexport default NESTIA_CONFIG;\r\n',
|
|
53
|
-
"package.json": '{\n "private": true,\n "name": "@ORGANIZATION/PROJECT",\n "version": "0.1.0",\n "description": "Starter kit of Nestia",\n "main": "lib/index.js",\n "scripts": {\n "benchmark": "node bin/test/benchmark",\n "test": "node bin/test",\n "test:webpack": "npm run webpack && node bin/test/webpack.js",\n "------------------------BUILDS------------------------": "",\n "build": "npm run build:sdk && npm run build:main && npm run build:test",\n "build:api": "rimraf packages/api/lib && nestia all && rimraf packages/api/lib && tsc -p packages/api/tsconfig.json && rollup -c packages/api/rollup.config.js",\n "build:main": "rimraf lib && tsc",\n "build:sdk": "rimraf src/api/functional && nestia sdk",\n "build:swagger": "npx nestia swagger",\n "build:test": "rimraf bin && tsc -p test/tsconfig.json",\n "dev": "npm run build:test -- --watch",\n "eslint": "eslint src && eslint test",\n "eslint:fix": "eslint --fix src && eslint --fix test",\n "prepare": "ts-patch install && ts-node build/env.ts",\n "prettier": "prettier src --write && prettier test --write",\n "------------------------WEBPACK------------------------": "",\n "webpack": "rimraf dist && webpack",\n "webpack:start": "cd dist && node dist/server",\n "webpack:test": "npm run webpack && node bin/test/webpack.js",\n "------------------------DEPLOYS------------------------": "",\n "package:api": "npm run build:api && cd packages/api && npm publish",\n "start": "node lib/executable/server",\n "start:dev": "nest start --watch",\n "start:swagger": "ts-node src/executable/swagger.ts"\n },\n "repository": {\n "type": "git",\n "url": "https://github.com/samchon/nestia-start"\n },\n "keywords": [\n "nestia",\n "template",\n "boilerplate"\n ],\n "author": "AUTHOR",\n "license": "MIT",\n "bugs": {\n "url": "https://github.com/samchon/nestia-start/issues"\n },\n "homepage": "https://github.com/samchon/nestia-start#readme",\n "devDependencies": {\n "@autobe/interface": "^0.10.6",\n "@nestia/benchmark": "^11.0.0-dev.20260313",\n "@nestia/e2e": "^11.0.0-dev.20260313",\n "@nestjs/cli": "^11.0.16",\n "@rollup/plugin-terser": "^0.4.4",\n "@rollup/plugin-typescript": "^11.1.6",\n "@trivago/prettier-plugin-sort-imports": "^4.3.0",\n "@types/cli": "^0.11.21",\n "@types/cli-progress": "^3.11.5",\n "@types/express": "^4.17.21",\n "@types/inquirer": "^8.2.5",\n "@types/node": "^18.11.0",\n "@types/uuid": "^8.3.4",\n "@typescript-eslint/eslint-plugin": "^8.1.0",\n "@typescript-eslint/parser": "^8.1.0",\n "chalk": "^4.1.2",\n "cli": "^1.0.1",\n "cli-progress": "^3.12.0",\n "copy-webpack-plugin": "^11.0.0",\n "eslint-plugin-deprecation": "^3.0.0",\n "express": "^4.18.2",\n "nestia": "^11.0.0-dev.20260313",\n "prettier": "^3.2.4",\n "prettier-plugin-prisma": "^5.0.0",\n "rimraf": "^3.0.2",\n "rollup": "^4.18.0",\n "source-map-support": "^0.5.21",\n "swagger-ui-express": "^5.0.0",\n "ts-loader": "^9.5.1",\n "ts-node": "^10.9.1",\n "ts-patch": "^3.3.0",\n "typescript": "~5.9.3",\n "typescript-transform-paths": "^3.5.6",\n "webpack": "^5.89.0",\n "webpack-cli": "^5.1.4",\n "write-file-webpack-plugin": "^4.5.1"\n },\n "dependencies": {\n "@nestia/core": "^11.0.0-dev.20260313",\n "@nestia/fetcher": "^11.0.0-dev.20260313",\n "@nestia/sdk": "^11.0.0-dev.20260313",\n "@nestjs/common": "^11.1.12",\n "@nestjs/core": "^11.1.12",\n "@nestjs/platform-express": "^11.1.12",\n "commander": "10.0.0",\n "dotenv": "^16.3.1",\n "dotenv-expand": "^10.0.0",\n "inquirer": "8.2.5",\n "serialize-error": "^4.1.0",\n "tgrid": "^1.1.0",\n "tstl": "^3.0.0",\n "typia": "^11.0.3",\n "uuid": "^9.0.0"\n },\n "stackblitz": {\n "startCommand": "npm run prepare && npm run build:test && npm run test -- --simultaneous 1"\n }\n}',
|
|
53
|
+
"package.json": '{\n "private": true,\n "name": "@ORGANIZATION/PROJECT",\n "version": "0.1.0",\n "description": "Starter kit of Nestia",\n "main": "lib/index.js",\n "scripts": {\n "benchmark": "node bin/test/benchmark",\n "test": "node bin/test",\n "test:webpack": "npm run webpack && node bin/test/webpack.js",\n "------------------------BUILDS------------------------": "",\n "build": "npm run build:sdk && npm run build:main && npm run build:test",\n "build:api": "rimraf packages/api/lib && nestia all && rimraf packages/api/lib && tsc -p packages/api/tsconfig.json && rollup -c packages/api/rollup.config.js",\n "build:main": "rimraf lib && tsc",\n "build:sdk": "rimraf src/api/functional && nestia sdk",\n "build:swagger": "npx nestia swagger",\n "build:test": "rimraf bin && tsc -p test/tsconfig.json",\n "dev": "npm run build:test -- --watch",\n "eslint": "eslint src && eslint test",\n "eslint:fix": "eslint --fix src && eslint --fix test",\n "prepare": "ts-patch install && ts-node build/env.ts",\n "prettier": "prettier src --write && prettier test --write",\n "------------------------WEBPACK------------------------": "",\n "webpack": "rimraf dist && webpack",\n "webpack:start": "cd dist && node dist/server",\n "webpack:test": "npm run webpack && node bin/test/webpack.js",\n "------------------------DEPLOYS------------------------": "",\n "package:api": "npm run build:api && cd packages/api && npm publish",\n "start": "node lib/executable/server",\n "start:dev": "nest start --watch",\n "start:swagger": "ts-node src/executable/swagger.ts"\n },\n "repository": {\n "type": "git",\n "url": "https://github.com/samchon/nestia-start"\n },\n "keywords": [\n "nestia",\n "template",\n "boilerplate"\n ],\n "author": "AUTHOR",\n "license": "MIT",\n "bugs": {\n "url": "https://github.com/samchon/nestia-start/issues"\n },\n "homepage": "https://github.com/samchon/nestia-start#readme",\n "devDependencies": {\n "@autobe/interface": "^0.10.6",\n "@nestia/benchmark": "^11.0.0-dev.20260313-3",\n "@nestia/e2e": "^11.0.0-dev.20260313-3",\n "@nestjs/cli": "^11.0.16",\n "@rollup/plugin-terser": "^0.4.4",\n "@rollup/plugin-typescript": "^11.1.6",\n "@trivago/prettier-plugin-sort-imports": "^4.3.0",\n "@types/cli": "^0.11.21",\n "@types/cli-progress": "^3.11.5",\n "@types/express": "^4.17.21",\n "@types/inquirer": "^8.2.5",\n "@types/node": "^18.11.0",\n "@types/uuid": "^8.3.4",\n "@typescript-eslint/eslint-plugin": "^8.1.0",\n "@typescript-eslint/parser": "^8.1.0",\n "chalk": "^4.1.2",\n "cli": "^1.0.1",\n "cli-progress": "^3.12.0",\n "copy-webpack-plugin": "^11.0.0",\n "eslint-plugin-deprecation": "^3.0.0",\n "express": "^4.18.2",\n "nestia": "^11.0.0-dev.20260313-3",\n "prettier": "^3.2.4",\n "prettier-plugin-prisma": "^5.0.0",\n "rimraf": "^3.0.2",\n "rollup": "^4.18.0",\n "source-map-support": "^0.5.21",\n "swagger-ui-express": "^5.0.0",\n "ts-loader": "^9.5.1",\n "ts-node": "^10.9.1",\n "ts-patch": "^3.3.0",\n "typescript": "~5.9.3",\n "typescript-transform-paths": "^3.5.6",\n "webpack": "^5.89.0",\n "webpack-cli": "^5.1.4",\n "write-file-webpack-plugin": "^4.5.1"\n },\n "dependencies": {\n "@nestia/core": "^11.0.0-dev.20260313-3",\n "@nestia/fetcher": "^11.0.0-dev.20260313-3",\n "@nestia/sdk": "^11.0.0-dev.20260313-3",\n "@nestjs/common": "^11.1.12",\n "@nestjs/core": "^11.1.12",\n "@nestjs/platform-express": "^11.1.12",\n "commander": "10.0.0",\n "dotenv": "^16.3.1",\n "dotenv-expand": "^10.0.0",\n "inquirer": "8.2.5",\n "serialize-error": "^4.1.0",\n "tgrid": "^1.1.0",\n "tstl": "^3.0.0",\n "typia": "^11.0.3",\n "uuid": "^9.0.0"\n },\n "stackblitz": {\n "startCommand": "npm run prepare && npm run build:test && npm run test -- --simultaneous 1"\n }\n}',
|
|
54
54
|
"packages/api/.gitignore": "lib/\r\nnode_modules/\r\n\r\nswagger.json\r\nopenai.json",
|
|
55
55
|
"packages/api/LICENSE": 'MIT License\r\n\r\nCopyright (c) 2021 ORGANIZATION\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the "Software"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.',
|
|
56
56
|
"packages/api/package.json": '{\r\n "name": "@ORGANIZATION/PROJECT-api",\r\n "version": "0.1.0",\r\n "description": "SDK library generated by Nestia",\r\n "main": "lib/index.js",\r\n "module": "lib/index.mjs",\r\n "typings": "lib/index.d.ts",\r\n "repository": {\r\n "type": "git",\r\n "url": "https://github.com/samchon/nestia"\r\n },\r\n "author": "Jeongho Nam",\r\n "license": "MIT",\r\n "bugs": {\r\n "url": "https://github.com/samchon/nestia/issues"\r\n },\r\n "homepage": "https://nestia.io",\r\n "files": [\r\n "lib",\r\n "package.json",\r\n "swagger.json",\r\n "openai.json",\r\n "README.md"\r\n ],\r\n "dependencies": {\r\n "@nestia/fetcher": "^10.0.2",\r\n "tgrid": "^1.2.1",\r\n "typia": "^11.0.3"\r\n }\r\n}',
|
|
@@ -94,7 +94,7 @@ const SDK_TEMPLATE = {
|
|
|
94
94
|
".vscode/settings.json": '{\r\n "editor.tabSize": 2,\r\n "editor.formatOnSave": true,\r\n "[javascript][typescript]": {\r\n "editor.defaultFormatter": "esbenp.prettier-vscode",\r\n "editor.codeActionsOnSave": {\r\n "source.fixAll.eslint": "explicit"\r\n },\r\n },\r\n}',
|
|
95
95
|
"hello.js": 'function print(command, description) {\r\n return console.log(`\\x1b[1m${command}\\x1b[2m: ${description}\\x1b[0m`);\r\n}\r\n\r\nconsole.log("-----------------------------------------");\r\nconsole.log("\\x1b[7mGenerated by \\x1b[2m@nestia/editor\\x1b[0m");\r\nconsole.log("");\r\nconsole.log(" - \\x1b[36mhttps://nestia.io/docs/editor\\x1b[0m");\r\nconsole.log(" - \\x1b[36mhttps://github.com/samchon/nestia\\x1b[0m");\r\nconsole.log("-----------------------------------------");\r\n\r\nprint("npm run start", "Run only test/start.ts");\r\nprint("npm run test", "Run every test/features/**/*.ts files");\r\nprint("npm run test:simulate", "Test with mockup simulator");\r\n',
|
|
96
96
|
LICENSE: 'MIT License\r\n\r\nCopyright (c) 2024 Jeongho Nam\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the "Software"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in all\r\ncopies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\r\nSOFTWARE.\r\n',
|
|
97
|
-
"package.json": '{\n "name": "@ORGANIZATION/PROJECT-api",\n "version": "0.1.0",\n "description": "SDK library generated by Nestia",\n "main": "lib/index.js",\n "module": "lib/index.mjs",\n "typings": "lib/index.d.ts",\n "scripts": {\n "build": "rimraf lib && tsc && rollup -c",\n "build:test": "rimraf bin && tsc --project test/tsconfig.json",\n "deploy": "npm run build && npm publish",\n "dev": "npm run build:test -- --watch",\n "hello": "node hello",\n "prepare": "ts-patch install && typia patch",\n "start": "ts-node test/start.ts",\n "swagger": "ts-node test/swagger.ts",\n "test": "ts-node test/index.ts",\n "test:simulate": "ts-node test/index.ts --simulate true",\n "test:manual": "ts-node test/manual.ts"\n },\n "repository": {\n "type": "git",\n "url": "https://github.com/samchon/nestia"\n },\n "author": "Jeongho Nam",\n "license": "MIT",\n "bugs": {\n "url": "https://github.com/samchon/nestia/issues"\n },\n "homepage": "https://nestia.io",\n "files": [\n "lib",\n "swagger.json",\n "package.json",\n "README.md"\n ],\n "dependencies": {\n "@nestia/fetcher": "^11.0.0-dev.20260313",\n "tgrid": "^1.2.1",\n "typia": "^11.0.3"\n },\n "devDependencies": {\n "@nestia/e2e": "^11.0.0-dev.20260313",\n "@rollup/plugin-terser": "^0.4.4",\n "@rollup/plugin-typescript": "^11.1.6",\n "@trivago/prettier-plugin-sort-imports": "^4.3.0",\n "@types/express": "^4.17.21",\n "@types/inquirer": "8.2.5",\n "@types/swagger-ui-express": "^4.1.6",\n "chalk": "4.1.2",\n "commander": "^10.0.0",\n "express": "^4.19.2",\n "inquirer": "8.2.5",\n "prettier": "^3.2.5",\n "rimraf": "^5.0.5",\n "rollup": "^4.13.2",\n "swagger-ui-express": "^5.0.0",\n "ts-node": "^10.9.2",\n "ts-patch": "^3.3.0",\n "typescript": "~5.9.3",\n "typescript-transform-paths": "^3.5.6"\n }\n}',
|
|
97
|
+
"package.json": '{\n "name": "@ORGANIZATION/PROJECT-api",\n "version": "0.1.0",\n "description": "SDK library generated by Nestia",\n "main": "lib/index.js",\n "module": "lib/index.mjs",\n "typings": "lib/index.d.ts",\n "scripts": {\n "build": "rimraf lib && tsc && rollup -c",\n "build:test": "rimraf bin && tsc --project test/tsconfig.json",\n "deploy": "npm run build && npm publish",\n "dev": "npm run build:test -- --watch",\n "hello": "node hello",\n "prepare": "ts-patch install && typia patch",\n "start": "ts-node test/start.ts",\n "swagger": "ts-node test/swagger.ts",\n "test": "ts-node test/index.ts",\n "test:simulate": "ts-node test/index.ts --simulate true",\n "test:manual": "ts-node test/manual.ts"\n },\n "repository": {\n "type": "git",\n "url": "https://github.com/samchon/nestia"\n },\n "author": "Jeongho Nam",\n "license": "MIT",\n "bugs": {\n "url": "https://github.com/samchon/nestia/issues"\n },\n "homepage": "https://nestia.io",\n "files": [\n "lib",\n "swagger.json",\n "package.json",\n "README.md"\n ],\n "dependencies": {\n "@nestia/fetcher": "^11.0.0-dev.20260313-3",\n "tgrid": "^1.2.1",\n "typia": "^11.0.3"\n },\n "devDependencies": {\n "@nestia/e2e": "^11.0.0-dev.20260313-3",\n "@rollup/plugin-terser": "^0.4.4",\n "@rollup/plugin-typescript": "^11.1.6",\n "@trivago/prettier-plugin-sort-imports": "^4.3.0",\n "@types/express": "^4.17.21",\n "@types/inquirer": "8.2.5",\n "@types/swagger-ui-express": "^4.1.6",\n "chalk": "4.1.2",\n "commander": "^10.0.0",\n "express": "^4.19.2",\n "inquirer": "8.2.5",\n "prettier": "^3.2.5",\n "rimraf": "^5.0.5",\n "rollup": "^4.13.2",\n "swagger-ui-express": "^5.0.0",\n "ts-node": "^10.9.2",\n "ts-patch": "^3.3.0",\n "typescript": "~5.9.3",\n "typescript-transform-paths": "^3.5.6"\n }\n}',
|
|
98
98
|
"prettier.config.js": 'module.exports = {\r\n // DEFAULT CONFIGURATIONS\r\n parser: "typescript",\r\n printWidth: 80,\r\n semi: true,\r\n tabWidth: 2,\r\n trailingComma: "all",\r\n\r\n // PLUG-IN CONFIGURATIONS\r\n plugins: ["@trivago/prettier-plugin-sort-imports"],\r\n importOrder: ["<THIRD_PARTY_MODULES>", "^[./]"],\r\n importOrderSeparation: true,\r\n importOrderSortSpecifiers: true,\r\n importOrderParserPlugins: ["decorators-legacy", "typescript", "jsx"],\r\n};\r\n',
|
|
99
99
|
"README.md": '# Software Development Kit\r\nThis is a SDK library generated by [`@nestia/migrate`](https://nestia.io/docs/migrate) or [`@nestia/editor`](https://nestia.io/docs/editor).\r\n\r\nWith this SDK library, you can easily and safely interact with backend server.\r\n\r\nJust import and call some API functions like gif image below:\r\n\r\n\r\n\r\n> Left is server code, and right is client code utilizing the SDK\r\n\r\n\r\n\r\n\r\n## How to Test\r\n```bash\r\nnpm install\r\nnpm start # run only "test/start.ts" file\r\nnpm run test # everything under the "test/features" directory\r\nnpm run test:simulate # "test/features" with mockup simulation mode\r\n```\r\n\r\nIf you run `npm start` command, only [test/start.ts](test/start.ts) file would be executed.\r\n\r\nOtherwise you run `npm run test` command instead, run everything in the [test/features](test/features) directory.\r\n\r\nFor reference, the [test/features](test/features) directory and E2E test functions (for each API endpoints) would be automatically composed only when you\'ve configured the "E2E test function generation mode" of the `@nestia/migrate` (or `@nestia/editor`).\r\n\r\n```bash\r\nnpm install -g @nestia/migrate\r\nnpx @nestia/migrate\r\n? Migration mode (Use arrow keys):\r\n NestJS\r\n > SDK\r\n? Swagger file location: assets/input/clickhouse.json\r\n? Output directory path: assets/output/clickhouse-sdk-manual\r\n? Mokup Simulator: true\r\n? E2E Test Functions: true\r\n```\r\n\r\n\r\n\r\n\r\n## Deploy\r\n```bash\r\nnpm install\r\nnpm run deploy\r\n```\r\n\r\nJust run `npm run deploy` command, then your SDK library would be published.\r\n\r\nBy the way, the initial package name of this template repository is `@ORGANIZATION/PROJECT-api`. I think it would better to change the word to your own organization and project name. If you\'re utilizing `VsCode`, you can do it through `Edit > Replace in Files` (*Ctrl + Shift + H*) feature.\r\n\r\n-----------\r\n\r\n> ## What [`Nestia`](https://nestia.io) is:\r\n> \r\n> \r\n> [](https://github.com/samchon/nestia/blob/master/LICENSE)\r\n> [](https://www.npmjs.com/package/@nestia/core)\r\n> [](https://www.npmjs.com/package/@nestia/core)\r\n> [](https://github.com/samchon/nestia/actions?query=workflow%3Abuild)\r\n> [](https://nestia.io/docs/)\r\n> \r\n> Nestia is a set of helper libraries for NestJS, supporting below features:\r\n> \r\n> - `@nestia/core`: Super-fast decorators\r\n> - `@nestia/sdk`:\r\n> - Swagger generator evolved than ever\r\n> - SDK library generator for clients\r\n> - Mockup Simulator for client applications\r\n> - Automatic E2E test functions generator\r\n> - `@nestia/migrate`: Migration from Swagger to NestJS\r\n> - `@nestia/editor`: Online TypeScript Swagger Editor\r\n> - `nestia`: Just CLI (command line interface) tool\r\n> \r\n>> **Note**\r\n>> \r\n>> - **Only one line** required, with pure TypeScript type\r\n>> - Enhance performance **30x** up\r\n>> - Runtime validator is **20,000x faster** than `class-validator`\r\n>> - JSON serialization is **200x faster** than `class-transformer`\r\n>> - Software Development Kit\r\n>> - SDK is a collection of `fetch` functions with type definitions like [tRPC](https://> trpc.io/)\r\n>> - Mockup simulator means embedded backend simulator in SDK\r\n>> - similar with [msw](https://mswjs.io/), but fully automated',
|
|
100
100
|
"rollup.config.js": 'const typescript = require("@rollup/plugin-typescript");\r\nconst terser = require("@rollup/plugin-terser");\r\n\r\nmodule.exports = {\r\n input: "./src/index.ts",\r\n output: {\r\n dir: "lib",\r\n format: "esm",\r\n entryFileNames: "[name].mjs",\r\n sourcemap: true,\r\n },\r\n plugins: [\r\n typescript({\r\n tsconfig: "tsconfig.json",\r\n module: "ES2020",\r\n target: "ES2020",\r\n }),\r\n terser({\r\n format: {\r\n comments: "some",\r\n beautify: true,\r\n ecma: "2020",\r\n },\r\n compress: false,\r\n mangle: false,\r\n module: true,\r\n }),\r\n ],\r\n};\r\n',
|
|
@@ -1119,7 +1119,7 @@ class NestiaMigrateApplication {
|
|
|
1119
1119
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io38(value);
|
|
1120
1120
|
});
|
|
1121
1121
|
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"]);
|
|
1122
|
-
const _io39 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "
|
|
1122
|
+
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));
|
|
1123
1123
|
const _io40 = input => Object.keys(input).every(key => {
|
|
1124
1124
|
const value = input[key];
|
|
1125
1125
|
if (undefined === value) return true;
|
|
@@ -1160,12 +1160,12 @@ class NestiaMigrateApplication {
|
|
|
1160
1160
|
if (undefined === value) return true;
|
|
1161
1161
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu2(value);
|
|
1162
1162
|
});
|
|
1163
|
-
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)
|
|
1164
|
-
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)
|
|
1165
|
-
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)
|
|
1166
|
-
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)
|
|
1167
|
-
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)
|
|
1168
|
-
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)
|
|
1163
|
+
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);
|
|
1164
|
+
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);
|
|
1165
|
+
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);
|
|
1166
|
+
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);
|
|
1167
|
+
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);
|
|
1168
|
+
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);
|
|
1169
1169
|
const _io61 = input => "string" === typeof input.$ref;
|
|
1170
1170
|
const _io62 = input => Array.isArray(input["x-anyOf"]) && input["x-anyOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem));
|
|
1171
1171
|
const _io63 = input => Array.isArray(input["x-oneOf"]) && input["x-oneOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem));
|
|
@@ -1176,12 +1176,12 @@ class NestiaMigrateApplication {
|
|
|
1176
1176
|
if (undefined === value) return true;
|
|
1177
1177
|
return "object" === typeof value && null !== value && _iu12(value);
|
|
1178
1178
|
});
|
|
1179
|
-
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) && "
|
|
1180
|
-
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) && "
|
|
1181
|
-
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) && "
|
|
1182
|
-
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" ===
|
|
1183
|
-
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) && "
|
|
1184
|
-
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) && "
|
|
1179
|
+
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"];
|
|
1180
|
+
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"];
|
|
1181
|
+
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"];
|
|
1182
|
+
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"];
|
|
1183
|
+
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"];
|
|
1184
|
+
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"];
|
|
1185
1185
|
const _io73 = input => "string" === typeof input.$ref && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description);
|
|
1186
1186
|
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);
|
|
1187
1187
|
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);
|
|
@@ -1243,19 +1243,19 @@ class NestiaMigrateApplication {
|
|
|
1243
1243
|
if (undefined === value) return true;
|
|
1244
1244
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu5(value);
|
|
1245
1245
|
});
|
|
1246
|
-
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)
|
|
1247
|
-
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)
|
|
1248
|
-
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)
|
|
1249
|
-
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)
|
|
1250
|
-
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)
|
|
1251
|
-
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)
|
|
1246
|
+
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);
|
|
1247
|
+
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);
|
|
1248
|
+
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);
|
|
1249
|
+
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);
|
|
1250
|
+
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);
|
|
1251
|
+
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);
|
|
1252
1252
|
const _io112 = input => "string" === typeof input.$ref;
|
|
1253
1253
|
const _io113 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem));
|
|
1254
1254
|
const _io114 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem));
|
|
1255
1255
|
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));
|
|
1256
1256
|
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));
|
|
1257
|
-
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)
|
|
1258
|
-
const _io118 = input => (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)
|
|
1257
|
+
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);
|
|
1258
|
+
const _io118 = input => 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);
|
|
1259
1259
|
const _io119 = input => Object.keys(input).every(key => {
|
|
1260
1260
|
const value = input[key];
|
|
1261
1261
|
if (undefined === value) return true;
|
|
@@ -1287,7 +1287,7 @@ class NestiaMigrateApplication {
|
|
|
1287
1287
|
if (undefined === value) return true;
|
|
1288
1288
|
return "object" === typeof value && null !== value && _io130(value);
|
|
1289
1289
|
});
|
|
1290
|
-
const _io130 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "
|
|
1290
|
+
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));
|
|
1291
1291
|
const _io131 = input => Object.keys(input).every(key => {
|
|
1292
1292
|
const value = input[key];
|
|
1293
1293
|
if (undefined === value) return true;
|
|
@@ -1358,19 +1358,19 @@ class NestiaMigrateApplication {
|
|
|
1358
1358
|
});
|
|
1359
1359
|
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;
|
|
1360
1360
|
const _io164 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable);
|
|
1361
|
-
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)
|
|
1362
|
-
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)
|
|
1363
|
-
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)
|
|
1364
|
-
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)
|
|
1365
|
-
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)
|
|
1366
|
-
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)
|
|
1361
|
+
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);
|
|
1362
|
+
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);
|
|
1363
|
+
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);
|
|
1364
|
+
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);
|
|
1365
|
+
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);
|
|
1366
|
+
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);
|
|
1367
1367
|
const _io171 = input => "string" === typeof input.$ref;
|
|
1368
1368
|
const _io172 = input => "string" === typeof input.$recursiveRef;
|
|
1369
1369
|
const _io173 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem));
|
|
1370
1370
|
const _io174 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem));
|
|
1371
1371
|
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));
|
|
1372
1372
|
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));
|
|
1373
|
-
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)
|
|
1373
|
+
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);
|
|
1374
1374
|
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);
|
|
1375
1375
|
const _io179 = input => Object.keys(input).every(key => {
|
|
1376
1376
|
const value = input[key];
|
|
@@ -1378,7 +1378,7 @@ class NestiaMigrateApplication {
|
|
|
1378
1378
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io180(value);
|
|
1379
1379
|
});
|
|
1380
1380
|
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));
|
|
1381
|
-
const _io181 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "
|
|
1381
|
+
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));
|
|
1382
1382
|
const _io182 = input => Object.keys(input).every(key => {
|
|
1383
1383
|
const value = input[key];
|
|
1384
1384
|
if (undefined === value) return true;
|
|
@@ -1480,19 +1480,19 @@ class NestiaMigrateApplication {
|
|
|
1480
1480
|
});
|
|
1481
1481
|
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;
|
|
1482
1482
|
const _io226 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable);
|
|
1483
|
-
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)
|
|
1484
|
-
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)
|
|
1485
|
-
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)
|
|
1486
|
-
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)
|
|
1487
|
-
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)
|
|
1488
|
-
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)
|
|
1483
|
+
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);
|
|
1484
|
+
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);
|
|
1485
|
+
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);
|
|
1486
|
+
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);
|
|
1487
|
+
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);
|
|
1488
|
+
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);
|
|
1489
1489
|
const _io233 = input => "string" === typeof input.$ref;
|
|
1490
1490
|
const _io234 = input => "string" === typeof input.$recursiveRef;
|
|
1491
1491
|
const _io235 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem));
|
|
1492
1492
|
const _io236 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem));
|
|
1493
1493
|
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));
|
|
1494
1494
|
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));
|
|
1495
|
-
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)
|
|
1495
|
+
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);
|
|
1496
1496
|
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);
|
|
1497
1497
|
const _io241 = input => Object.keys(input).every(key => {
|
|
1498
1498
|
const value = input[key];
|
|
@@ -1500,7 +1500,7 @@ class NestiaMigrateApplication {
|
|
|
1500
1500
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io242(value);
|
|
1501
1501
|
});
|
|
1502
1502
|
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));
|
|
1503
|
-
const _io243 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "
|
|
1503
|
+
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));
|
|
1504
1504
|
const _io244 = input => Object.keys(input).every(key => {
|
|
1505
1505
|
const value = input[key];
|
|
1506
1506
|
if (undefined === value) return true;
|
|
@@ -3389,7 +3389,7 @@ class NestiaMigrateApplication {
|
|
|
3389
3389
|
path: _path + ".name",
|
|
3390
3390
|
expected: "(string | undefined)",
|
|
3391
3391
|
value: input.name
|
|
3392
|
-
}, _errorFactory)) && ("query" === input["in"] || "
|
|
3392
|
+
}, _errorFactory)) && ("query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || "querystring" === input["in"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3393
3393
|
method: "typia.assert",
|
|
3394
3394
|
path: _path + '["in"]',
|
|
3395
3395
|
expected: '("cookie" | "header" | "path" | "query" | "querystring")',
|
|
@@ -3950,6 +3950,11 @@ class NestiaMigrateApplication {
|
|
|
3950
3950
|
path: _path + '["enum"]',
|
|
3951
3951
|
expected: "(Array<boolean | null> | undefined)",
|
|
3952
3952
|
value: input["enum"]
|
|
3953
|
+
}, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3954
|
+
method: "typia.assert",
|
|
3955
|
+
path: _path + ".type",
|
|
3956
|
+
expected: '"boolean"',
|
|
3957
|
+
value: input.type
|
|
3953
3958
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3954
3959
|
method: "typia.assert",
|
|
3955
3960
|
path: _path + ".title",
|
|
@@ -3975,11 +3980,6 @@ class NestiaMigrateApplication {
|
|
|
3975
3980
|
path: _path + ".writeOnly",
|
|
3976
3981
|
expected: "(boolean | undefined)",
|
|
3977
3982
|
value: input.writeOnly
|
|
3978
|
-
}, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
3979
|
-
method: "typia.assert",
|
|
3980
|
-
path: _path + ".type",
|
|
3981
|
-
expected: '"boolean"',
|
|
3982
|
-
value: input.type
|
|
3983
3983
|
}, _errorFactory));
|
|
3984
3984
|
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, {
|
|
3985
3985
|
method: "typia.assert",
|
|
@@ -4051,6 +4051,11 @@ class NestiaMigrateApplication {
|
|
|
4051
4051
|
path: _path + ".multipleOf",
|
|
4052
4052
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
4053
4053
|
value: input.multipleOf
|
|
4054
|
+
}, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4055
|
+
method: "typia.assert",
|
|
4056
|
+
path: _path + ".type",
|
|
4057
|
+
expected: '"integer"',
|
|
4058
|
+
value: input.type
|
|
4054
4059
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4055
4060
|
method: "typia.assert",
|
|
4056
4061
|
path: _path + ".title",
|
|
@@ -4076,11 +4081,6 @@ class NestiaMigrateApplication {
|
|
|
4076
4081
|
path: _path + ".writeOnly",
|
|
4077
4082
|
expected: "(boolean | undefined)",
|
|
4078
4083
|
value: input.writeOnly
|
|
4079
|
-
}, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4080
|
-
method: "typia.assert",
|
|
4081
|
-
path: _path + ".type",
|
|
4082
|
-
expected: '"integer"',
|
|
4083
|
-
value: input.type
|
|
4084
4084
|
}, _errorFactory));
|
|
4085
4085
|
const _ao57 = (input, _path, _exceptionable = true) => (null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4086
4086
|
method: "typia.assert",
|
|
@@ -4132,6 +4132,11 @@ class NestiaMigrateApplication {
|
|
|
4132
4132
|
path: _path + ".multipleOf",
|
|
4133
4133
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
4134
4134
|
value: input.multipleOf
|
|
4135
|
+
}, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4136
|
+
method: "typia.assert",
|
|
4137
|
+
path: _path + ".type",
|
|
4138
|
+
expected: '"number"',
|
|
4139
|
+
value: input.type
|
|
4135
4140
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4136
4141
|
method: "typia.assert",
|
|
4137
4142
|
path: _path + ".title",
|
|
@@ -4157,11 +4162,6 @@ class NestiaMigrateApplication {
|
|
|
4157
4162
|
path: _path + ".writeOnly",
|
|
4158
4163
|
expected: "(boolean | undefined)",
|
|
4159
4164
|
value: input.writeOnly
|
|
4160
|
-
}, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4161
|
-
method: "typia.assert",
|
|
4162
|
-
path: _path + ".type",
|
|
4163
|
-
expected: '"number"',
|
|
4164
|
-
value: input.type
|
|
4165
4165
|
}, _errorFactory));
|
|
4166
4166
|
const _ao58 = (input, _path, _exceptionable = true) => (null === input["default"] || undefined === input["default"] || "string" === typeof input["default"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4167
4167
|
method: "typia.assert",
|
|
@@ -4213,6 +4213,11 @@ class NestiaMigrateApplication {
|
|
|
4213
4213
|
path: _path + ".maxLength",
|
|
4214
4214
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
4215
4215
|
value: input.maxLength
|
|
4216
|
+
}, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4217
|
+
method: "typia.assert",
|
|
4218
|
+
path: _path + ".type",
|
|
4219
|
+
expected: '"string"',
|
|
4220
|
+
value: input.type
|
|
4216
4221
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4217
4222
|
method: "typia.assert",
|
|
4218
4223
|
path: _path + ".title",
|
|
@@ -4238,11 +4243,6 @@ class NestiaMigrateApplication {
|
|
|
4238
4243
|
path: _path + ".writeOnly",
|
|
4239
4244
|
expected: "(boolean | undefined)",
|
|
4240
4245
|
value: input.writeOnly
|
|
4241
|
-
}, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4242
|
-
method: "typia.assert",
|
|
4243
|
-
path: _path + ".type",
|
|
4244
|
-
expected: '"string"',
|
|
4245
|
-
value: input.type
|
|
4246
4246
|
}, _errorFactory));
|
|
4247
4247
|
const _ao59 = (input, _path, _exceptionable = true) => (("object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4248
4248
|
method: "typia.assert",
|
|
@@ -4279,6 +4279,11 @@ class NestiaMigrateApplication {
|
|
|
4279
4279
|
path: _path + ".maxItems",
|
|
4280
4280
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
4281
4281
|
value: input.maxItems
|
|
4282
|
+
}, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4283
|
+
method: "typia.assert",
|
|
4284
|
+
path: _path + ".type",
|
|
4285
|
+
expected: '"array"',
|
|
4286
|
+
value: input.type
|
|
4282
4287
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4283
4288
|
method: "typia.assert",
|
|
4284
4289
|
path: _path + ".title",
|
|
@@ -4304,11 +4309,6 @@ class NestiaMigrateApplication {
|
|
|
4304
4309
|
path: _path + ".writeOnly",
|
|
4305
4310
|
expected: "(boolean | undefined)",
|
|
4306
4311
|
value: input.writeOnly
|
|
4307
|
-
}, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4308
|
-
method: "typia.assert",
|
|
4309
|
-
path: _path + ".type",
|
|
4310
|
-
expected: '"array"',
|
|
4311
|
-
value: input.type
|
|
4312
4312
|
}, _errorFactory));
|
|
4313
4313
|
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, {
|
|
4314
4314
|
method: "typia.assert",
|
|
@@ -4360,6 +4360,11 @@ class NestiaMigrateApplication {
|
|
|
4360
4360
|
path: _path + ".minProperties",
|
|
4361
4361
|
expected: "(number | undefined)",
|
|
4362
4362
|
value: input.minProperties
|
|
4363
|
+
}, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4364
|
+
method: "typia.assert",
|
|
4365
|
+
path: _path + ".type",
|
|
4366
|
+
expected: '"object"',
|
|
4367
|
+
value: input.type
|
|
4363
4368
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4364
4369
|
method: "typia.assert",
|
|
4365
4370
|
path: _path + ".title",
|
|
@@ -4385,11 +4390,6 @@ class NestiaMigrateApplication {
|
|
|
4385
4390
|
path: _path + ".writeOnly",
|
|
4386
4391
|
expected: "(boolean | undefined)",
|
|
4387
4392
|
value: input.writeOnly
|
|
4388
|
-
}, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4389
|
-
method: "typia.assert",
|
|
4390
|
-
path: _path + ".type",
|
|
4391
|
-
expected: '"object"',
|
|
4392
|
-
value: input.type
|
|
4393
4393
|
}, _errorFactory));
|
|
4394
4394
|
const _ao61 = (input, _path, _exceptionable = true) => "string" === typeof input.$ref || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4395
4395
|
method: "typia.assert",
|
|
@@ -4496,6 +4496,11 @@ class NestiaMigrateApplication {
|
|
|
4496
4496
|
path: _path + '["enum"]',
|
|
4497
4497
|
expected: "(Array<boolean | null> | undefined)",
|
|
4498
4498
|
value: input["enum"]
|
|
4499
|
+
}, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4500
|
+
method: "typia.assert",
|
|
4501
|
+
path: _path + ".type",
|
|
4502
|
+
expected: '"boolean"',
|
|
4503
|
+
value: input.type
|
|
4499
4504
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4500
4505
|
method: "typia.assert",
|
|
4501
4506
|
path: _path + ".title",
|
|
@@ -4521,11 +4526,6 @@ class NestiaMigrateApplication {
|
|
|
4521
4526
|
path: _path + ".writeOnly",
|
|
4522
4527
|
expected: "(boolean | undefined)",
|
|
4523
4528
|
value: input.writeOnly
|
|
4524
|
-
}, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4525
|
-
method: "typia.assert",
|
|
4526
|
-
path: _path + ".type",
|
|
4527
|
-
expected: '"boolean"',
|
|
4528
|
-
value: input.type
|
|
4529
4529
|
}, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4530
4530
|
method: "typia.assert",
|
|
4531
4531
|
path: _path + ".name",
|
|
@@ -4607,6 +4607,11 @@ class NestiaMigrateApplication {
|
|
|
4607
4607
|
path: _path + ".multipleOf",
|
|
4608
4608
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
4609
4609
|
value: input.multipleOf
|
|
4610
|
+
}, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4611
|
+
method: "typia.assert",
|
|
4612
|
+
path: _path + ".type",
|
|
4613
|
+
expected: '"integer"',
|
|
4614
|
+
value: input.type
|
|
4610
4615
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4611
4616
|
method: "typia.assert",
|
|
4612
4617
|
path: _path + ".title",
|
|
@@ -4632,11 +4637,6 @@ class NestiaMigrateApplication {
|
|
|
4632
4637
|
path: _path + ".writeOnly",
|
|
4633
4638
|
expected: "(boolean | undefined)",
|
|
4634
4639
|
value: input.writeOnly
|
|
4635
|
-
}, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4636
|
-
method: "typia.assert",
|
|
4637
|
-
path: _path + ".type",
|
|
4638
|
-
expected: '"integer"',
|
|
4639
|
-
value: input.type
|
|
4640
4640
|
}, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4641
4641
|
method: "typia.assert",
|
|
4642
4642
|
path: _path + ".name",
|
|
@@ -4698,6 +4698,11 @@ class NestiaMigrateApplication {
|
|
|
4698
4698
|
path: _path + ".multipleOf",
|
|
4699
4699
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
4700
4700
|
value: input.multipleOf
|
|
4701
|
+
}, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4702
|
+
method: "typia.assert",
|
|
4703
|
+
path: _path + ".type",
|
|
4704
|
+
expected: '"number"',
|
|
4705
|
+
value: input.type
|
|
4701
4706
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4702
4707
|
method: "typia.assert",
|
|
4703
4708
|
path: _path + ".title",
|
|
@@ -4723,11 +4728,6 @@ class NestiaMigrateApplication {
|
|
|
4723
4728
|
path: _path + ".writeOnly",
|
|
4724
4729
|
expected: "(boolean | undefined)",
|
|
4725
4730
|
value: input.writeOnly
|
|
4726
|
-
}, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4727
|
-
method: "typia.assert",
|
|
4728
|
-
path: _path + ".type",
|
|
4729
|
-
expected: '"number"',
|
|
4730
|
-
value: input.type
|
|
4731
4731
|
}, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4732
4732
|
method: "typia.assert",
|
|
4733
4733
|
path: _path + ".name",
|
|
@@ -4789,6 +4789,11 @@ class NestiaMigrateApplication {
|
|
|
4789
4789
|
path: _path + ".maxLength",
|
|
4790
4790
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
4791
4791
|
value: input.maxLength
|
|
4792
|
+
}, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4793
|
+
method: "typia.assert",
|
|
4794
|
+
path: _path + ".type",
|
|
4795
|
+
expected: '"string"',
|
|
4796
|
+
value: input.type
|
|
4792
4797
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4793
4798
|
method: "typia.assert",
|
|
4794
4799
|
path: _path + ".title",
|
|
@@ -4814,11 +4819,6 @@ class NestiaMigrateApplication {
|
|
|
4814
4819
|
path: _path + ".writeOnly",
|
|
4815
4820
|
expected: "(boolean | undefined)",
|
|
4816
4821
|
value: input.writeOnly
|
|
4817
|
-
}, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4818
|
-
method: "typia.assert",
|
|
4819
|
-
path: _path + ".type",
|
|
4820
|
-
expected: '"string"',
|
|
4821
|
-
value: input.type
|
|
4822
4822
|
}, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4823
4823
|
method: "typia.assert",
|
|
4824
4824
|
path: _path + ".name",
|
|
@@ -4865,6 +4865,11 @@ class NestiaMigrateApplication {
|
|
|
4865
4865
|
path: _path + ".maxItems",
|
|
4866
4866
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
4867
4867
|
value: input.maxItems
|
|
4868
|
+
}, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4869
|
+
method: "typia.assert",
|
|
4870
|
+
path: _path + ".type",
|
|
4871
|
+
expected: '"array"',
|
|
4872
|
+
value: input.type
|
|
4868
4873
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4869
4874
|
method: "typia.assert",
|
|
4870
4875
|
path: _path + ".title",
|
|
@@ -4890,11 +4895,6 @@ class NestiaMigrateApplication {
|
|
|
4890
4895
|
path: _path + ".writeOnly",
|
|
4891
4896
|
expected: "(boolean | undefined)",
|
|
4892
4897
|
value: input.writeOnly
|
|
4893
|
-
}, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4894
|
-
method: "typia.assert",
|
|
4895
|
-
path: _path + ".type",
|
|
4896
|
-
expected: '"array"',
|
|
4897
|
-
value: input.type
|
|
4898
4898
|
}, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4899
4899
|
method: "typia.assert",
|
|
4900
4900
|
path: _path + ".name",
|
|
@@ -4956,6 +4956,11 @@ class NestiaMigrateApplication {
|
|
|
4956
4956
|
path: _path + ".minProperties",
|
|
4957
4957
|
expected: "(number | undefined)",
|
|
4958
4958
|
value: input.minProperties
|
|
4959
|
+
}, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4960
|
+
method: "typia.assert",
|
|
4961
|
+
path: _path + ".type",
|
|
4962
|
+
expected: '"object"',
|
|
4963
|
+
value: input.type
|
|
4959
4964
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4960
4965
|
method: "typia.assert",
|
|
4961
4966
|
path: _path + ".title",
|
|
@@ -4981,11 +4986,6 @@ class NestiaMigrateApplication {
|
|
|
4981
4986
|
path: _path + ".writeOnly",
|
|
4982
4987
|
expected: "(boolean | undefined)",
|
|
4983
4988
|
value: input.writeOnly
|
|
4984
|
-
}, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4985
|
-
method: "typia.assert",
|
|
4986
|
-
path: _path + ".type",
|
|
4987
|
-
expected: '"object"',
|
|
4988
|
-
value: input.type
|
|
4989
4989
|
}, _errorFactory)) && ("string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
4990
4990
|
method: "typia.assert",
|
|
4991
4991
|
path: _path + ".name",
|
|
@@ -6018,6 +6018,11 @@ class NestiaMigrateApplication {
|
|
|
6018
6018
|
path: _path + '["enum"]',
|
|
6019
6019
|
expected: "(Array<boolean | null> | undefined)",
|
|
6020
6020
|
value: input["enum"]
|
|
6021
|
+
}, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6022
|
+
method: "typia.assert",
|
|
6023
|
+
path: _path + ".type",
|
|
6024
|
+
expected: '"boolean"',
|
|
6025
|
+
value: input.type
|
|
6021
6026
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6022
6027
|
method: "typia.assert",
|
|
6023
6028
|
path: _path + ".title",
|
|
@@ -6043,11 +6048,6 @@ class NestiaMigrateApplication {
|
|
|
6043
6048
|
path: _path + ".writeOnly",
|
|
6044
6049
|
expected: "(boolean | undefined)",
|
|
6045
6050
|
value: input.writeOnly
|
|
6046
|
-
}, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6047
|
-
method: "typia.assert",
|
|
6048
|
-
path: _path + ".type",
|
|
6049
|
-
expected: '"boolean"',
|
|
6050
|
-
value: input.type
|
|
6051
6051
|
}, _errorFactory));
|
|
6052
6052
|
const _ao107 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6053
6053
|
method: "typia.assert",
|
|
@@ -6124,6 +6124,11 @@ class NestiaMigrateApplication {
|
|
|
6124
6124
|
path: _path + ".multipleOf",
|
|
6125
6125
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
6126
6126
|
value: input.multipleOf
|
|
6127
|
+
}, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6128
|
+
method: "typia.assert",
|
|
6129
|
+
path: _path + ".type",
|
|
6130
|
+
expected: '"integer"',
|
|
6131
|
+
value: input.type
|
|
6127
6132
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6128
6133
|
method: "typia.assert",
|
|
6129
6134
|
path: _path + ".title",
|
|
@@ -6149,11 +6154,6 @@ class NestiaMigrateApplication {
|
|
|
6149
6154
|
path: _path + ".writeOnly",
|
|
6150
6155
|
expected: "(boolean | undefined)",
|
|
6151
6156
|
value: input.writeOnly
|
|
6152
|
-
}, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6153
|
-
method: "typia.assert",
|
|
6154
|
-
path: _path + ".type",
|
|
6155
|
-
expected: '"integer"',
|
|
6156
|
-
value: input.type
|
|
6157
6157
|
}, _errorFactory));
|
|
6158
6158
|
const _ao108 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6159
6159
|
method: "typia.assert",
|
|
@@ -6210,6 +6210,11 @@ class NestiaMigrateApplication {
|
|
|
6210
6210
|
path: _path + ".multipleOf",
|
|
6211
6211
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
6212
6212
|
value: input.multipleOf
|
|
6213
|
+
}, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6214
|
+
method: "typia.assert",
|
|
6215
|
+
path: _path + ".type",
|
|
6216
|
+
expected: '"number"',
|
|
6217
|
+
value: input.type
|
|
6213
6218
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6214
6219
|
method: "typia.assert",
|
|
6215
6220
|
path: _path + ".title",
|
|
@@ -6235,11 +6240,6 @@ class NestiaMigrateApplication {
|
|
|
6235
6240
|
path: _path + ".writeOnly",
|
|
6236
6241
|
expected: "(boolean | undefined)",
|
|
6237
6242
|
value: input.writeOnly
|
|
6238
|
-
}, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6239
|
-
method: "typia.assert",
|
|
6240
|
-
path: _path + ".type",
|
|
6241
|
-
expected: '"number"',
|
|
6242
|
-
value: input.type
|
|
6243
6243
|
}, _errorFactory));
|
|
6244
6244
|
const _ao109 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6245
6245
|
method: "typia.assert",
|
|
@@ -6296,6 +6296,11 @@ class NestiaMigrateApplication {
|
|
|
6296
6296
|
path: _path + ".maxLength",
|
|
6297
6297
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
6298
6298
|
value: input.maxLength
|
|
6299
|
+
}, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6300
|
+
method: "typia.assert",
|
|
6301
|
+
path: _path + ".type",
|
|
6302
|
+
expected: '"string"',
|
|
6303
|
+
value: input.type
|
|
6299
6304
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6300
6305
|
method: "typia.assert",
|
|
6301
6306
|
path: _path + ".title",
|
|
@@ -6321,11 +6326,6 @@ class NestiaMigrateApplication {
|
|
|
6321
6326
|
path: _path + ".writeOnly",
|
|
6322
6327
|
expected: "(boolean | undefined)",
|
|
6323
6328
|
value: input.writeOnly
|
|
6324
|
-
}, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6325
|
-
method: "typia.assert",
|
|
6326
|
-
path: _path + ".type",
|
|
6327
|
-
expected: '"string"',
|
|
6328
|
-
value: input.type
|
|
6329
6329
|
}, _errorFactory));
|
|
6330
6330
|
const _ao110 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6331
6331
|
method: "typia.assert",
|
|
@@ -6367,6 +6367,11 @@ class NestiaMigrateApplication {
|
|
|
6367
6367
|
path: _path + ".maxItems",
|
|
6368
6368
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
6369
6369
|
value: input.maxItems
|
|
6370
|
+
}, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6371
|
+
method: "typia.assert",
|
|
6372
|
+
path: _path + ".type",
|
|
6373
|
+
expected: '"array"',
|
|
6374
|
+
value: input.type
|
|
6370
6375
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6371
6376
|
method: "typia.assert",
|
|
6372
6377
|
path: _path + ".title",
|
|
@@ -6392,11 +6397,6 @@ class NestiaMigrateApplication {
|
|
|
6392
6397
|
path: _path + ".writeOnly",
|
|
6393
6398
|
expected: "(boolean | undefined)",
|
|
6394
6399
|
value: input.writeOnly
|
|
6395
|
-
}, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6396
|
-
method: "typia.assert",
|
|
6397
|
-
path: _path + ".type",
|
|
6398
|
-
expected: '"array"',
|
|
6399
|
-
value: input.type
|
|
6400
6400
|
}, _errorFactory));
|
|
6401
6401
|
const _ao111 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6402
6402
|
method: "typia.assert",
|
|
@@ -6453,6 +6453,11 @@ class NestiaMigrateApplication {
|
|
|
6453
6453
|
path: _path + ".minProperties",
|
|
6454
6454
|
expected: "(number | undefined)",
|
|
6455
6455
|
value: input.minProperties
|
|
6456
|
+
}, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6457
|
+
method: "typia.assert",
|
|
6458
|
+
path: _path + ".type",
|
|
6459
|
+
expected: '"object"',
|
|
6460
|
+
value: input.type
|
|
6456
6461
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6457
6462
|
method: "typia.assert",
|
|
6458
6463
|
path: _path + ".title",
|
|
@@ -6478,11 +6483,6 @@ class NestiaMigrateApplication {
|
|
|
6478
6483
|
path: _path + ".writeOnly",
|
|
6479
6484
|
expected: "(boolean | undefined)",
|
|
6480
6485
|
value: input.writeOnly
|
|
6481
|
-
}, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6482
|
-
method: "typia.assert",
|
|
6483
|
-
path: _path + ".type",
|
|
6484
|
-
expected: '"object"',
|
|
6485
|
-
value: input.type
|
|
6486
6486
|
}, _errorFactory));
|
|
6487
6487
|
const _ao112 = (input, _path, _exceptionable = true) => "string" === typeof input.$ref || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6488
6488
|
method: "typia.assert",
|
|
@@ -6584,6 +6584,11 @@ class NestiaMigrateApplication {
|
|
|
6584
6584
|
path: _path + '["default"]',
|
|
6585
6585
|
expected: "(null | undefined)",
|
|
6586
6586
|
value: input["default"]
|
|
6587
|
+
}, _errorFactory)) && ("null" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6588
|
+
method: "typia.assert",
|
|
6589
|
+
path: _path + ".type",
|
|
6590
|
+
expected: '"null"',
|
|
6591
|
+
value: input.type
|
|
6587
6592
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6588
6593
|
method: "typia.assert",
|
|
6589
6594
|
path: _path + ".title",
|
|
@@ -6609,13 +6614,18 @@ class NestiaMigrateApplication {
|
|
|
6609
6614
|
path: _path + ".writeOnly",
|
|
6610
6615
|
expected: "(boolean | undefined)",
|
|
6611
6616
|
value: input.writeOnly
|
|
6612
|
-
}, _errorFactory))
|
|
6617
|
+
}, _errorFactory));
|
|
6618
|
+
const _ao118 = (input, _path, _exceptionable = true) => (null !== input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6613
6619
|
method: "typia.assert",
|
|
6614
6620
|
path: _path + ".type",
|
|
6615
|
-
expected:
|
|
6621
|
+
expected: "undefined",
|
|
6616
6622
|
value: input.type
|
|
6617
|
-
}, _errorFactory))
|
|
6618
|
-
|
|
6623
|
+
}, _errorFactory)) && (undefined === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6624
|
+
method: "typia.assert",
|
|
6625
|
+
path: _path + ".type",
|
|
6626
|
+
expected: "undefined",
|
|
6627
|
+
value: input.type
|
|
6628
|
+
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6619
6629
|
method: "typia.assert",
|
|
6620
6630
|
path: _path + ".title",
|
|
6621
6631
|
expected: "(string | undefined)",
|
|
@@ -6640,17 +6650,7 @@ class NestiaMigrateApplication {
|
|
|
6640
6650
|
path: _path + ".writeOnly",
|
|
6641
6651
|
expected: "(boolean | undefined)",
|
|
6642
6652
|
value: input.writeOnly
|
|
6643
|
-
}, _errorFactory))
|
|
6644
|
-
method: "typia.assert",
|
|
6645
|
-
path: _path + ".type",
|
|
6646
|
-
expected: "undefined",
|
|
6647
|
-
value: input.type
|
|
6648
|
-
}, _errorFactory)) && (undefined === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6649
|
-
method: "typia.assert",
|
|
6650
|
-
path: _path + ".type",
|
|
6651
|
-
expected: "undefined",
|
|
6652
|
-
value: input.type
|
|
6653
|
-
}, _errorFactory)));
|
|
6653
|
+
}, _errorFactory));
|
|
6654
6654
|
const _ao119 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
6655
6655
|
const value = input[key];
|
|
6656
6656
|
if (undefined === value) return true;
|
|
@@ -6842,7 +6842,7 @@ class NestiaMigrateApplication {
|
|
|
6842
6842
|
path: _path + ".name",
|
|
6843
6843
|
expected: "(string | undefined)",
|
|
6844
6844
|
value: input.name
|
|
6845
|
-
}, _errorFactory)) && ("query" === input["in"] || "
|
|
6845
|
+
}, _errorFactory)) && ("query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
6846
6846
|
method: "typia.assert",
|
|
6847
6847
|
path: _path + '["in"]',
|
|
6848
6848
|
expected: '("cookie" | "header" | "path" | "query")',
|
|
@@ -8218,6 +8218,11 @@ class NestiaMigrateApplication {
|
|
|
8218
8218
|
path: _path + '["enum"]',
|
|
8219
8219
|
expected: "(Array<boolean | null> | undefined)",
|
|
8220
8220
|
value: input["enum"]
|
|
8221
|
+
}, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8222
|
+
method: "typia.assert",
|
|
8223
|
+
path: _path + ".type",
|
|
8224
|
+
expected: '"boolean"',
|
|
8225
|
+
value: input.type
|
|
8221
8226
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8222
8227
|
method: "typia.assert",
|
|
8223
8228
|
path: _path + ".title",
|
|
@@ -8243,11 +8248,6 @@ class NestiaMigrateApplication {
|
|
|
8243
8248
|
path: _path + ".writeOnly",
|
|
8244
8249
|
expected: "(boolean | undefined)",
|
|
8245
8250
|
value: input.writeOnly
|
|
8246
|
-
}, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8247
|
-
method: "typia.assert",
|
|
8248
|
-
path: _path + ".type",
|
|
8249
|
-
expected: '"boolean"',
|
|
8250
|
-
value: input.type
|
|
8251
8251
|
}, _errorFactory));
|
|
8252
8252
|
const _ao166 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8253
8253
|
method: "typia.assert",
|
|
@@ -8334,6 +8334,11 @@ class NestiaMigrateApplication {
|
|
|
8334
8334
|
path: _path + ".multipleOf",
|
|
8335
8335
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
8336
8336
|
value: input.multipleOf
|
|
8337
|
+
}, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8338
|
+
method: "typia.assert",
|
|
8339
|
+
path: _path + ".type",
|
|
8340
|
+
expected: '"integer"',
|
|
8341
|
+
value: input.type
|
|
8337
8342
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8338
8343
|
method: "typia.assert",
|
|
8339
8344
|
path: _path + ".title",
|
|
@@ -8359,11 +8364,6 @@ class NestiaMigrateApplication {
|
|
|
8359
8364
|
path: _path + ".writeOnly",
|
|
8360
8365
|
expected: "(boolean | undefined)",
|
|
8361
8366
|
value: input.writeOnly
|
|
8362
|
-
}, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8363
|
-
method: "typia.assert",
|
|
8364
|
-
path: _path + ".type",
|
|
8365
|
-
expected: '"integer"',
|
|
8366
|
-
value: input.type
|
|
8367
8367
|
}, _errorFactory));
|
|
8368
8368
|
const _ao167 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8369
8369
|
method: "typia.assert",
|
|
@@ -8420,6 +8420,11 @@ class NestiaMigrateApplication {
|
|
|
8420
8420
|
path: _path + ".multipleOf",
|
|
8421
8421
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
8422
8422
|
value: input.multipleOf
|
|
8423
|
+
}, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8424
|
+
method: "typia.assert",
|
|
8425
|
+
path: _path + ".type",
|
|
8426
|
+
expected: '"number"',
|
|
8427
|
+
value: input.type
|
|
8423
8428
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8424
8429
|
method: "typia.assert",
|
|
8425
8430
|
path: _path + ".title",
|
|
@@ -8445,11 +8450,6 @@ class NestiaMigrateApplication {
|
|
|
8445
8450
|
path: _path + ".writeOnly",
|
|
8446
8451
|
expected: "(boolean | undefined)",
|
|
8447
8452
|
value: input.writeOnly
|
|
8448
|
-
}, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8449
|
-
method: "typia.assert",
|
|
8450
|
-
path: _path + ".type",
|
|
8451
|
-
expected: '"number"',
|
|
8452
|
-
value: input.type
|
|
8453
8453
|
}, _errorFactory));
|
|
8454
8454
|
const _ao168 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8455
8455
|
method: "typia.assert",
|
|
@@ -8511,6 +8511,11 @@ class NestiaMigrateApplication {
|
|
|
8511
8511
|
path: _path + ".maxLength",
|
|
8512
8512
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
8513
8513
|
value: input.maxLength
|
|
8514
|
+
}, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8515
|
+
method: "typia.assert",
|
|
8516
|
+
path: _path + ".type",
|
|
8517
|
+
expected: '"string"',
|
|
8518
|
+
value: input.type
|
|
8514
8519
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8515
8520
|
method: "typia.assert",
|
|
8516
8521
|
path: _path + ".title",
|
|
@@ -8536,11 +8541,6 @@ class NestiaMigrateApplication {
|
|
|
8536
8541
|
path: _path + ".writeOnly",
|
|
8537
8542
|
expected: "(boolean | undefined)",
|
|
8538
8543
|
value: input.writeOnly
|
|
8539
|
-
}, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8540
|
-
method: "typia.assert",
|
|
8541
|
-
path: _path + ".type",
|
|
8542
|
-
expected: '"string"',
|
|
8543
|
-
value: input.type
|
|
8544
8544
|
}, _errorFactory));
|
|
8545
8545
|
const _ao169 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8546
8546
|
method: "typia.assert",
|
|
@@ -8632,6 +8632,11 @@ class NestiaMigrateApplication {
|
|
|
8632
8632
|
path: _path + ".maxItems",
|
|
8633
8633
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
8634
8634
|
value: input.maxItems
|
|
8635
|
+
}, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8636
|
+
method: "typia.assert",
|
|
8637
|
+
path: _path + ".type",
|
|
8638
|
+
expected: '"array"',
|
|
8639
|
+
value: input.type
|
|
8635
8640
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8636
8641
|
method: "typia.assert",
|
|
8637
8642
|
path: _path + ".title",
|
|
@@ -8657,11 +8662,6 @@ class NestiaMigrateApplication {
|
|
|
8657
8662
|
path: _path + ".writeOnly",
|
|
8658
8663
|
expected: "(boolean | undefined)",
|
|
8659
8664
|
value: input.writeOnly
|
|
8660
|
-
}, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8661
|
-
method: "typia.assert",
|
|
8662
|
-
path: _path + ".type",
|
|
8663
|
-
expected: '"array"',
|
|
8664
|
-
value: input.type
|
|
8665
8665
|
}, _errorFactory));
|
|
8666
8666
|
const _ao170 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8667
8667
|
method: "typia.assert",
|
|
@@ -8718,6 +8718,11 @@ class NestiaMigrateApplication {
|
|
|
8718
8718
|
path: _path + ".minProperties",
|
|
8719
8719
|
expected: "(number | undefined)",
|
|
8720
8720
|
value: input.minProperties
|
|
8721
|
+
}, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8722
|
+
method: "typia.assert",
|
|
8723
|
+
path: _path + ".type",
|
|
8724
|
+
expected: '"object"',
|
|
8725
|
+
value: input.type
|
|
8721
8726
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8722
8727
|
method: "typia.assert",
|
|
8723
8728
|
path: _path + ".title",
|
|
@@ -8743,11 +8748,6 @@ class NestiaMigrateApplication {
|
|
|
8743
8748
|
path: _path + ".writeOnly",
|
|
8744
8749
|
expected: "(boolean | undefined)",
|
|
8745
8750
|
value: input.writeOnly
|
|
8746
|
-
}, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8747
|
-
method: "typia.assert",
|
|
8748
|
-
path: _path + ".type",
|
|
8749
|
-
expected: '"object"',
|
|
8750
|
-
value: input.type
|
|
8751
8751
|
}, _errorFactory));
|
|
8752
8752
|
const _ao171 = (input, _path, _exceptionable = true) => "string" === typeof input.$ref || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8753
8753
|
method: "typia.assert",
|
|
@@ -8855,6 +8855,11 @@ class NestiaMigrateApplication {
|
|
|
8855
8855
|
path: _path + '["default"]',
|
|
8856
8856
|
expected: "(null | undefined)",
|
|
8857
8857
|
value: input["default"]
|
|
8858
|
+
}, _errorFactory)) && ("null" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8859
|
+
method: "typia.assert",
|
|
8860
|
+
path: _path + ".type",
|
|
8861
|
+
expected: '"null"',
|
|
8862
|
+
value: input.type
|
|
8858
8863
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8859
8864
|
method: "typia.assert",
|
|
8860
8865
|
path: _path + ".title",
|
|
@@ -8880,11 +8885,6 @@ class NestiaMigrateApplication {
|
|
|
8880
8885
|
path: _path + ".writeOnly",
|
|
8881
8886
|
expected: "(boolean | undefined)",
|
|
8882
8887
|
value: input.writeOnly
|
|
8883
|
-
}, _errorFactory)) && ("null" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8884
|
-
method: "typia.assert",
|
|
8885
|
-
path: _path + ".type",
|
|
8886
|
-
expected: '"null"',
|
|
8887
|
-
value: input.type
|
|
8888
8888
|
}, _errorFactory));
|
|
8889
8889
|
const _ao178 = (input, _path, _exceptionable = true) => (null !== input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
8890
8890
|
method: "typia.assert",
|
|
@@ -9083,7 +9083,7 @@ class NestiaMigrateApplication {
|
|
|
9083
9083
|
path: _path + ".name",
|
|
9084
9084
|
expected: "(string | undefined)",
|
|
9085
9085
|
value: input.name
|
|
9086
|
-
}, _errorFactory)) && ("query" === input["in"] || "
|
|
9086
|
+
}, _errorFactory)) && ("query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
9087
9087
|
method: "typia.assert",
|
|
9088
9088
|
path: _path + '["in"]',
|
|
9089
9089
|
expected: '("cookie" | "header" | "path" | "query")',
|
|
@@ -10510,6 +10510,11 @@ class NestiaMigrateApplication {
|
|
|
10510
10510
|
path: _path + '["enum"]',
|
|
10511
10511
|
expected: "(Array<boolean | null> | undefined)",
|
|
10512
10512
|
value: input["enum"]
|
|
10513
|
+
}, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10514
|
+
method: "typia.assert",
|
|
10515
|
+
path: _path + ".type",
|
|
10516
|
+
expected: '"boolean"',
|
|
10517
|
+
value: input.type
|
|
10513
10518
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10514
10519
|
method: "typia.assert",
|
|
10515
10520
|
path: _path + ".title",
|
|
@@ -10535,11 +10540,6 @@ class NestiaMigrateApplication {
|
|
|
10535
10540
|
path: _path + ".writeOnly",
|
|
10536
10541
|
expected: "(boolean | undefined)",
|
|
10537
10542
|
value: input.writeOnly
|
|
10538
|
-
}, _errorFactory)) && ("boolean" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10539
|
-
method: "typia.assert",
|
|
10540
|
-
path: _path + ".type",
|
|
10541
|
-
expected: '"boolean"',
|
|
10542
|
-
value: input.type
|
|
10543
10543
|
}, _errorFactory));
|
|
10544
10544
|
const _ao228 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10545
10545
|
method: "typia.assert",
|
|
@@ -10626,6 +10626,11 @@ class NestiaMigrateApplication {
|
|
|
10626
10626
|
path: _path + ".multipleOf",
|
|
10627
10627
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
10628
10628
|
value: input.multipleOf
|
|
10629
|
+
}, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10630
|
+
method: "typia.assert",
|
|
10631
|
+
path: _path + ".type",
|
|
10632
|
+
expected: '"integer"',
|
|
10633
|
+
value: input.type
|
|
10629
10634
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10630
10635
|
method: "typia.assert",
|
|
10631
10636
|
path: _path + ".title",
|
|
@@ -10651,11 +10656,6 @@ class NestiaMigrateApplication {
|
|
|
10651
10656
|
path: _path + ".writeOnly",
|
|
10652
10657
|
expected: "(boolean | undefined)",
|
|
10653
10658
|
value: input.writeOnly
|
|
10654
|
-
}, _errorFactory)) && ("integer" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10655
|
-
method: "typia.assert",
|
|
10656
|
-
path: _path + ".type",
|
|
10657
|
-
expected: '"integer"',
|
|
10658
|
-
value: input.type
|
|
10659
10659
|
}, _errorFactory));
|
|
10660
10660
|
const _ao229 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10661
10661
|
method: "typia.assert",
|
|
@@ -10712,6 +10712,11 @@ class NestiaMigrateApplication {
|
|
|
10712
10712
|
path: _path + ".multipleOf",
|
|
10713
10713
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
10714
10714
|
value: input.multipleOf
|
|
10715
|
+
}, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10716
|
+
method: "typia.assert",
|
|
10717
|
+
path: _path + ".type",
|
|
10718
|
+
expected: '"number"',
|
|
10719
|
+
value: input.type
|
|
10715
10720
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10716
10721
|
method: "typia.assert",
|
|
10717
10722
|
path: _path + ".title",
|
|
@@ -10737,11 +10742,6 @@ class NestiaMigrateApplication {
|
|
|
10737
10742
|
path: _path + ".writeOnly",
|
|
10738
10743
|
expected: "(boolean | undefined)",
|
|
10739
10744
|
value: input.writeOnly
|
|
10740
|
-
}, _errorFactory)) && ("number" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10741
|
-
method: "typia.assert",
|
|
10742
|
-
path: _path + ".type",
|
|
10743
|
-
expected: '"number"',
|
|
10744
|
-
value: input.type
|
|
10745
10745
|
}, _errorFactory));
|
|
10746
10746
|
const _ao230 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10747
10747
|
method: "typia.assert",
|
|
@@ -10803,6 +10803,11 @@ class NestiaMigrateApplication {
|
|
|
10803
10803
|
path: _path + ".maxLength",
|
|
10804
10804
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
10805
10805
|
value: input.maxLength
|
|
10806
|
+
}, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10807
|
+
method: "typia.assert",
|
|
10808
|
+
path: _path + ".type",
|
|
10809
|
+
expected: '"string"',
|
|
10810
|
+
value: input.type
|
|
10806
10811
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10807
10812
|
method: "typia.assert",
|
|
10808
10813
|
path: _path + ".title",
|
|
@@ -10828,11 +10833,6 @@ class NestiaMigrateApplication {
|
|
|
10828
10833
|
path: _path + ".writeOnly",
|
|
10829
10834
|
expected: "(boolean | undefined)",
|
|
10830
10835
|
value: input.writeOnly
|
|
10831
|
-
}, _errorFactory)) && ("string" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10832
|
-
method: "typia.assert",
|
|
10833
|
-
path: _path + ".type",
|
|
10834
|
-
expected: '"string"',
|
|
10835
|
-
value: input.type
|
|
10836
10836
|
}, _errorFactory));
|
|
10837
10837
|
const _ao231 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10838
10838
|
method: "typia.assert",
|
|
@@ -10924,6 +10924,11 @@ class NestiaMigrateApplication {
|
|
|
10924
10924
|
path: _path + ".maxItems",
|
|
10925
10925
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
10926
10926
|
value: input.maxItems
|
|
10927
|
+
}, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10928
|
+
method: "typia.assert",
|
|
10929
|
+
path: _path + ".type",
|
|
10930
|
+
expected: '"array"',
|
|
10931
|
+
value: input.type
|
|
10927
10932
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10928
10933
|
method: "typia.assert",
|
|
10929
10934
|
path: _path + ".title",
|
|
@@ -10949,11 +10954,6 @@ class NestiaMigrateApplication {
|
|
|
10949
10954
|
path: _path + ".writeOnly",
|
|
10950
10955
|
expected: "(boolean | undefined)",
|
|
10951
10956
|
value: input.writeOnly
|
|
10952
|
-
}, _errorFactory)) && ("array" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10953
|
-
method: "typia.assert",
|
|
10954
|
-
path: _path + ".type",
|
|
10955
|
-
expected: '"array"',
|
|
10956
|
-
value: input.type
|
|
10957
10957
|
}, _errorFactory));
|
|
10958
10958
|
const _ao232 = (input, _path, _exceptionable = true) => (undefined === input.nullable || "boolean" === typeof input.nullable || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10959
10959
|
method: "typia.assert",
|
|
@@ -11010,6 +11010,11 @@ class NestiaMigrateApplication {
|
|
|
11010
11010
|
path: _path + ".minProperties",
|
|
11011
11011
|
expected: "(number | undefined)",
|
|
11012
11012
|
value: input.minProperties
|
|
11013
|
+
}, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11014
|
+
method: "typia.assert",
|
|
11015
|
+
path: _path + ".type",
|
|
11016
|
+
expected: '"object"',
|
|
11017
|
+
value: input.type
|
|
11013
11018
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11014
11019
|
method: "typia.assert",
|
|
11015
11020
|
path: _path + ".title",
|
|
@@ -11035,11 +11040,6 @@ class NestiaMigrateApplication {
|
|
|
11035
11040
|
path: _path + ".writeOnly",
|
|
11036
11041
|
expected: "(boolean | undefined)",
|
|
11037
11042
|
value: input.writeOnly
|
|
11038
|
-
}, _errorFactory)) && ("object" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11039
|
-
method: "typia.assert",
|
|
11040
|
-
path: _path + ".type",
|
|
11041
|
-
expected: '"object"',
|
|
11042
|
-
value: input.type
|
|
11043
11043
|
}, _errorFactory));
|
|
11044
11044
|
const _ao233 = (input, _path, _exceptionable = true) => "string" === typeof input.$ref || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11045
11045
|
method: "typia.assert",
|
|
@@ -11147,6 +11147,11 @@ class NestiaMigrateApplication {
|
|
|
11147
11147
|
path: _path + '["default"]',
|
|
11148
11148
|
expected: "(null | undefined)",
|
|
11149
11149
|
value: input["default"]
|
|
11150
|
+
}, _errorFactory)) && ("null" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11151
|
+
method: "typia.assert",
|
|
11152
|
+
path: _path + ".type",
|
|
11153
|
+
expected: '"null"',
|
|
11154
|
+
value: input.type
|
|
11150
11155
|
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11151
11156
|
method: "typia.assert",
|
|
11152
11157
|
path: _path + ".title",
|
|
@@ -11172,11 +11177,6 @@ class NestiaMigrateApplication {
|
|
|
11172
11177
|
path: _path + ".writeOnly",
|
|
11173
11178
|
expected: "(boolean | undefined)",
|
|
11174
11179
|
value: input.writeOnly
|
|
11175
|
-
}, _errorFactory)) && ("null" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11176
|
-
method: "typia.assert",
|
|
11177
|
-
path: _path + ".type",
|
|
11178
|
-
expected: '"null"',
|
|
11179
|
-
value: input.type
|
|
11180
11180
|
}, _errorFactory));
|
|
11181
11181
|
const _ao240 = (input, _path, _exceptionable = true) => (null !== input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11182
11182
|
method: "typia.assert",
|
|
@@ -11385,7 +11385,7 @@ class NestiaMigrateApplication {
|
|
|
11385
11385
|
path: _path + ".name",
|
|
11386
11386
|
expected: "(string | undefined)",
|
|
11387
11387
|
value: input.name
|
|
11388
|
-
}, _errorFactory)) && ("query" === input["in"] || "
|
|
11388
|
+
}, _errorFactory)) && ("query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || "querystring" === input["in"] || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
11389
11389
|
method: "typia.assert",
|
|
11390
11390
|
path: _path + '["in"]',
|
|
11391
11391
|
expected: '("cookie" | "header" | "path" | "query" | "querystring")',
|
|
@@ -12417,7 +12417,7 @@ class NestiaMigrateApplication {
|
|
|
12417
12417
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io38(value);
|
|
12418
12418
|
});
|
|
12419
12419
|
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"]);
|
|
12420
|
-
const _io39 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "
|
|
12420
|
+
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));
|
|
12421
12421
|
const _io40 = input => Object.keys(input).every(key => {
|
|
12422
12422
|
const value = input[key];
|
|
12423
12423
|
if (undefined === value) return true;
|
|
@@ -12458,12 +12458,12 @@ class NestiaMigrateApplication {
|
|
|
12458
12458
|
if (undefined === value) return true;
|
|
12459
12459
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu2(value);
|
|
12460
12460
|
});
|
|
12461
|
-
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)
|
|
12462
|
-
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)
|
|
12463
|
-
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)
|
|
12464
|
-
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)
|
|
12465
|
-
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)
|
|
12466
|
-
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)
|
|
12461
|
+
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);
|
|
12462
|
+
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);
|
|
12463
|
+
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);
|
|
12464
|
+
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);
|
|
12465
|
+
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);
|
|
12466
|
+
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);
|
|
12467
12467
|
const _io61 = input => "string" === typeof input.$ref;
|
|
12468
12468
|
const _io62 = input => Array.isArray(input["x-anyOf"]) && input["x-anyOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem));
|
|
12469
12469
|
const _io63 = input => Array.isArray(input["x-oneOf"]) && input["x-oneOf"].every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu2(elem));
|
|
@@ -12474,12 +12474,12 @@ class NestiaMigrateApplication {
|
|
|
12474
12474
|
if (undefined === value) return true;
|
|
12475
12475
|
return "object" === typeof value && null !== value && _iu12(value);
|
|
12476
12476
|
});
|
|
12477
|
-
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) && "
|
|
12478
|
-
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) && "
|
|
12479
|
-
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) && "
|
|
12480
|
-
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" ===
|
|
12481
|
-
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) && "
|
|
12482
|
-
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) && "
|
|
12477
|
+
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"];
|
|
12478
|
+
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"];
|
|
12479
|
+
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"];
|
|
12480
|
+
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"];
|
|
12481
|
+
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"];
|
|
12482
|
+
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"];
|
|
12483
12483
|
const _io73 = input => "string" === typeof input.$ref && "string" === typeof input.name && "string" === typeof input["in"] && (undefined === input.description || "string" === typeof input.description);
|
|
12484
12484
|
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);
|
|
12485
12485
|
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);
|
|
@@ -12541,19 +12541,19 @@ class NestiaMigrateApplication {
|
|
|
12541
12541
|
if (undefined === value) return true;
|
|
12542
12542
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _iu5(value);
|
|
12543
12543
|
});
|
|
12544
|
-
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)
|
|
12545
|
-
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)
|
|
12546
|
-
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)
|
|
12547
|
-
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)
|
|
12548
|
-
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)
|
|
12549
|
-
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)
|
|
12544
|
+
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);
|
|
12545
|
+
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);
|
|
12546
|
+
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);
|
|
12547
|
+
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);
|
|
12548
|
+
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);
|
|
12549
|
+
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);
|
|
12550
12550
|
const _io112 = input => "string" === typeof input.$ref;
|
|
12551
12551
|
const _io113 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem));
|
|
12552
12552
|
const _io114 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu5(elem));
|
|
12553
12553
|
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));
|
|
12554
12554
|
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));
|
|
12555
|
-
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)
|
|
12556
|
-
const _io118 = input => (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)
|
|
12555
|
+
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);
|
|
12556
|
+
const _io118 = input => 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);
|
|
12557
12557
|
const _io119 = input => Object.keys(input).every(key => {
|
|
12558
12558
|
const value = input[key];
|
|
12559
12559
|
if (undefined === value) return true;
|
|
@@ -12585,7 +12585,7 @@ class NestiaMigrateApplication {
|
|
|
12585
12585
|
if (undefined === value) return true;
|
|
12586
12586
|
return "object" === typeof value && null !== value && _io130(value);
|
|
12587
12587
|
});
|
|
12588
|
-
const _io130 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "
|
|
12588
|
+
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));
|
|
12589
12589
|
const _io131 = input => Object.keys(input).every(key => {
|
|
12590
12590
|
const value = input[key];
|
|
12591
12591
|
if (undefined === value) return true;
|
|
@@ -12656,19 +12656,19 @@ class NestiaMigrateApplication {
|
|
|
12656
12656
|
});
|
|
12657
12657
|
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;
|
|
12658
12658
|
const _io164 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable);
|
|
12659
|
-
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)
|
|
12660
|
-
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)
|
|
12661
|
-
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)
|
|
12662
|
-
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)
|
|
12663
|
-
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)
|
|
12664
|
-
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)
|
|
12659
|
+
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);
|
|
12660
|
+
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);
|
|
12661
|
+
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);
|
|
12662
|
+
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);
|
|
12663
|
+
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);
|
|
12664
|
+
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);
|
|
12665
12665
|
const _io171 = input => "string" === typeof input.$ref;
|
|
12666
12666
|
const _io172 = input => "string" === typeof input.$recursiveRef;
|
|
12667
12667
|
const _io173 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem));
|
|
12668
12668
|
const _io174 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu7(elem));
|
|
12669
12669
|
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));
|
|
12670
12670
|
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));
|
|
12671
|
-
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)
|
|
12671
|
+
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);
|
|
12672
12672
|
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);
|
|
12673
12673
|
const _io179 = input => Object.keys(input).every(key => {
|
|
12674
12674
|
const value = input[key];
|
|
@@ -12676,7 +12676,7 @@ class NestiaMigrateApplication {
|
|
|
12676
12676
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io180(value);
|
|
12677
12677
|
});
|
|
12678
12678
|
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));
|
|
12679
|
-
const _io181 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "
|
|
12679
|
+
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));
|
|
12680
12680
|
const _io182 = input => Object.keys(input).every(key => {
|
|
12681
12681
|
const value = input[key];
|
|
12682
12682
|
if (undefined === value) return true;
|
|
@@ -12778,19 +12778,19 @@ class NestiaMigrateApplication {
|
|
|
12778
12778
|
});
|
|
12779
12779
|
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;
|
|
12780
12780
|
const _io226 = input => ("string" === typeof input["const"] || "number" === typeof input["const"] || "boolean" === typeof input["const"]) && (undefined === input.nullable || "boolean" === typeof input.nullable);
|
|
12781
|
-
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)
|
|
12782
|
-
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)
|
|
12783
|
-
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)
|
|
12784
|
-
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)
|
|
12785
|
-
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)
|
|
12786
|
-
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)
|
|
12781
|
+
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);
|
|
12782
|
+
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);
|
|
12783
|
+
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);
|
|
12784
|
+
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);
|
|
12785
|
+
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);
|
|
12786
|
+
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);
|
|
12787
12787
|
const _io233 = input => "string" === typeof input.$ref;
|
|
12788
12788
|
const _io234 = input => "string" === typeof input.$recursiveRef;
|
|
12789
12789
|
const _io235 = input => Array.isArray(input.allOf) && input.allOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem));
|
|
12790
12790
|
const _io236 = input => Array.isArray(input.anyOf) && input.anyOf.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _iu9(elem));
|
|
12791
12791
|
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));
|
|
12792
12792
|
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));
|
|
12793
|
-
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)
|
|
12793
|
+
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);
|
|
12794
12794
|
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);
|
|
12795
12795
|
const _io241 = input => Object.keys(input).every(key => {
|
|
12796
12796
|
const value = input[key];
|
|
@@ -12798,7 +12798,7 @@ class NestiaMigrateApplication {
|
|
|
12798
12798
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io242(value);
|
|
12799
12799
|
});
|
|
12800
12800
|
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));
|
|
12801
|
-
const _io243 = input => (undefined === input.name || "string" === typeof input.name) && ("query" === input["in"] || "
|
|
12801
|
+
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));
|
|
12802
12802
|
const _io244 = input => Object.keys(input).every(key => {
|
|
12803
12803
|
const value = input[key];
|
|
12804
12804
|
if (undefined === value) return true;
|
|
@@ -14362,7 +14362,7 @@ class NestiaMigrateApplication {
|
|
|
14362
14362
|
path: _path + ".name",
|
|
14363
14363
|
expected: "(string | undefined)",
|
|
14364
14364
|
value: input.name
|
|
14365
|
-
}), "query" === input["in"] || "
|
|
14365
|
+
}), "query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || "querystring" === input["in"] || _report(_exceptionable, {
|
|
14366
14366
|
path: _path + '["in"]',
|
|
14367
14367
|
expected: '("cookie" | "header" | "path" | "query" | "querystring")',
|
|
14368
14368
|
value: input["in"]
|
|
@@ -14819,6 +14819,10 @@ class NestiaMigrateApplication {
|
|
|
14819
14819
|
path: _path + '["enum"]',
|
|
14820
14820
|
expected: "(Array<boolean | null> | undefined)",
|
|
14821
14821
|
value: input["enum"]
|
|
14822
|
+
}), "boolean" === input.type || _report(_exceptionable, {
|
|
14823
|
+
path: _path + ".type",
|
|
14824
|
+
expected: '"boolean"',
|
|
14825
|
+
value: input.type
|
|
14822
14826
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
14823
14827
|
path: _path + ".title",
|
|
14824
14828
|
expected: "(string | undefined)",
|
|
@@ -14839,10 +14843,6 @@ class NestiaMigrateApplication {
|
|
|
14839
14843
|
path: _path + ".writeOnly",
|
|
14840
14844
|
expected: "(boolean | undefined)",
|
|
14841
14845
|
value: input.writeOnly
|
|
14842
|
-
}), "boolean" === input.type || _report(_exceptionable, {
|
|
14843
|
-
path: _path + ".type",
|
|
14844
|
-
expected: '"boolean"',
|
|
14845
|
-
value: input.type
|
|
14846
14846
|
}) ].every(flag => flag);
|
|
14847
14847
|
const _vo56 = (input, _path, _exceptionable = true) => [ null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] && (__typia_transform__isTypeInt64._isTypeInt64(input["default"]) || _report(_exceptionable, {
|
|
14848
14848
|
path: _path + '["default"]',
|
|
@@ -14900,6 +14900,10 @@ class NestiaMigrateApplication {
|
|
|
14900
14900
|
path: _path + ".multipleOf",
|
|
14901
14901
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
14902
14902
|
value: input.multipleOf
|
|
14903
|
+
}), "integer" === input.type || _report(_exceptionable, {
|
|
14904
|
+
path: _path + ".type",
|
|
14905
|
+
expected: '"integer"',
|
|
14906
|
+
value: input.type
|
|
14903
14907
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
14904
14908
|
path: _path + ".title",
|
|
14905
14909
|
expected: "(string | undefined)",
|
|
@@ -14920,10 +14924,6 @@ class NestiaMigrateApplication {
|
|
|
14920
14924
|
path: _path + ".writeOnly",
|
|
14921
14925
|
expected: "(boolean | undefined)",
|
|
14922
14926
|
value: input.writeOnly
|
|
14923
|
-
}), "integer" === input.type || _report(_exceptionable, {
|
|
14924
|
-
path: _path + ".type",
|
|
14925
|
-
expected: '"integer"',
|
|
14926
|
-
value: input.type
|
|
14927
14927
|
}) ].every(flag => flag);
|
|
14928
14928
|
const _vo57 = (input, _path, _exceptionable = true) => [ null === input["default"] || undefined === input["default"] || "number" === typeof input["default"] || _report(_exceptionable, {
|
|
14929
14929
|
path: _path + '["default"]',
|
|
@@ -14965,6 +14965,10 @@ class NestiaMigrateApplication {
|
|
|
14965
14965
|
path: _path + ".multipleOf",
|
|
14966
14966
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
14967
14967
|
value: input.multipleOf
|
|
14968
|
+
}), "number" === input.type || _report(_exceptionable, {
|
|
14969
|
+
path: _path + ".type",
|
|
14970
|
+
expected: '"number"',
|
|
14971
|
+
value: input.type
|
|
14968
14972
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
14969
14973
|
path: _path + ".title",
|
|
14970
14974
|
expected: "(string | undefined)",
|
|
@@ -14984,11 +14988,7 @@ class NestiaMigrateApplication {
|
|
|
14984
14988
|
}), undefined === input.writeOnly || "boolean" === typeof input.writeOnly || _report(_exceptionable, {
|
|
14985
14989
|
path: _path + ".writeOnly",
|
|
14986
14990
|
expected: "(boolean | undefined)",
|
|
14987
|
-
value: input.writeOnly
|
|
14988
|
-
}), "number" === input.type || _report(_exceptionable, {
|
|
14989
|
-
path: _path + ".type",
|
|
14990
|
-
expected: '"number"',
|
|
14991
|
-
value: input.type
|
|
14991
|
+
value: input.writeOnly
|
|
14992
14992
|
}) ].every(flag => flag);
|
|
14993
14993
|
const _vo58 = (input, _path, _exceptionable = true) => [ null === input["default"] || undefined === input["default"] || "string" === typeof input["default"] || _report(_exceptionable, {
|
|
14994
14994
|
path: _path + '["default"]',
|
|
@@ -15030,6 +15030,10 @@ class NestiaMigrateApplication {
|
|
|
15030
15030
|
path: _path + ".maxLength",
|
|
15031
15031
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
15032
15032
|
value: input.maxLength
|
|
15033
|
+
}), "string" === input.type || _report(_exceptionable, {
|
|
15034
|
+
path: _path + ".type",
|
|
15035
|
+
expected: '"string"',
|
|
15036
|
+
value: input.type
|
|
15033
15037
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
15034
15038
|
path: _path + ".title",
|
|
15035
15039
|
expected: "(string | undefined)",
|
|
@@ -15050,10 +15054,6 @@ class NestiaMigrateApplication {
|
|
|
15050
15054
|
path: _path + ".writeOnly",
|
|
15051
15055
|
expected: "(boolean | undefined)",
|
|
15052
15056
|
value: input.writeOnly
|
|
15053
|
-
}), "string" === input.type || _report(_exceptionable, {
|
|
15054
|
-
path: _path + ".type",
|
|
15055
|
-
expected: '"string"',
|
|
15056
|
-
value: input.type
|
|
15057
15057
|
}) ].every(flag => flag);
|
|
15058
15058
|
const _vo59 = (input, _path, _exceptionable = true) => [ ("object" === typeof input.items && null !== input.items && false === Array.isArray(input.items) || _report(_exceptionable, {
|
|
15059
15059
|
path: _path + ".items",
|
|
@@ -15083,6 +15083,10 @@ class NestiaMigrateApplication {
|
|
|
15083
15083
|
path: _path + ".maxItems",
|
|
15084
15084
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
15085
15085
|
value: input.maxItems
|
|
15086
|
+
}), "array" === input.type || _report(_exceptionable, {
|
|
15087
|
+
path: _path + ".type",
|
|
15088
|
+
expected: '"array"',
|
|
15089
|
+
value: input.type
|
|
15086
15090
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
15087
15091
|
path: _path + ".title",
|
|
15088
15092
|
expected: "(string | undefined)",
|
|
@@ -15103,10 +15107,6 @@ class NestiaMigrateApplication {
|
|
|
15103
15107
|
path: _path + ".writeOnly",
|
|
15104
15108
|
expected: "(boolean | undefined)",
|
|
15105
15109
|
value: input.writeOnly
|
|
15106
|
-
}), "array" === input.type || _report(_exceptionable, {
|
|
15107
|
-
path: _path + ".type",
|
|
15108
|
-
expected: '"array"',
|
|
15109
|
-
value: input.type
|
|
15110
15110
|
}) ].every(flag => flag);
|
|
15111
15111
|
const _vo60 = (input, _path, _exceptionable = true) => [ undefined === input.properties || ("object" === typeof input.properties && null !== input.properties && false === Array.isArray(input.properties) || _report(_exceptionable, {
|
|
15112
15112
|
path: _path + ".properties",
|
|
@@ -15148,6 +15148,10 @@ class NestiaMigrateApplication {
|
|
|
15148
15148
|
path: _path + ".minProperties",
|
|
15149
15149
|
expected: "(number | undefined)",
|
|
15150
15150
|
value: input.minProperties
|
|
15151
|
+
}), "object" === input.type || _report(_exceptionable, {
|
|
15152
|
+
path: _path + ".type",
|
|
15153
|
+
expected: '"object"',
|
|
15154
|
+
value: input.type
|
|
15151
15155
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
15152
15156
|
path: _path + ".title",
|
|
15153
15157
|
expected: "(string | undefined)",
|
|
@@ -15168,10 +15172,6 @@ class NestiaMigrateApplication {
|
|
|
15168
15172
|
path: _path + ".writeOnly",
|
|
15169
15173
|
expected: "(boolean | undefined)",
|
|
15170
15174
|
value: input.writeOnly
|
|
15171
|
-
}), "object" === input.type || _report(_exceptionable, {
|
|
15172
|
-
path: _path + ".type",
|
|
15173
|
-
expected: '"object"',
|
|
15174
|
-
value: input.type
|
|
15175
15175
|
}) ].every(flag => flag);
|
|
15176
15176
|
const _vo61 = (input, _path, _exceptionable = true) => [ "string" === typeof input.$ref || _report(_exceptionable, {
|
|
15177
15177
|
path: _path + ".$ref",
|
|
@@ -15259,6 +15259,10 @@ class NestiaMigrateApplication {
|
|
|
15259
15259
|
path: _path + '["enum"]',
|
|
15260
15260
|
expected: "(Array<boolean | null> | undefined)",
|
|
15261
15261
|
value: input["enum"]
|
|
15262
|
+
}), "boolean" === input.type || _report(_exceptionable, {
|
|
15263
|
+
path: _path + ".type",
|
|
15264
|
+
expected: '"boolean"',
|
|
15265
|
+
value: input.type
|
|
15262
15266
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
15263
15267
|
path: _path + ".title",
|
|
15264
15268
|
expected: "(string | undefined)",
|
|
@@ -15279,10 +15283,6 @@ class NestiaMigrateApplication {
|
|
|
15279
15283
|
path: _path + ".writeOnly",
|
|
15280
15284
|
expected: "(boolean | undefined)",
|
|
15281
15285
|
value: input.writeOnly
|
|
15282
|
-
}), "boolean" === input.type || _report(_exceptionable, {
|
|
15283
|
-
path: _path + ".type",
|
|
15284
|
-
expected: '"boolean"',
|
|
15285
|
-
value: input.type
|
|
15286
15286
|
}), "string" === typeof input.name || _report(_exceptionable, {
|
|
15287
15287
|
path: _path + ".name",
|
|
15288
15288
|
expected: "string",
|
|
@@ -15348,6 +15348,10 @@ class NestiaMigrateApplication {
|
|
|
15348
15348
|
path: _path + ".multipleOf",
|
|
15349
15349
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
15350
15350
|
value: input.multipleOf
|
|
15351
|
+
}), "integer" === input.type || _report(_exceptionable, {
|
|
15352
|
+
path: _path + ".type",
|
|
15353
|
+
expected: '"integer"',
|
|
15354
|
+
value: input.type
|
|
15351
15355
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
15352
15356
|
path: _path + ".title",
|
|
15353
15357
|
expected: "(string | undefined)",
|
|
@@ -15368,10 +15372,6 @@ class NestiaMigrateApplication {
|
|
|
15368
15372
|
path: _path + ".writeOnly",
|
|
15369
15373
|
expected: "(boolean | undefined)",
|
|
15370
15374
|
value: input.writeOnly
|
|
15371
|
-
}), "integer" === input.type || _report(_exceptionable, {
|
|
15372
|
-
path: _path + ".type",
|
|
15373
|
-
expected: '"integer"',
|
|
15374
|
-
value: input.type
|
|
15375
15375
|
}), "string" === typeof input.name || _report(_exceptionable, {
|
|
15376
15376
|
path: _path + ".name",
|
|
15377
15377
|
expected: "string",
|
|
@@ -15421,6 +15421,10 @@ class NestiaMigrateApplication {
|
|
|
15421
15421
|
path: _path + ".multipleOf",
|
|
15422
15422
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
15423
15423
|
value: input.multipleOf
|
|
15424
|
+
}), "number" === input.type || _report(_exceptionable, {
|
|
15425
|
+
path: _path + ".type",
|
|
15426
|
+
expected: '"number"',
|
|
15427
|
+
value: input.type
|
|
15424
15428
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
15425
15429
|
path: _path + ".title",
|
|
15426
15430
|
expected: "(string | undefined)",
|
|
@@ -15441,10 +15445,6 @@ class NestiaMigrateApplication {
|
|
|
15441
15445
|
path: _path + ".writeOnly",
|
|
15442
15446
|
expected: "(boolean | undefined)",
|
|
15443
15447
|
value: input.writeOnly
|
|
15444
|
-
}), "number" === input.type || _report(_exceptionable, {
|
|
15445
|
-
path: _path + ".type",
|
|
15446
|
-
expected: '"number"',
|
|
15447
|
-
value: input.type
|
|
15448
15448
|
}), "string" === typeof input.name || _report(_exceptionable, {
|
|
15449
15449
|
path: _path + ".name",
|
|
15450
15450
|
expected: "string",
|
|
@@ -15494,6 +15494,10 @@ class NestiaMigrateApplication {
|
|
|
15494
15494
|
path: _path + ".maxLength",
|
|
15495
15495
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
15496
15496
|
value: input.maxLength
|
|
15497
|
+
}), "string" === input.type || _report(_exceptionable, {
|
|
15498
|
+
path: _path + ".type",
|
|
15499
|
+
expected: '"string"',
|
|
15500
|
+
value: input.type
|
|
15497
15501
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
15498
15502
|
path: _path + ".title",
|
|
15499
15503
|
expected: "(string | undefined)",
|
|
@@ -15514,10 +15518,6 @@ class NestiaMigrateApplication {
|
|
|
15514
15518
|
path: _path + ".writeOnly",
|
|
15515
15519
|
expected: "(boolean | undefined)",
|
|
15516
15520
|
value: input.writeOnly
|
|
15517
|
-
}), "string" === input.type || _report(_exceptionable, {
|
|
15518
|
-
path: _path + ".type",
|
|
15519
|
-
expected: '"string"',
|
|
15520
|
-
value: input.type
|
|
15521
15521
|
}), "string" === typeof input.name || _report(_exceptionable, {
|
|
15522
15522
|
path: _path + ".name",
|
|
15523
15523
|
expected: "string",
|
|
@@ -15555,6 +15555,10 @@ class NestiaMigrateApplication {
|
|
|
15555
15555
|
path: _path + ".maxItems",
|
|
15556
15556
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
15557
15557
|
value: input.maxItems
|
|
15558
|
+
}), "array" === input.type || _report(_exceptionable, {
|
|
15559
|
+
path: _path + ".type",
|
|
15560
|
+
expected: '"array"',
|
|
15561
|
+
value: input.type
|
|
15558
15562
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
15559
15563
|
path: _path + ".title",
|
|
15560
15564
|
expected: "(string | undefined)",
|
|
@@ -15575,10 +15579,6 @@ class NestiaMigrateApplication {
|
|
|
15575
15579
|
path: _path + ".writeOnly",
|
|
15576
15580
|
expected: "(boolean | undefined)",
|
|
15577
15581
|
value: input.writeOnly
|
|
15578
|
-
}), "array" === input.type || _report(_exceptionable, {
|
|
15579
|
-
path: _path + ".type",
|
|
15580
|
-
expected: '"array"',
|
|
15581
|
-
value: input.type
|
|
15582
15582
|
}), "string" === typeof input.name || _report(_exceptionable, {
|
|
15583
15583
|
path: _path + ".name",
|
|
15584
15584
|
expected: "string",
|
|
@@ -15628,6 +15628,10 @@ class NestiaMigrateApplication {
|
|
|
15628
15628
|
path: _path + ".minProperties",
|
|
15629
15629
|
expected: "(number | undefined)",
|
|
15630
15630
|
value: input.minProperties
|
|
15631
|
+
}), "object" === input.type || _report(_exceptionable, {
|
|
15632
|
+
path: _path + ".type",
|
|
15633
|
+
expected: '"object"',
|
|
15634
|
+
value: input.type
|
|
15631
15635
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
15632
15636
|
path: _path + ".title",
|
|
15633
15637
|
expected: "(string | undefined)",
|
|
@@ -15648,10 +15652,6 @@ class NestiaMigrateApplication {
|
|
|
15648
15652
|
path: _path + ".writeOnly",
|
|
15649
15653
|
expected: "(boolean | undefined)",
|
|
15650
15654
|
value: input.writeOnly
|
|
15651
|
-
}), "object" === input.type || _report(_exceptionable, {
|
|
15652
|
-
path: _path + ".type",
|
|
15653
|
-
expected: '"object"',
|
|
15654
|
-
value: input.type
|
|
15655
15655
|
}), "string" === typeof input.name || _report(_exceptionable, {
|
|
15656
15656
|
path: _path + ".name",
|
|
15657
15657
|
expected: "string",
|
|
@@ -16490,6 +16490,10 @@ class NestiaMigrateApplication {
|
|
|
16490
16490
|
path: _path + '["enum"]',
|
|
16491
16491
|
expected: "(Array<boolean | null> | undefined)",
|
|
16492
16492
|
value: input["enum"]
|
|
16493
|
+
}), "boolean" === input.type || _report(_exceptionable, {
|
|
16494
|
+
path: _path + ".type",
|
|
16495
|
+
expected: '"boolean"',
|
|
16496
|
+
value: input.type
|
|
16493
16497
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
16494
16498
|
path: _path + ".title",
|
|
16495
16499
|
expected: "(string | undefined)",
|
|
@@ -16510,10 +16514,6 @@ class NestiaMigrateApplication {
|
|
|
16510
16514
|
path: _path + ".writeOnly",
|
|
16511
16515
|
expected: "(boolean | undefined)",
|
|
16512
16516
|
value: input.writeOnly
|
|
16513
|
-
}), "boolean" === input.type || _report(_exceptionable, {
|
|
16514
|
-
path: _path + ".type",
|
|
16515
|
-
expected: '"boolean"',
|
|
16516
|
-
value: input.type
|
|
16517
16517
|
}) ].every(flag => flag);
|
|
16518
16518
|
const _vo107 = (input, _path, _exceptionable = true) => [ undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
16519
16519
|
path: _path + ".nullable",
|
|
@@ -16575,6 +16575,10 @@ class NestiaMigrateApplication {
|
|
|
16575
16575
|
path: _path + ".multipleOf",
|
|
16576
16576
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
16577
16577
|
value: input.multipleOf
|
|
16578
|
+
}), "integer" === input.type || _report(_exceptionable, {
|
|
16579
|
+
path: _path + ".type",
|
|
16580
|
+
expected: '"integer"',
|
|
16581
|
+
value: input.type
|
|
16578
16582
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
16579
16583
|
path: _path + ".title",
|
|
16580
16584
|
expected: "(string | undefined)",
|
|
@@ -16595,10 +16599,6 @@ class NestiaMigrateApplication {
|
|
|
16595
16599
|
path: _path + ".writeOnly",
|
|
16596
16600
|
expected: "(boolean | undefined)",
|
|
16597
16601
|
value: input.writeOnly
|
|
16598
|
-
}), "integer" === input.type || _report(_exceptionable, {
|
|
16599
|
-
path: _path + ".type",
|
|
16600
|
-
expected: '"integer"',
|
|
16601
|
-
value: input.type
|
|
16602
16602
|
}) ].every(flag => flag);
|
|
16603
16603
|
const _vo108 = (input, _path, _exceptionable = true) => [ undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
16604
16604
|
path: _path + ".nullable",
|
|
@@ -16644,6 +16644,10 @@ class NestiaMigrateApplication {
|
|
|
16644
16644
|
path: _path + ".multipleOf",
|
|
16645
16645
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
16646
16646
|
value: input.multipleOf
|
|
16647
|
+
}), "number" === input.type || _report(_exceptionable, {
|
|
16648
|
+
path: _path + ".type",
|
|
16649
|
+
expected: '"number"',
|
|
16650
|
+
value: input.type
|
|
16647
16651
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
16648
16652
|
path: _path + ".title",
|
|
16649
16653
|
expected: "(string | undefined)",
|
|
@@ -16664,10 +16668,6 @@ class NestiaMigrateApplication {
|
|
|
16664
16668
|
path: _path + ".writeOnly",
|
|
16665
16669
|
expected: "(boolean | undefined)",
|
|
16666
16670
|
value: input.writeOnly
|
|
16667
|
-
}), "number" === input.type || _report(_exceptionable, {
|
|
16668
|
-
path: _path + ".type",
|
|
16669
|
-
expected: '"number"',
|
|
16670
|
-
value: input.type
|
|
16671
16671
|
}) ].every(flag => flag);
|
|
16672
16672
|
const _vo109 = (input, _path, _exceptionable = true) => [ undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
16673
16673
|
path: _path + ".nullable",
|
|
@@ -16713,6 +16713,10 @@ class NestiaMigrateApplication {
|
|
|
16713
16713
|
path: _path + ".maxLength",
|
|
16714
16714
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
16715
16715
|
value: input.maxLength
|
|
16716
|
+
}), "string" === input.type || _report(_exceptionable, {
|
|
16717
|
+
path: _path + ".type",
|
|
16718
|
+
expected: '"string"',
|
|
16719
|
+
value: input.type
|
|
16716
16720
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
16717
16721
|
path: _path + ".title",
|
|
16718
16722
|
expected: "(string | undefined)",
|
|
@@ -16733,10 +16737,6 @@ class NestiaMigrateApplication {
|
|
|
16733
16737
|
path: _path + ".writeOnly",
|
|
16734
16738
|
expected: "(boolean | undefined)",
|
|
16735
16739
|
value: input.writeOnly
|
|
16736
|
-
}), "string" === input.type || _report(_exceptionable, {
|
|
16737
|
-
path: _path + ".type",
|
|
16738
|
-
expected: '"string"',
|
|
16739
|
-
value: input.type
|
|
16740
16740
|
}) ].every(flag => flag);
|
|
16741
16741
|
const _vo110 = (input, _path, _exceptionable = true) => [ undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
16742
16742
|
path: _path + ".nullable",
|
|
@@ -16770,6 +16770,10 @@ class NestiaMigrateApplication {
|
|
|
16770
16770
|
path: _path + ".maxItems",
|
|
16771
16771
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
16772
16772
|
value: input.maxItems
|
|
16773
|
+
}), "array" === input.type || _report(_exceptionable, {
|
|
16774
|
+
path: _path + ".type",
|
|
16775
|
+
expected: '"array"',
|
|
16776
|
+
value: input.type
|
|
16773
16777
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
16774
16778
|
path: _path + ".title",
|
|
16775
16779
|
expected: "(string | undefined)",
|
|
@@ -16790,10 +16794,6 @@ class NestiaMigrateApplication {
|
|
|
16790
16794
|
path: _path + ".writeOnly",
|
|
16791
16795
|
expected: "(boolean | undefined)",
|
|
16792
16796
|
value: input.writeOnly
|
|
16793
|
-
}), "array" === input.type || _report(_exceptionable, {
|
|
16794
|
-
path: _path + ".type",
|
|
16795
|
-
expected: '"array"',
|
|
16796
|
-
value: input.type
|
|
16797
16797
|
}) ].every(flag => flag);
|
|
16798
16798
|
const _vo111 = (input, _path, _exceptionable = true) => [ undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
16799
16799
|
path: _path + ".nullable",
|
|
@@ -16839,6 +16839,10 @@ class NestiaMigrateApplication {
|
|
|
16839
16839
|
path: _path + ".minProperties",
|
|
16840
16840
|
expected: "(number | undefined)",
|
|
16841
16841
|
value: input.minProperties
|
|
16842
|
+
}), "object" === input.type || _report(_exceptionable, {
|
|
16843
|
+
path: _path + ".type",
|
|
16844
|
+
expected: '"object"',
|
|
16845
|
+
value: input.type
|
|
16842
16846
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
16843
16847
|
path: _path + ".title",
|
|
16844
16848
|
expected: "(string | undefined)",
|
|
@@ -16859,10 +16863,6 @@ class NestiaMigrateApplication {
|
|
|
16859
16863
|
path: _path + ".writeOnly",
|
|
16860
16864
|
expected: "(boolean | undefined)",
|
|
16861
16865
|
value: input.writeOnly
|
|
16862
|
-
}), "object" === input.type || _report(_exceptionable, {
|
|
16863
|
-
path: _path + ".type",
|
|
16864
|
-
expected: '"object"',
|
|
16865
|
-
value: input.type
|
|
16866
16866
|
}) ].every(flag => flag);
|
|
16867
16867
|
const _vo112 = (input, _path, _exceptionable = true) => [ "string" === typeof input.$ref || _report(_exceptionable, {
|
|
16868
16868
|
path: _path + ".$ref",
|
|
@@ -16945,6 +16945,10 @@ class NestiaMigrateApplication {
|
|
|
16945
16945
|
path: _path + '["default"]',
|
|
16946
16946
|
expected: "(null | undefined)",
|
|
16947
16947
|
value: input["default"]
|
|
16948
|
+
}), "null" === input.type || _report(_exceptionable, {
|
|
16949
|
+
path: _path + ".type",
|
|
16950
|
+
expected: '"null"',
|
|
16951
|
+
value: input.type
|
|
16948
16952
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
16949
16953
|
path: _path + ".title",
|
|
16950
16954
|
expected: "(string | undefined)",
|
|
@@ -16965,12 +16969,16 @@ class NestiaMigrateApplication {
|
|
|
16965
16969
|
path: _path + ".writeOnly",
|
|
16966
16970
|
expected: "(boolean | undefined)",
|
|
16967
16971
|
value: input.writeOnly
|
|
16968
|
-
})
|
|
16972
|
+
}) ].every(flag => flag);
|
|
16973
|
+
const _vo118 = (input, _path, _exceptionable = true) => [ true, (null !== input.type || _report(_exceptionable, {
|
|
16969
16974
|
path: _path + ".type",
|
|
16970
|
-
expected:
|
|
16975
|
+
expected: "undefined",
|
|
16971
16976
|
value: input.type
|
|
16972
|
-
})
|
|
16973
|
-
|
|
16977
|
+
})) && (undefined === input.type || _report(_exceptionable, {
|
|
16978
|
+
path: _path + ".type",
|
|
16979
|
+
expected: "undefined",
|
|
16980
|
+
value: input.type
|
|
16981
|
+
})), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
16974
16982
|
path: _path + ".title",
|
|
16975
16983
|
expected: "(string | undefined)",
|
|
16976
16984
|
value: input.title
|
|
@@ -16990,15 +16998,7 @@ class NestiaMigrateApplication {
|
|
|
16990
16998
|
path: _path + ".writeOnly",
|
|
16991
16999
|
expected: "(boolean | undefined)",
|
|
16992
17000
|
value: input.writeOnly
|
|
16993
|
-
})
|
|
16994
|
-
path: _path + ".type",
|
|
16995
|
-
expected: "undefined",
|
|
16996
|
-
value: input.type
|
|
16997
|
-
})) && (undefined === input.type || _report(_exceptionable, {
|
|
16998
|
-
path: _path + ".type",
|
|
16999
|
-
expected: "undefined",
|
|
17000
|
-
value: input.type
|
|
17001
|
-
})) ].every(flag => flag);
|
|
17001
|
+
}) ].every(flag => flag);
|
|
17002
17002
|
const _vo119 = (input, _path, _exceptionable = true) => [ false === _exceptionable || Object.keys(input).map(key => {
|
|
17003
17003
|
const value = input[key];
|
|
17004
17004
|
if (undefined === value) return true;
|
|
@@ -17158,7 +17158,7 @@ class NestiaMigrateApplication {
|
|
|
17158
17158
|
path: _path + ".name",
|
|
17159
17159
|
expected: "(string | undefined)",
|
|
17160
17160
|
value: input.name
|
|
17161
|
-
}), "query" === input["in"] || "
|
|
17161
|
+
}), "query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || _report(_exceptionable, {
|
|
17162
17162
|
path: _path + '["in"]',
|
|
17163
17163
|
expected: '("cookie" | "header" | "path" | "query")',
|
|
17164
17164
|
value: input["in"]
|
|
@@ -18273,6 +18273,10 @@ class NestiaMigrateApplication {
|
|
|
18273
18273
|
path: _path + '["enum"]',
|
|
18274
18274
|
expected: "(Array<boolean | null> | undefined)",
|
|
18275
18275
|
value: input["enum"]
|
|
18276
|
+
}), "boolean" === input.type || _report(_exceptionable, {
|
|
18277
|
+
path: _path + ".type",
|
|
18278
|
+
expected: '"boolean"',
|
|
18279
|
+
value: input.type
|
|
18276
18280
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
18277
18281
|
path: _path + ".title",
|
|
18278
18282
|
expected: "(string | undefined)",
|
|
@@ -18293,10 +18297,6 @@ class NestiaMigrateApplication {
|
|
|
18293
18297
|
path: _path + ".writeOnly",
|
|
18294
18298
|
expected: "(boolean | undefined)",
|
|
18295
18299
|
value: input.writeOnly
|
|
18296
|
-
}), "boolean" === input.type || _report(_exceptionable, {
|
|
18297
|
-
path: _path + ".type",
|
|
18298
|
-
expected: '"boolean"',
|
|
18299
|
-
value: input.type
|
|
18300
18300
|
}) ].every(flag => flag);
|
|
18301
18301
|
const _vo166 = (input, _path, _exceptionable = true) => [ undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
18302
18302
|
path: _path + ".nullable",
|
|
@@ -18366,6 +18366,10 @@ class NestiaMigrateApplication {
|
|
|
18366
18366
|
path: _path + ".multipleOf",
|
|
18367
18367
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
18368
18368
|
value: input.multipleOf
|
|
18369
|
+
}), "integer" === input.type || _report(_exceptionable, {
|
|
18370
|
+
path: _path + ".type",
|
|
18371
|
+
expected: '"integer"',
|
|
18372
|
+
value: input.type
|
|
18369
18373
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
18370
18374
|
path: _path + ".title",
|
|
18371
18375
|
expected: "(string | undefined)",
|
|
@@ -18386,10 +18390,6 @@ class NestiaMigrateApplication {
|
|
|
18386
18390
|
path: _path + ".writeOnly",
|
|
18387
18391
|
expected: "(boolean | undefined)",
|
|
18388
18392
|
value: input.writeOnly
|
|
18389
|
-
}), "integer" === input.type || _report(_exceptionable, {
|
|
18390
|
-
path: _path + ".type",
|
|
18391
|
-
expected: '"integer"',
|
|
18392
|
-
value: input.type
|
|
18393
18393
|
}) ].every(flag => flag);
|
|
18394
18394
|
const _vo167 = (input, _path, _exceptionable = true) => [ undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
18395
18395
|
path: _path + ".nullable",
|
|
@@ -18435,6 +18435,10 @@ class NestiaMigrateApplication {
|
|
|
18435
18435
|
path: _path + ".multipleOf",
|
|
18436
18436
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
18437
18437
|
value: input.multipleOf
|
|
18438
|
+
}), "number" === input.type || _report(_exceptionable, {
|
|
18439
|
+
path: _path + ".type",
|
|
18440
|
+
expected: '"number"',
|
|
18441
|
+
value: input.type
|
|
18438
18442
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
18439
18443
|
path: _path + ".title",
|
|
18440
18444
|
expected: "(string | undefined)",
|
|
@@ -18455,10 +18459,6 @@ class NestiaMigrateApplication {
|
|
|
18455
18459
|
path: _path + ".writeOnly",
|
|
18456
18460
|
expected: "(boolean | undefined)",
|
|
18457
18461
|
value: input.writeOnly
|
|
18458
|
-
}), "number" === input.type || _report(_exceptionable, {
|
|
18459
|
-
path: _path + ".type",
|
|
18460
|
-
expected: '"number"',
|
|
18461
|
-
value: input.type
|
|
18462
18462
|
}) ].every(flag => flag);
|
|
18463
18463
|
const _vo168 = (input, _path, _exceptionable = true) => [ undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
18464
18464
|
path: _path + ".nullable",
|
|
@@ -18508,6 +18508,10 @@ class NestiaMigrateApplication {
|
|
|
18508
18508
|
path: _path + ".maxLength",
|
|
18509
18509
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
18510
18510
|
value: input.maxLength
|
|
18511
|
+
}), "string" === input.type || _report(_exceptionable, {
|
|
18512
|
+
path: _path + ".type",
|
|
18513
|
+
expected: '"string"',
|
|
18514
|
+
value: input.type
|
|
18511
18515
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
18512
18516
|
path: _path + ".title",
|
|
18513
18517
|
expected: "(string | undefined)",
|
|
@@ -18528,10 +18532,6 @@ class NestiaMigrateApplication {
|
|
|
18528
18532
|
path: _path + ".writeOnly",
|
|
18529
18533
|
expected: "(boolean | undefined)",
|
|
18530
18534
|
value: input.writeOnly
|
|
18531
|
-
}), "string" === input.type || _report(_exceptionable, {
|
|
18532
|
-
path: _path + ".type",
|
|
18533
|
-
expected: '"string"',
|
|
18534
|
-
value: input.type
|
|
18535
18535
|
}) ].every(flag => flag);
|
|
18536
18536
|
const _vo169 = (input, _path, _exceptionable = true) => [ undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
18537
18537
|
path: _path + ".nullable",
|
|
@@ -18605,6 +18605,10 @@ class NestiaMigrateApplication {
|
|
|
18605
18605
|
path: _path + ".maxItems",
|
|
18606
18606
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
18607
18607
|
value: input.maxItems
|
|
18608
|
+
}), "array" === input.type || _report(_exceptionable, {
|
|
18609
|
+
path: _path + ".type",
|
|
18610
|
+
expected: '"array"',
|
|
18611
|
+
value: input.type
|
|
18608
18612
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
18609
18613
|
path: _path + ".title",
|
|
18610
18614
|
expected: "(string | undefined)",
|
|
@@ -18625,10 +18629,6 @@ class NestiaMigrateApplication {
|
|
|
18625
18629
|
path: _path + ".writeOnly",
|
|
18626
18630
|
expected: "(boolean | undefined)",
|
|
18627
18631
|
value: input.writeOnly
|
|
18628
|
-
}), "array" === input.type || _report(_exceptionable, {
|
|
18629
|
-
path: _path + ".type",
|
|
18630
|
-
expected: '"array"',
|
|
18631
|
-
value: input.type
|
|
18632
18632
|
}) ].every(flag => flag);
|
|
18633
18633
|
const _vo170 = (input, _path, _exceptionable = true) => [ undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
18634
18634
|
path: _path + ".nullable",
|
|
@@ -18674,6 +18674,10 @@ class NestiaMigrateApplication {
|
|
|
18674
18674
|
path: _path + ".minProperties",
|
|
18675
18675
|
expected: "(number | undefined)",
|
|
18676
18676
|
value: input.minProperties
|
|
18677
|
+
}), "object" === input.type || _report(_exceptionable, {
|
|
18678
|
+
path: _path + ".type",
|
|
18679
|
+
expected: '"object"',
|
|
18680
|
+
value: input.type
|
|
18677
18681
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
18678
18682
|
path: _path + ".title",
|
|
18679
18683
|
expected: "(string | undefined)",
|
|
@@ -18694,10 +18698,6 @@ class NestiaMigrateApplication {
|
|
|
18694
18698
|
path: _path + ".writeOnly",
|
|
18695
18699
|
expected: "(boolean | undefined)",
|
|
18696
18700
|
value: input.writeOnly
|
|
18697
|
-
}), "object" === input.type || _report(_exceptionable, {
|
|
18698
|
-
path: _path + ".type",
|
|
18699
|
-
expected: '"object"',
|
|
18700
|
-
value: input.type
|
|
18701
18701
|
}) ].every(flag => flag);
|
|
18702
18702
|
const _vo171 = (input, _path, _exceptionable = true) => [ "string" === typeof input.$ref || _report(_exceptionable, {
|
|
18703
18703
|
path: _path + ".$ref",
|
|
@@ -18785,6 +18785,10 @@ class NestiaMigrateApplication {
|
|
|
18785
18785
|
path: _path + '["default"]',
|
|
18786
18786
|
expected: "(null | undefined)",
|
|
18787
18787
|
value: input["default"]
|
|
18788
|
+
}), "null" === input.type || _report(_exceptionable, {
|
|
18789
|
+
path: _path + ".type",
|
|
18790
|
+
expected: '"null"',
|
|
18791
|
+
value: input.type
|
|
18788
18792
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
18789
18793
|
path: _path + ".title",
|
|
18790
18794
|
expected: "(string | undefined)",
|
|
@@ -18805,10 +18809,6 @@ class NestiaMigrateApplication {
|
|
|
18805
18809
|
path: _path + ".writeOnly",
|
|
18806
18810
|
expected: "(boolean | undefined)",
|
|
18807
18811
|
value: input.writeOnly
|
|
18808
|
-
}), "null" === input.type || _report(_exceptionable, {
|
|
18809
|
-
path: _path + ".type",
|
|
18810
|
-
expected: '"null"',
|
|
18811
|
-
value: input.type
|
|
18812
18812
|
}) ].every(flag => flag);
|
|
18813
18813
|
const _vo178 = (input, _path, _exceptionable = true) => [ (null !== input.type || _report(_exceptionable, {
|
|
18814
18814
|
path: _path + ".type",
|
|
@@ -18969,7 +18969,7 @@ class NestiaMigrateApplication {
|
|
|
18969
18969
|
path: _path + ".name",
|
|
18970
18970
|
expected: "(string | undefined)",
|
|
18971
18971
|
value: input.name
|
|
18972
|
-
}), "query" === input["in"] || "
|
|
18972
|
+
}), "query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || _report(_exceptionable, {
|
|
18973
18973
|
path: _path + '["in"]',
|
|
18974
18974
|
expected: '("cookie" | "header" | "path" | "query")',
|
|
18975
18975
|
value: input["in"]
|
|
@@ -20131,6 +20131,10 @@ class NestiaMigrateApplication {
|
|
|
20131
20131
|
path: _path + '["enum"]',
|
|
20132
20132
|
expected: "(Array<boolean | null> | undefined)",
|
|
20133
20133
|
value: input["enum"]
|
|
20134
|
+
}), "boolean" === input.type || _report(_exceptionable, {
|
|
20135
|
+
path: _path + ".type",
|
|
20136
|
+
expected: '"boolean"',
|
|
20137
|
+
value: input.type
|
|
20134
20138
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
20135
20139
|
path: _path + ".title",
|
|
20136
20140
|
expected: "(string | undefined)",
|
|
@@ -20151,10 +20155,6 @@ class NestiaMigrateApplication {
|
|
|
20151
20155
|
path: _path + ".writeOnly",
|
|
20152
20156
|
expected: "(boolean | undefined)",
|
|
20153
20157
|
value: input.writeOnly
|
|
20154
|
-
}), "boolean" === input.type || _report(_exceptionable, {
|
|
20155
|
-
path: _path + ".type",
|
|
20156
|
-
expected: '"boolean"',
|
|
20157
|
-
value: input.type
|
|
20158
20158
|
}) ].every(flag => flag);
|
|
20159
20159
|
const _vo228 = (input, _path, _exceptionable = true) => [ undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
20160
20160
|
path: _path + ".nullable",
|
|
@@ -20224,6 +20224,10 @@ class NestiaMigrateApplication {
|
|
|
20224
20224
|
path: _path + ".multipleOf",
|
|
20225
20225
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
20226
20226
|
value: input.multipleOf
|
|
20227
|
+
}), "integer" === input.type || _report(_exceptionable, {
|
|
20228
|
+
path: _path + ".type",
|
|
20229
|
+
expected: '"integer"',
|
|
20230
|
+
value: input.type
|
|
20227
20231
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
20228
20232
|
path: _path + ".title",
|
|
20229
20233
|
expected: "(string | undefined)",
|
|
@@ -20244,10 +20248,6 @@ class NestiaMigrateApplication {
|
|
|
20244
20248
|
path: _path + ".writeOnly",
|
|
20245
20249
|
expected: "(boolean | undefined)",
|
|
20246
20250
|
value: input.writeOnly
|
|
20247
|
-
}), "integer" === input.type || _report(_exceptionable, {
|
|
20248
|
-
path: _path + ".type",
|
|
20249
|
-
expected: '"integer"',
|
|
20250
|
-
value: input.type
|
|
20251
20251
|
}) ].every(flag => flag);
|
|
20252
20252
|
const _vo229 = (input, _path, _exceptionable = true) => [ undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
20253
20253
|
path: _path + ".nullable",
|
|
@@ -20293,6 +20293,10 @@ class NestiaMigrateApplication {
|
|
|
20293
20293
|
path: _path + ".multipleOf",
|
|
20294
20294
|
expected: "((number & ExclusiveMinimum<0>) | undefined)",
|
|
20295
20295
|
value: input.multipleOf
|
|
20296
|
+
}), "number" === input.type || _report(_exceptionable, {
|
|
20297
|
+
path: _path + ".type",
|
|
20298
|
+
expected: '"number"',
|
|
20299
|
+
value: input.type
|
|
20296
20300
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
20297
20301
|
path: _path + ".title",
|
|
20298
20302
|
expected: "(string | undefined)",
|
|
@@ -20313,10 +20317,6 @@ class NestiaMigrateApplication {
|
|
|
20313
20317
|
path: _path + ".writeOnly",
|
|
20314
20318
|
expected: "(boolean | undefined)",
|
|
20315
20319
|
value: input.writeOnly
|
|
20316
|
-
}), "number" === input.type || _report(_exceptionable, {
|
|
20317
|
-
path: _path + ".type",
|
|
20318
|
-
expected: '"number"',
|
|
20319
|
-
value: input.type
|
|
20320
20320
|
}) ].every(flag => flag);
|
|
20321
20321
|
const _vo230 = (input, _path, _exceptionable = true) => [ undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
20322
20322
|
path: _path + ".nullable",
|
|
@@ -20366,6 +20366,10 @@ class NestiaMigrateApplication {
|
|
|
20366
20366
|
path: _path + ".maxLength",
|
|
20367
20367
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
20368
20368
|
value: input.maxLength
|
|
20369
|
+
}), "string" === input.type || _report(_exceptionable, {
|
|
20370
|
+
path: _path + ".type",
|
|
20371
|
+
expected: '"string"',
|
|
20372
|
+
value: input.type
|
|
20369
20373
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
20370
20374
|
path: _path + ".title",
|
|
20371
20375
|
expected: "(string | undefined)",
|
|
@@ -20386,10 +20390,6 @@ class NestiaMigrateApplication {
|
|
|
20386
20390
|
path: _path + ".writeOnly",
|
|
20387
20391
|
expected: "(boolean | undefined)",
|
|
20388
20392
|
value: input.writeOnly
|
|
20389
|
-
}), "string" === input.type || _report(_exceptionable, {
|
|
20390
|
-
path: _path + ".type",
|
|
20391
|
-
expected: '"string"',
|
|
20392
|
-
value: input.type
|
|
20393
20393
|
}) ].every(flag => flag);
|
|
20394
20394
|
const _vo231 = (input, _path, _exceptionable = true) => [ undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
20395
20395
|
path: _path + ".nullable",
|
|
@@ -20463,6 +20463,10 @@ class NestiaMigrateApplication {
|
|
|
20463
20463
|
path: _path + ".maxItems",
|
|
20464
20464
|
expected: '((number & Type<"uint64">) | undefined)',
|
|
20465
20465
|
value: input.maxItems
|
|
20466
|
+
}), "array" === input.type || _report(_exceptionable, {
|
|
20467
|
+
path: _path + ".type",
|
|
20468
|
+
expected: '"array"',
|
|
20469
|
+
value: input.type
|
|
20466
20470
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
20467
20471
|
path: _path + ".title",
|
|
20468
20472
|
expected: "(string | undefined)",
|
|
@@ -20483,10 +20487,6 @@ class NestiaMigrateApplication {
|
|
|
20483
20487
|
path: _path + ".writeOnly",
|
|
20484
20488
|
expected: "(boolean | undefined)",
|
|
20485
20489
|
value: input.writeOnly
|
|
20486
|
-
}), "array" === input.type || _report(_exceptionable, {
|
|
20487
|
-
path: _path + ".type",
|
|
20488
|
-
expected: '"array"',
|
|
20489
|
-
value: input.type
|
|
20490
20490
|
}) ].every(flag => flag);
|
|
20491
20491
|
const _vo232 = (input, _path, _exceptionable = true) => [ undefined === input.nullable || "boolean" === typeof input.nullable || _report(_exceptionable, {
|
|
20492
20492
|
path: _path + ".nullable",
|
|
@@ -20532,6 +20532,10 @@ class NestiaMigrateApplication {
|
|
|
20532
20532
|
path: _path + ".minProperties",
|
|
20533
20533
|
expected: "(number | undefined)",
|
|
20534
20534
|
value: input.minProperties
|
|
20535
|
+
}), "object" === input.type || _report(_exceptionable, {
|
|
20536
|
+
path: _path + ".type",
|
|
20537
|
+
expected: '"object"',
|
|
20538
|
+
value: input.type
|
|
20535
20539
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
20536
20540
|
path: _path + ".title",
|
|
20537
20541
|
expected: "(string | undefined)",
|
|
@@ -20552,10 +20556,6 @@ class NestiaMigrateApplication {
|
|
|
20552
20556
|
path: _path + ".writeOnly",
|
|
20553
20557
|
expected: "(boolean | undefined)",
|
|
20554
20558
|
value: input.writeOnly
|
|
20555
|
-
}), "object" === input.type || _report(_exceptionable, {
|
|
20556
|
-
path: _path + ".type",
|
|
20557
|
-
expected: '"object"',
|
|
20558
|
-
value: input.type
|
|
20559
20559
|
}) ].every(flag => flag);
|
|
20560
20560
|
const _vo233 = (input, _path, _exceptionable = true) => [ "string" === typeof input.$ref || _report(_exceptionable, {
|
|
20561
20561
|
path: _path + ".$ref",
|
|
@@ -20643,6 +20643,10 @@ class NestiaMigrateApplication {
|
|
|
20643
20643
|
path: _path + '["default"]',
|
|
20644
20644
|
expected: "(null | undefined)",
|
|
20645
20645
|
value: input["default"]
|
|
20646
|
+
}), "null" === input.type || _report(_exceptionable, {
|
|
20647
|
+
path: _path + ".type",
|
|
20648
|
+
expected: '"null"',
|
|
20649
|
+
value: input.type
|
|
20646
20650
|
}), undefined === input.title || "string" === typeof input.title || _report(_exceptionable, {
|
|
20647
20651
|
path: _path + ".title",
|
|
20648
20652
|
expected: "(string | undefined)",
|
|
@@ -20663,10 +20667,6 @@ class NestiaMigrateApplication {
|
|
|
20663
20667
|
path: _path + ".writeOnly",
|
|
20664
20668
|
expected: "(boolean | undefined)",
|
|
20665
20669
|
value: input.writeOnly
|
|
20666
|
-
}), "null" === input.type || _report(_exceptionable, {
|
|
20667
|
-
path: _path + ".type",
|
|
20668
|
-
expected: '"null"',
|
|
20669
|
-
value: input.type
|
|
20670
20670
|
}) ].every(flag => flag);
|
|
20671
20671
|
const _vo240 = (input, _path, _exceptionable = true) => [ (null !== input.type || _report(_exceptionable, {
|
|
20672
20672
|
path: _path + ".type",
|
|
@@ -20835,7 +20835,7 @@ class NestiaMigrateApplication {
|
|
|
20835
20835
|
path: _path + ".name",
|
|
20836
20836
|
expected: "(string | undefined)",
|
|
20837
20837
|
value: input.name
|
|
20838
|
-
}), "query" === input["in"] || "
|
|
20838
|
+
}), "query" === input["in"] || "header" === input["in"] || "cookie" === input["in"] || "path" === input["in"] || "querystring" === input["in"] || _report(_exceptionable, {
|
|
20839
20839
|
path: _path + '["in"]',
|
|
20840
20840
|
expected: '("cookie" | "header" | "path" | "query" | "querystring")',
|
|
20841
20841
|
value: input["in"]
|