@nestia/sdk 3.7.0 → 3.7.1-dev.20240717

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.
@@ -2,7 +2,7 @@ import { INestiaConfig } from "@nestia/sdk";
2
2
  import { Module } from "@nestjs/common";
3
3
  import { NestFactory } from "@nestjs/core";
4
4
 
5
- // import { FastifyAdaptor } from "@nestjs/platform-fastify";
5
+ // import { FastifyAdapter } from "@nestjs/platform-fastify";
6
6
 
7
7
  export const NESTIA_CONFIG: INestiaConfig = {
8
8
  /**
@@ -22,7 +22,7 @@ export const NESTIA_CONFIG: INestiaConfig = {
22
22
  })
23
23
  class MyModule {}
24
24
  const app = await NestFactory.create(MyModule);
25
- // const app = await NestFactory.create(YourModule, new FastifyAdaptor());
25
+ // const app = await NestFactory.create(YourModule, new FastifyAdapter());
26
26
  // app.setGlobalPrefix("api");
27
27
  // app.enableVersioning({
28
28
  // type: VersioningType.URI,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestia/sdk",
3
- "version": "3.7.0",
3
+ "version": "3.7.1-dev.20240717",
4
4
  "description": "Nestia SDK and Swagger generator",
5
5
  "main": "lib/index.js",
6
6
  "typings": "lib/index.d.ts",
@@ -32,8 +32,8 @@
32
32
  },
33
33
  "homepage": "https://nestia.io",
34
34
  "dependencies": {
35
- "@nestia/fetcher": "^3.7.0",
36
- "@nestia/core": "^3.7.0",
35
+ "@nestia/fetcher": "^3.7.1-dev.20240717",
36
+ "@nestia/core": "^3.7.1-dev.20240717",
37
37
  "@samchon/openapi": "^0.4.1",
38
38
  "cli": "^1.0.1",
39
39
  "get-function-location": "^2.0.0",
@@ -47,8 +47,8 @@
47
47
  "typia": "^6.5.0"
48
48
  },
49
49
  "peerDependencies": {
50
- "@nestia/fetcher": ">=3.7.0",
51
- "@nestia/core": ">=3.7.0",
50
+ "@nestia/fetcher": ">=3.7.1-dev.20240717",
51
+ "@nestia/core": ">=3.7.1-dev.20240717",
52
52
  "@nestjs/common": ">=7.0.1",
53
53
  "@nestjs/core": ">=7.0.1",
54
54
  "reflect-metadata": ">=0.1.12",
@@ -175,12 +175,12 @@ export namespace INestiaConfig {
175
175
 
176
176
  /**
177
177
  * OpenAPI version.
178
- *
178
+ *
179
179
  * If you configure this property to be `2.0` or `3.0`, the newly generated
180
180
  * `swagger.json` file would follow the specified OpenAPI version. The newly
181
181
  * generated `swagger.json` file would be downgraded from the OpenAPI v3.1
182
182
  * specification by {@link OpenApi.downgrade} method.
183
- *
183
+ *
184
184
  * @default 3.1
185
185
  */
186
186
  openapi?: "2.0" | "3.0" | "3.1";