@lark-apaas/fullstack-nestjs-core 1.1.34-alpha.54 → 1.1.34-alpha.56
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.cjs +44 -11
- package/dist/index.d.cts +9 -2
- package/dist/index.d.ts +9 -2
- package/dist/index.js +44 -12
- package/package.json +6 -6
package/dist/index.cjs
CHANGED
|
@@ -5492,9 +5492,9 @@ var require_read = __commonJS({
|
|
|
5492
5492
|
}
|
|
5493
5493
|
});
|
|
5494
5494
|
|
|
5495
|
-
// ../../../node_modules/media-typer/index.js
|
|
5495
|
+
// ../../../node_modules/type-is/node_modules/media-typer/index.js
|
|
5496
5496
|
var require_media_typer = __commonJS({
|
|
5497
|
-
"../../../node_modules/media-typer/index.js"(exports2) {
|
|
5497
|
+
"../../../node_modules/type-is/node_modules/media-typer/index.js"(exports2) {
|
|
5498
5498
|
"use strict";
|
|
5499
5499
|
var paramRegExp = /; *([!#$%&'\*\+\-\.0-9A-Z\^_`a-z\|~]+) *= *("(?:[ !\u0023-\u005b\u005d-\u007e\u0080-\u00ff]|\\[\u0020-\u007e])*"|[!#$%&'\*\+\-\.0-9A-Z\^_`a-z\|~]+) */g;
|
|
5500
5500
|
var textRegExp = /^[\u0020-\u007e\u0080-\u00ff]+$/;
|
|
@@ -34404,6 +34404,7 @@ var require_express2 = __commonJS({
|
|
|
34404
34404
|
// src/index.ts
|
|
34405
34405
|
var index_exports = {};
|
|
34406
34406
|
__export(index_exports, {
|
|
34407
|
+
AuthZPaasModule: () => import_nestjs_authzpaas2.AuthZPaasModule,
|
|
34407
34408
|
AuthorizationSDK: () => import_nestjs_authzpaas2.AuthorizationSDK,
|
|
34408
34409
|
AutoTrace: () => import_nestjs_common8.AutoTrace,
|
|
34409
34410
|
Can: () => import_nestjs_authzpaas2.Can,
|
|
@@ -34626,31 +34627,55 @@ var ViewContextMiddleware = class _ViewContextMiddleware {
|
|
|
34626
34627
|
constructor(client) {
|
|
34627
34628
|
this.client = client;
|
|
34628
34629
|
}
|
|
34629
|
-
async
|
|
34630
|
+
async getAppPublished(appId) {
|
|
34630
34631
|
if (!appId) {
|
|
34631
|
-
this.logger.warn(`appId is empty, skip get app
|
|
34632
|
+
this.logger.warn(`appId is empty, skip get app published`);
|
|
34632
34633
|
return null;
|
|
34633
34634
|
}
|
|
34634
34635
|
try {
|
|
34635
34636
|
const resp = await this.client.get(`/b/${appId}/get_published_v2`);
|
|
34636
34637
|
if (resp.status !== 200) {
|
|
34637
|
-
throw new Error(`Failed to get app
|
|
34638
|
+
throw new Error(`Failed to get app published, status: ${resp.status}`);
|
|
34638
34639
|
}
|
|
34639
34640
|
const data = await resp.json();
|
|
34640
34641
|
if (data.status_code !== "0") {
|
|
34641
|
-
throw new Error(`Failed to get app
|
|
34642
|
+
throw new Error(`Failed to get app published, status_code: ${data.status_code}`);
|
|
34642
34643
|
}
|
|
34643
|
-
return data.data
|
|
34644
|
+
return data.data ?? null;
|
|
34644
34645
|
} catch (err) {
|
|
34645
|
-
this.logger.error(err, "Failed to get app
|
|
34646
|
+
this.logger.error(err, "Failed to get app published");
|
|
34647
|
+
return null;
|
|
34648
|
+
}
|
|
34649
|
+
}
|
|
34650
|
+
async getTenantInfo(appId) {
|
|
34651
|
+
if (!appId) {
|
|
34652
|
+
this.logger.warn(`appId is empty, skip get tenant info`);
|
|
34653
|
+
return null;
|
|
34654
|
+
}
|
|
34655
|
+
try {
|
|
34656
|
+
const resp = await this.client.get(`/b/${appId}/tenant_info`);
|
|
34657
|
+
if (resp.status !== 200) {
|
|
34658
|
+
throw new Error(`Failed to get tenant info, status: ${resp.status}`);
|
|
34659
|
+
}
|
|
34660
|
+
const data = await resp.json();
|
|
34661
|
+
if (data.status_code !== "0") {
|
|
34662
|
+
throw new Error(`Failed to get tenant info, status_code: ${data.status_code}`);
|
|
34663
|
+
}
|
|
34664
|
+
return data.data ?? null;
|
|
34665
|
+
} catch (err) {
|
|
34666
|
+
this.logger.error(err, "Failed to get tenant info");
|
|
34646
34667
|
return null;
|
|
34647
34668
|
}
|
|
34648
34669
|
}
|
|
34649
34670
|
async use(req, res, next) {
|
|
34650
34671
|
const { userId, tenantId, appId, loginUrl, userType } = req.userContext;
|
|
34651
34672
|
const csrfToken = req.csrfToken;
|
|
34652
|
-
const appInfo = await this.getAppInfo(appId);
|
|
34653
34673
|
const environment = mapToWindowEnvironment(process.env.FORCE_FRAMEWORK_ENVIRONMENT);
|
|
34674
|
+
const [appPublishedData, tenantInfoData] = await Promise.all([
|
|
34675
|
+
this.getAppPublished(appId),
|
|
34676
|
+
this.getTenantInfo(appId)
|
|
34677
|
+
]);
|
|
34678
|
+
const appInfo = appPublishedData?.app_info ?? null;
|
|
34654
34679
|
req.__platform_data__ = {
|
|
34655
34680
|
csrfToken: csrfToken ?? "",
|
|
34656
34681
|
userId: userId ?? "",
|
|
@@ -34661,7 +34686,12 @@ var ViewContextMiddleware = class _ViewContextMiddleware {
|
|
|
34661
34686
|
loginUrl: loginUrl ?? "",
|
|
34662
34687
|
userType: userType ?? "",
|
|
34663
34688
|
tenantId,
|
|
34664
|
-
environment
|
|
34689
|
+
environment,
|
|
34690
|
+
// 预注入字段,前端无需再发 API 请求
|
|
34691
|
+
showBadge: appInfo?.show_badge !== false,
|
|
34692
|
+
tenantName: safeEscape(tenantInfoData?.tenant_info?.name ?? ""),
|
|
34693
|
+
isInternetVisible: tenantInfoData?.is_internet_visible ?? false,
|
|
34694
|
+
appPublished: appPublishedData ?? null
|
|
34665
34695
|
};
|
|
34666
34696
|
res.locals = {
|
|
34667
34697
|
...res.locals ?? {},
|
|
@@ -36357,7 +36387,9 @@ var PlatformModule = class _PlatformModule {
|
|
|
36357
36387
|
})
|
|
36358
36388
|
],
|
|
36359
36389
|
import_nestjs_authnpaas.AuthNPaasModule.forRoot(),
|
|
36360
|
-
import_nestjs_authzpaas.AuthZPaasModule.forRoot(
|
|
36390
|
+
import_nestjs_authzpaas.AuthZPaasModule.forRoot({
|
|
36391
|
+
...options.authz || {}
|
|
36392
|
+
}),
|
|
36361
36393
|
import_nestjs_trigger.AutomationModule.forRoot(),
|
|
36362
36394
|
import_nestjs_capability.CapabilityModule.forRoot({
|
|
36363
36395
|
capabilitiesDir: options.capabilitiesDir,
|
|
@@ -36548,6 +36580,7 @@ var import_nestjs_common8 = require("@lark-apaas/nestjs-common");
|
|
|
36548
36580
|
var import_nestjs_authzpaas2 = require("@lark-apaas/nestjs-authzpaas");
|
|
36549
36581
|
// Annotate the CommonJS export names for ESM import in node:
|
|
36550
36582
|
0 && (module.exports = {
|
|
36583
|
+
AuthZPaasModule,
|
|
36551
36584
|
AuthorizationSDK,
|
|
36552
36585
|
AutoTrace,
|
|
36553
36586
|
Can,
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { NestModule, DynamicModule, MiddlewareConsumer, OnModuleInit, NestMiddleware } from '@nestjs/common';
|
|
2
2
|
import { HttpClientConfig, PlatformPluginOptions, HttpClient } from '@lark-apaas/http-client';
|
|
3
|
+
import { AuthZPaasModuleOptions } from '@lark-apaas/nestjs-authzpaas';
|
|
4
|
+
export { AddMembersParams, AuthZPaasModule, AuthorizationSDK, Can, CanRole, ChatSimpleDTO, CommonParam, CreateRoleParams, CreateRoleResponse, DepartmentDTO, DepartmentEntity, DepartmentSimpleDTO, FilterParams, ForceRoleDTO, I18nText, IPermissionResolver, ListMembersParams, ListMembersResponse, ListRolesParams, MemberMutationData, MemberType, PERMISSION_RESOLVER_TOKEN, PermissionPoint, PermissionRequirement, PresetGroupDTO, RemoveMembersParams, RoleMemberDTO, SearchChatEntity, SearchParams, SearchResponse, SearchResult, SearchUserEntity, UpdateRoleParams, UserSimpleDTO } from '@lark-apaas/nestjs-authzpaas';
|
|
3
5
|
import { NestExpressApplication } from '@nestjs/platform-express';
|
|
4
6
|
import { PlatformHttpClient, RequestContextService, ObservableService } from '@lark-apaas/nestjs-common';
|
|
5
7
|
export { AutoTrace } from '@lark-apaas/nestjs-common';
|
|
@@ -13,7 +15,6 @@ export * from '@lark-apaas/nestjs-capability';
|
|
|
13
15
|
export * from '@lark-apaas/nestjs-datapaas';
|
|
14
16
|
export * from '@lark-apaas/nestjs-observable';
|
|
15
17
|
export * from '@lark-apaas/nestjs-trigger';
|
|
16
|
-
export { AddMembersParams, AuthorizationSDK, Can, CanRole, ChatSimpleDTO, CommonParam, CreateRoleParams, CreateRoleResponse, DepartmentDTO, DepartmentEntity, DepartmentSimpleDTO, FilterParams, ForceRoleDTO, I18nText, IPermissionResolver, ListMembersParams, ListMembersResponse, ListRolesParams, MemberMutationData, MemberType, PERMISSION_RESOLVER_TOKEN, PermissionRequirement, PresetGroupDTO, RemoveMembersParams, RoleMemberDTO, SearchChatEntity, SearchParams, SearchResponse, SearchResult, SearchUserEntity, UpdateRoleParams, UserSimpleDTO } from '@lark-apaas/nestjs-authzpaas';
|
|
17
18
|
|
|
18
19
|
declare global {
|
|
19
20
|
namespace Express {
|
|
@@ -72,6 +73,11 @@ interface PlatformModuleOptions {
|
|
|
72
73
|
* 默认: server/capabilities
|
|
73
74
|
*/
|
|
74
75
|
capabilitiesDir?: string;
|
|
76
|
+
/**
|
|
77
|
+
* AuthZPaas 模块配置
|
|
78
|
+
* 可传入 permissionResolver 等选项,透传给 AuthZPaasModule.forRoot()
|
|
79
|
+
*/
|
|
80
|
+
authz?: AuthZPaasModuleOptions;
|
|
75
81
|
}
|
|
76
82
|
|
|
77
83
|
declare class PlatformModule implements NestModule {
|
|
@@ -195,7 +201,8 @@ declare class ViewContextMiddleware implements NestMiddleware {
|
|
|
195
201
|
private readonly client;
|
|
196
202
|
private readonly logger;
|
|
197
203
|
constructor(client: PlatformHttpClient);
|
|
198
|
-
private
|
|
204
|
+
private getAppPublished;
|
|
205
|
+
private getTenantInfo;
|
|
199
206
|
use(req: Request, res: Response, next: NextFunction): Promise<void>;
|
|
200
207
|
}
|
|
201
208
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { NestModule, DynamicModule, MiddlewareConsumer, OnModuleInit, NestMiddleware } from '@nestjs/common';
|
|
2
2
|
import { HttpClientConfig, PlatformPluginOptions, HttpClient } from '@lark-apaas/http-client';
|
|
3
|
+
import { AuthZPaasModuleOptions } from '@lark-apaas/nestjs-authzpaas';
|
|
4
|
+
export { AddMembersParams, AuthZPaasModule, AuthorizationSDK, Can, CanRole, ChatSimpleDTO, CommonParam, CreateRoleParams, CreateRoleResponse, DepartmentDTO, DepartmentEntity, DepartmentSimpleDTO, FilterParams, ForceRoleDTO, I18nText, IPermissionResolver, ListMembersParams, ListMembersResponse, ListRolesParams, MemberMutationData, MemberType, PERMISSION_RESOLVER_TOKEN, PermissionPoint, PermissionRequirement, PresetGroupDTO, RemoveMembersParams, RoleMemberDTO, SearchChatEntity, SearchParams, SearchResponse, SearchResult, SearchUserEntity, UpdateRoleParams, UserSimpleDTO } from '@lark-apaas/nestjs-authzpaas';
|
|
3
5
|
import { NestExpressApplication } from '@nestjs/platform-express';
|
|
4
6
|
import { PlatformHttpClient, RequestContextService, ObservableService } from '@lark-apaas/nestjs-common';
|
|
5
7
|
export { AutoTrace } from '@lark-apaas/nestjs-common';
|
|
@@ -13,7 +15,6 @@ export * from '@lark-apaas/nestjs-capability';
|
|
|
13
15
|
export * from '@lark-apaas/nestjs-datapaas';
|
|
14
16
|
export * from '@lark-apaas/nestjs-observable';
|
|
15
17
|
export * from '@lark-apaas/nestjs-trigger';
|
|
16
|
-
export { AddMembersParams, AuthorizationSDK, Can, CanRole, ChatSimpleDTO, CommonParam, CreateRoleParams, CreateRoleResponse, DepartmentDTO, DepartmentEntity, DepartmentSimpleDTO, FilterParams, ForceRoleDTO, I18nText, IPermissionResolver, ListMembersParams, ListMembersResponse, ListRolesParams, MemberMutationData, MemberType, PERMISSION_RESOLVER_TOKEN, PermissionRequirement, PresetGroupDTO, RemoveMembersParams, RoleMemberDTO, SearchChatEntity, SearchParams, SearchResponse, SearchResult, SearchUserEntity, UpdateRoleParams, UserSimpleDTO } from '@lark-apaas/nestjs-authzpaas';
|
|
17
18
|
|
|
18
19
|
declare global {
|
|
19
20
|
namespace Express {
|
|
@@ -72,6 +73,11 @@ interface PlatformModuleOptions {
|
|
|
72
73
|
* 默认: server/capabilities
|
|
73
74
|
*/
|
|
74
75
|
capabilitiesDir?: string;
|
|
76
|
+
/**
|
|
77
|
+
* AuthZPaas 模块配置
|
|
78
|
+
* 可传入 permissionResolver 等选项,透传给 AuthZPaasModule.forRoot()
|
|
79
|
+
*/
|
|
80
|
+
authz?: AuthZPaasModuleOptions;
|
|
75
81
|
}
|
|
76
82
|
|
|
77
83
|
declare class PlatformModule implements NestModule {
|
|
@@ -195,7 +201,8 @@ declare class ViewContextMiddleware implements NestMiddleware {
|
|
|
195
201
|
private readonly client;
|
|
196
202
|
private readonly logger;
|
|
197
203
|
constructor(client: PlatformHttpClient);
|
|
198
|
-
private
|
|
204
|
+
private getAppPublished;
|
|
205
|
+
private getTenantInfo;
|
|
199
206
|
use(req: Request, res: Response, next: NextFunction): Promise<void>;
|
|
200
207
|
}
|
|
201
208
|
|
package/dist/index.js
CHANGED
|
@@ -5491,9 +5491,9 @@ var require_read = __commonJS({
|
|
|
5491
5491
|
}
|
|
5492
5492
|
});
|
|
5493
5493
|
|
|
5494
|
-
// ../../../node_modules/media-typer/index.js
|
|
5494
|
+
// ../../../node_modules/type-is/node_modules/media-typer/index.js
|
|
5495
5495
|
var require_media_typer = __commonJS({
|
|
5496
|
-
"../../../node_modules/media-typer/index.js"(exports) {
|
|
5496
|
+
"../../../node_modules/type-is/node_modules/media-typer/index.js"(exports) {
|
|
5497
5497
|
"use strict";
|
|
5498
5498
|
var paramRegExp = /; *([!#$%&'\*\+\-\.0-9A-Z\^_`a-z\|~]+) *= *("(?:[ !\u0023-\u005b\u005d-\u007e\u0080-\u00ff]|\\[\u0020-\u007e])*"|[!#$%&'\*\+\-\.0-9A-Z\^_`a-z\|~]+) */g;
|
|
5499
5499
|
var textRegExp = /^[\u0020-\u007e\u0080-\u00ff]+$/;
|
|
@@ -34600,31 +34600,55 @@ var ViewContextMiddleware = class _ViewContextMiddleware {
|
|
|
34600
34600
|
constructor(client) {
|
|
34601
34601
|
this.client = client;
|
|
34602
34602
|
}
|
|
34603
|
-
async
|
|
34603
|
+
async getAppPublished(appId) {
|
|
34604
34604
|
if (!appId) {
|
|
34605
|
-
this.logger.warn(`appId is empty, skip get app
|
|
34605
|
+
this.logger.warn(`appId is empty, skip get app published`);
|
|
34606
34606
|
return null;
|
|
34607
34607
|
}
|
|
34608
34608
|
try {
|
|
34609
34609
|
const resp = await this.client.get(`/b/${appId}/get_published_v2`);
|
|
34610
34610
|
if (resp.status !== 200) {
|
|
34611
|
-
throw new Error(`Failed to get app
|
|
34611
|
+
throw new Error(`Failed to get app published, status: ${resp.status}`);
|
|
34612
34612
|
}
|
|
34613
34613
|
const data = await resp.json();
|
|
34614
34614
|
if (data.status_code !== "0") {
|
|
34615
|
-
throw new Error(`Failed to get app
|
|
34615
|
+
throw new Error(`Failed to get app published, status_code: ${data.status_code}`);
|
|
34616
34616
|
}
|
|
34617
|
-
return data.data
|
|
34617
|
+
return data.data ?? null;
|
|
34618
34618
|
} catch (err) {
|
|
34619
|
-
this.logger.error(err, "Failed to get app
|
|
34619
|
+
this.logger.error(err, "Failed to get app published");
|
|
34620
|
+
return null;
|
|
34621
|
+
}
|
|
34622
|
+
}
|
|
34623
|
+
async getTenantInfo(appId) {
|
|
34624
|
+
if (!appId) {
|
|
34625
|
+
this.logger.warn(`appId is empty, skip get tenant info`);
|
|
34626
|
+
return null;
|
|
34627
|
+
}
|
|
34628
|
+
try {
|
|
34629
|
+
const resp = await this.client.get(`/b/${appId}/tenant_info`);
|
|
34630
|
+
if (resp.status !== 200) {
|
|
34631
|
+
throw new Error(`Failed to get tenant info, status: ${resp.status}`);
|
|
34632
|
+
}
|
|
34633
|
+
const data = await resp.json();
|
|
34634
|
+
if (data.status_code !== "0") {
|
|
34635
|
+
throw new Error(`Failed to get tenant info, status_code: ${data.status_code}`);
|
|
34636
|
+
}
|
|
34637
|
+
return data.data ?? null;
|
|
34638
|
+
} catch (err) {
|
|
34639
|
+
this.logger.error(err, "Failed to get tenant info");
|
|
34620
34640
|
return null;
|
|
34621
34641
|
}
|
|
34622
34642
|
}
|
|
34623
34643
|
async use(req, res, next) {
|
|
34624
34644
|
const { userId, tenantId, appId, loginUrl, userType } = req.userContext;
|
|
34625
34645
|
const csrfToken = req.csrfToken;
|
|
34626
|
-
const appInfo = await this.getAppInfo(appId);
|
|
34627
34646
|
const environment = mapToWindowEnvironment(process.env.FORCE_FRAMEWORK_ENVIRONMENT);
|
|
34647
|
+
const [appPublishedData, tenantInfoData] = await Promise.all([
|
|
34648
|
+
this.getAppPublished(appId),
|
|
34649
|
+
this.getTenantInfo(appId)
|
|
34650
|
+
]);
|
|
34651
|
+
const appInfo = appPublishedData?.app_info ?? null;
|
|
34628
34652
|
req.__platform_data__ = {
|
|
34629
34653
|
csrfToken: csrfToken ?? "",
|
|
34630
34654
|
userId: userId ?? "",
|
|
@@ -34635,7 +34659,12 @@ var ViewContextMiddleware = class _ViewContextMiddleware {
|
|
|
34635
34659
|
loginUrl: loginUrl ?? "",
|
|
34636
34660
|
userType: userType ?? "",
|
|
34637
34661
|
tenantId,
|
|
34638
|
-
environment
|
|
34662
|
+
environment,
|
|
34663
|
+
// 预注入字段,前端无需再发 API 请求
|
|
34664
|
+
showBadge: appInfo?.show_badge !== false,
|
|
34665
|
+
tenantName: safeEscape(tenantInfoData?.tenant_info?.name ?? ""),
|
|
34666
|
+
isInternetVisible: tenantInfoData?.is_internet_visible ?? false,
|
|
34667
|
+
appPublished: appPublishedData ?? null
|
|
34639
34668
|
};
|
|
34640
34669
|
res.locals = {
|
|
34641
34670
|
...res.locals ?? {},
|
|
@@ -36331,7 +36360,9 @@ var PlatformModule = class _PlatformModule {
|
|
|
36331
36360
|
})
|
|
36332
36361
|
],
|
|
36333
36362
|
AuthNPaasModule.forRoot(),
|
|
36334
|
-
AuthZPaasModule.forRoot(
|
|
36363
|
+
AuthZPaasModule.forRoot({
|
|
36364
|
+
...options.authz || {}
|
|
36365
|
+
}),
|
|
36335
36366
|
AutomationModule.forRoot(),
|
|
36336
36367
|
CapabilityModule.forRoot({
|
|
36337
36368
|
capabilitiesDir: options.capabilitiesDir,
|
|
@@ -36519,8 +36550,9 @@ export * from "@lark-apaas/nestjs-observable";
|
|
|
36519
36550
|
export * from "@lark-apaas/nestjs-trigger";
|
|
36520
36551
|
export * from "@lark-apaas/file-service";
|
|
36521
36552
|
import { AutoTrace } from "@lark-apaas/nestjs-common";
|
|
36522
|
-
import { CanRole, Can, AuthorizationSDK, PERMISSION_RESOLVER_TOKEN } from "@lark-apaas/nestjs-authzpaas";
|
|
36553
|
+
import { AuthZPaasModule as AuthZPaasModule2, CanRole, Can, AuthorizationSDK, PERMISSION_RESOLVER_TOKEN } from "@lark-apaas/nestjs-authzpaas";
|
|
36523
36554
|
export {
|
|
36555
|
+
AuthZPaasModule2 as AuthZPaasModule,
|
|
36524
36556
|
AuthorizationSDK,
|
|
36525
36557
|
AutoTrace,
|
|
36526
36558
|
Can,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lark-apaas/fullstack-nestjs-core",
|
|
3
|
-
"version": "1.1.34-alpha.
|
|
3
|
+
"version": "1.1.34-alpha.56",
|
|
4
4
|
"description": "FullStack Nestjs Core",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -41,13 +41,13 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@lark-apaas/file-service": "^0.1.2",
|
|
43
43
|
"@lark-apaas/http-client": "^0.1.2",
|
|
44
|
-
"@lark-apaas/nestjs-authnpaas": "^1.0.
|
|
45
|
-
"@lark-apaas/nestjs-authzpaas": "^0.1.
|
|
44
|
+
"@lark-apaas/nestjs-authnpaas": "^1.0.3",
|
|
45
|
+
"@lark-apaas/nestjs-authzpaas": "^0.1.8",
|
|
46
46
|
"@lark-apaas/nestjs-capability": "^0.1.11",
|
|
47
47
|
"@lark-apaas/nestjs-common": "^0.1.8",
|
|
48
|
-
"@lark-apaas/nestjs-datapaas": "1.0.
|
|
49
|
-
"@lark-apaas/nestjs-logger": "^1.0.
|
|
50
|
-
"@lark-apaas/nestjs-observable": "^0.0.
|
|
48
|
+
"@lark-apaas/nestjs-datapaas": "^1.0.18",
|
|
49
|
+
"@lark-apaas/nestjs-logger": "^1.0.16",
|
|
50
|
+
"@lark-apaas/nestjs-observable": "^0.0.11",
|
|
51
51
|
"@lark-apaas/nestjs-openapi-devtools": "^1.0.10",
|
|
52
52
|
"@lark-apaas/nestjs-trigger": "^0.0.3",
|
|
53
53
|
"@nestjs/axios": "^4.0.1",
|