-
-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Complete v3.19 update with
editor
and migrate
.
- Loading branch information
Showing
29 changed files
with
673 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
{ | ||
"openapi": "3.1.0", | ||
"servers": [ | ||
{ | ||
"url": "https://github.com/samchon/nestia", | ||
"description": "insert your server url" | ||
} | ||
], | ||
"info": { | ||
"version": "3.19.0-dev.20241111", | ||
"title": "@samchon/nestia-test", | ||
"description": "Test program of Nestia", | ||
"license": { | ||
"name": "MIT" | ||
} | ||
}, | ||
"paths": { | ||
"/body/optional/json": { | ||
"post": { | ||
"tags": [], | ||
"parameters": [], | ||
"requestBody": { | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/IBodyOptional" | ||
} | ||
} | ||
}, | ||
"required": false | ||
}, | ||
"responses": { | ||
"201": { | ||
"description": "", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"$ref": "#/components/schemas/IBodyOptional" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"/body/optional/plain": { | ||
"post": { | ||
"tags": [], | ||
"parameters": [], | ||
"requestBody": { | ||
"content": { | ||
"text/plain": { | ||
"schema": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"required": false | ||
}, | ||
"responses": { | ||
"201": { | ||
"description": "", | ||
"content": { | ||
"application/json": { | ||
"schema": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"/health": { | ||
"get": { | ||
"tags": [], | ||
"parameters": [], | ||
"responses": { | ||
"200": { | ||
"description": "", | ||
"content": { | ||
"application/json": {} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"components": { | ||
"schemas": { | ||
"IBodyOptional": { | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "string", | ||
"format": "uuid" | ||
}, | ||
"value": { | ||
"type": "number" | ||
} | ||
}, | ||
"required": [ | ||
"id", | ||
"value" | ||
] | ||
} | ||
} | ||
}, | ||
"tags": [], | ||
"x-samchon-emended": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
test/features/query-decompose-false/src/api/functional/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** | ||
* @packageDocumentation | ||
* @module api.functional | ||
* @nestia Generated by Nestia - https://github.com/samchon/nestia | ||
*/ | ||
//================================================================ | ||
export * as query from "./query"; |
Oops, something went wrong.