@nestia/migrate 0.18.2 → 0.19.0-dev.20241101
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/MigrateApplication.d.ts +3 -1
- package/lib/MigrateApplication.js +7551 -7051
- package/lib/MigrateApplication.js.map +1 -1
- package/lib/index.mjs +8559 -0
- package/lib/index.mjs.map +1 -0
- package/lib/internal/MigrateCommander.js +1 -1
- package/lib/internal/MigrateCommander.js.map +1 -1
- package/lib/internal/MigrateInquirer.d.ts +1 -0
- package/lib/internal/MigrateInquirer.js +3 -1
- package/lib/internal/MigrateInquirer.js.map +1 -1
- package/lib/programmers/MigrateSchemaProgrammer.js +13 -1
- package/lib/programmers/MigrateSchemaProgrammer.js.map +1 -1
- package/package.json +12 -8
- package/src/MigrateApplication.ts +27 -5
- package/src/bundles/NEST_TEMPLATE.ts +9 -4
- package/src/bundles/SDK_TEMPLATE.ts +1 -1
- package/src/internal/MigrateCommander.ts +1 -1
- package/src/internal/MigrateInquirer.ts +3 -0
@@ -5,9 +5,10 @@ import { IHttpMigrateProgram } from "./structures/IHttpMigrateProgram";
|
|
5
5
|
export declare class MigrateApplication {
|
6
6
|
readonly document: OpenApi.IDocument;
|
7
7
|
private constructor();
|
8
|
-
static create(document: SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument | OpenApi.IDocument):
|
8
|
+
static create(document: SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument | OpenApi.IDocument): IValidation<MigrateApplication>;
|
9
9
|
nest(config: MigrateApplication.IConfig): MigrateApplication.IOutput;
|
10
10
|
sdk(config: MigrateApplication.IConfig): MigrateApplication.IOutput;
|
11
|
+
private finalize;
|
11
12
|
}
|
12
13
|
export declare namespace MigrateApplication {
|
13
14
|
interface IOutput {
|
@@ -18,5 +19,6 @@ export declare namespace MigrateApplication {
|
|
18
19
|
interface IConfig {
|
19
20
|
simulate: boolean;
|
20
21
|
e2e: boolean;
|
22
|
+
package?: string;
|
21
23
|
}
|
22
24
|
}
|