@lark-apaas/fullstack-nestjs-core 1.1.0-alpha.0 → 1.1.0

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/dist/index.d.cts CHANGED
@@ -50,6 +50,13 @@ declare class PlatformModule implements NestModule {
50
50
  configure(consumer: MiddlewareConsumer): void;
51
51
  }
52
52
 
53
+ /**
54
+ * 初始化应用的基础能力(中间件、过滤器、Swagger 等)。
55
+ *
56
+ * @param app NestExpressApplication 实例
57
+ * @param perms 配置项
58
+ * @param perms.disableSwagger 是否禁用 Swagger(默认:false)
59
+ */
53
60
  declare function configureApp(app: NestExpressApplication, perms?: {
54
61
  disableSwagger?: boolean;
55
62
  }): Promise<void>;
package/dist/index.d.ts CHANGED
@@ -50,6 +50,13 @@ declare class PlatformModule implements NestModule {
50
50
  configure(consumer: MiddlewareConsumer): void;
51
51
  }
52
52
 
53
+ /**
54
+ * 初始化应用的基础能力(中间件、过滤器、Swagger 等)。
55
+ *
56
+ * @param app NestExpressApplication 实例
57
+ * @param perms 配置项
58
+ * @param perms.disableSwagger 是否禁用 Swagger(默认:false)
59
+ */
53
60
  declare function configureApp(app: NestExpressApplication, perms?: {
54
61
  disableSwagger?: boolean;
55
62
  }): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lark-apaas/fullstack-nestjs-core",
3
- "version": "1.1.0-alpha.0",
3
+ "version": "1.1.0",
4
4
  "description": "FullStack Nestjs Core",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",