@lark-apaas/fullstack-nestjs-core 1.1.16-alpha.4 → 1.1.16-alpha.6

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
@@ -6,6 +6,7 @@ import { Request, Response, NextFunction } from 'express';
6
6
  import { PlatformHttpClient } from '@lark-apaas/nestjs-common';
7
7
  export { AutoTrace } from '@lark-apaas/nestjs-common';
8
8
  export * from '@lark-apaas/nestjs-authnpaas';
9
+ export * from '@lark-apaas/nestjs-capability';
9
10
  export * from '@lark-apaas/nestjs-datapaas';
10
11
  export * from '@lark-apaas/nestjs-observable';
11
12
  export * from '@lark-apaas/nestjs-trigger';
@@ -61,6 +62,11 @@ interface PlatformModuleOptions {
61
62
  * 平台 HttpClient 配置
62
63
  */
63
64
  httpClient?: PlatformHttpClientOptions;
65
+ /**
66
+ * 能力配置目录路径
67
+ * 默认: server/capabilities
68
+ */
69
+ capabilitiesDir?: string;
64
70
  }
65
71
 
66
72
  declare class PlatformModule implements NestModule {
package/dist/index.d.ts CHANGED
@@ -6,6 +6,7 @@ import { Request, Response, NextFunction } from 'express';
6
6
  import { PlatformHttpClient } from '@lark-apaas/nestjs-common';
7
7
  export { AutoTrace } from '@lark-apaas/nestjs-common';
8
8
  export * from '@lark-apaas/nestjs-authnpaas';
9
+ export * from '@lark-apaas/nestjs-capability';
9
10
  export * from '@lark-apaas/nestjs-datapaas';
10
11
  export * from '@lark-apaas/nestjs-observable';
11
12
  export * from '@lark-apaas/nestjs-trigger';
@@ -61,6 +62,11 @@ interface PlatformModuleOptions {
61
62
  * 平台 HttpClient 配置
62
63
  */
63
64
  httpClient?: PlatformHttpClientOptions;
65
+ /**
66
+ * 能力配置目录路径
67
+ * 默认: server/capabilities
68
+ */
69
+ capabilitiesDir?: string;
64
70
  }
65
71
 
66
72
  declare class PlatformModule implements NestModule {