Skip to content

Commit

Permalink
Merge pull request #827 from samchon/features/migrate
Browse files Browse the repository at this point in the history
Enhance `@nestia/migrate` for non-standard case.
  • Loading branch information
samchon authored Mar 6, 2024
2 parents 641b3e4 + 7b0dcd6 commit 4d635f9
Show file tree
Hide file tree
Showing 13 changed files with 1,270 additions and 40 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@nestia/station",
"version": "2.5.12",
"version": "2.5.13",
"description": "Nestia station",
"main": "prettier.config.js",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nestia/core",
"version": "2.5.12",
"version": "2.5.13",
"description": "Super-fast validation decorators of NestJS",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -36,7 +36,7 @@
},
"homepage": "https://nestia.io",
"dependencies": {
"@nestia/fetcher": "^2.5.12",
"@nestia/fetcher": "^2.5.13",
"@nestjs/common": ">=7.0.1",
"@nestjs/core": ">=7.0.1",
"detect-ts-node": "^1.0.5",
Expand All @@ -48,7 +48,7 @@
"typia": "^5.4.12"
},
"peerDependencies": {
"@nestia/fetcher": ">=2.5.12",
"@nestia/fetcher": ">=2.5.13",
"@nestjs/common": ">=7.0.1",
"@nestjs/core": ">=7.0.1",
"reflect-metadata": ">=0.1.12",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/structures/ISwaggerSecurityScheme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ export namespace ISwaggerSecurityScheme {
}
export interface IFlow {
authorizationUrl: string;
tokenUrl: string;
refreshUrl: string;
tokenUrl?: string;
refreshUrl?: string;
scopes?: Record<string, string>;
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/fetcher/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nestia/fetcher",
"version": "2.5.12",
"version": "2.5.13",
"description": "Fetcher library of Nestia SDK",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down
Loading

0 comments on commit 4d635f9

Please sign in to comment.