@be-link/ecommerce-backend-bff-service-node-sdk 0.1.50 → 0.1.52
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/cjs/bff/modules/pandora/franchisee/service.d.ts +1 -0
- package/cjs/bff/modules/pandora/franchisee/service.js +3 -0
- package/cjs/bff/modules/pandora/franchisee/types.d.ts +24 -0
- package/cjs/bff/modules/pandora/product/types.d.ts +2 -0
- package/cjs/bff/modules/pandora/room/types.d.ts +1 -0
- package/cjs/bff/modules/pandora/store/service.d.ts +1 -0
- package/cjs/bff/modules/pandora/store/service.js +3 -0
- package/cjs/bff/modules/pandora/store/types.d.ts +30 -0
- package/cjs/bff/modules/pandora/userManager/service/user.service.d.ts +1 -0
- package/cjs/bff/modules/pandora/userManager/service/user.service.js +3 -0
- package/cjs/bff/modules/pandora/userManager/types/user.types.d.ts +1 -0
- package/esm/bff/modules/pandora/franchisee/service.d.ts +1 -0
- package/esm/bff/modules/pandora/franchisee/service.mjs +3 -0
- package/esm/bff/modules/pandora/franchisee/types.d.ts +24 -0
- package/esm/bff/modules/pandora/product/types.d.ts +2 -0
- package/esm/bff/modules/pandora/room/types.d.ts +1 -0
- package/esm/bff/modules/pandora/store/service.d.ts +1 -0
- package/esm/bff/modules/pandora/store/service.mjs +3 -0
- package/esm/bff/modules/pandora/store/types.d.ts +30 -0
- package/esm/bff/modules/pandora/userManager/service/user.service.d.ts +1 -0
- package/esm/bff/modules/pandora/userManager/service/user.service.mjs +3 -0
- package/esm/bff/modules/pandora/userManager/types/user.types.d.ts +1 -0
- package/package.json +5 -5
|
@@ -17,4 +17,5 @@ export declare class PandoraFranchiseeService extends BaseService implements Ser
|
|
|
17
17
|
getFranchiseeIdByUserId(request: Service.Request.getFranchiseeIdByUserId): Promise<StandardResponse<Service.Response.getFranchiseeIdByUserId>>;
|
|
18
18
|
updateStatus(request: Service.Request.updateStatus): Promise<StandardResponse<Service.Response.updateStatus>>;
|
|
19
19
|
listFranchiseeOptions(request: Service.Request.franchiseeOptions): Promise<StandardResponse<Service.Response.franchiseeOptions>>;
|
|
20
|
+
exportFranchiseeListToExcel(request: Service.Request.exportFranchiseeListToExcel): Promise<StandardResponse<Service.Response.exportFranchiseeListToExcel>>;
|
|
20
21
|
}
|
|
@@ -42,5 +42,8 @@ class PandoraFranchiseeService extends BaseService_1.default {
|
|
|
42
42
|
listFranchiseeOptions(request) {
|
|
43
43
|
return this.request(this.listFranchiseeOptions, request);
|
|
44
44
|
}
|
|
45
|
+
exportFranchiseeListToExcel(request) {
|
|
46
|
+
return this.request(this.exportFranchiseeListToExcel, request);
|
|
47
|
+
}
|
|
45
48
|
}
|
|
46
49
|
exports.PandoraFranchiseeService = PandoraFranchiseeService;
|
|
@@ -26,6 +26,7 @@ export declare namespace PandoraFranchiseeService {
|
|
|
26
26
|
status?: 'VALID' | 'INVALID';
|
|
27
27
|
approvalStatus?: string;
|
|
28
28
|
financeGroup?: string;
|
|
29
|
+
storeIds?: string[];
|
|
29
30
|
}
|
|
30
31
|
/**
|
|
31
32
|
* 查询加盟商详情
|
|
@@ -91,6 +92,21 @@ export declare namespace PandoraFranchiseeService {
|
|
|
91
92
|
interface franchiseeOptions {
|
|
92
93
|
name?: string;
|
|
93
94
|
}
|
|
95
|
+
/**
|
|
96
|
+
* 导出加盟商列表
|
|
97
|
+
*/
|
|
98
|
+
interface exportFranchiseeListToExcel {
|
|
99
|
+
name?: string;
|
|
100
|
+
directorName?: string;
|
|
101
|
+
directorPhone?: string;
|
|
102
|
+
bdDirector?: string;
|
|
103
|
+
status?: 'VALID' | 'INVALID';
|
|
104
|
+
approvalStatus?: string;
|
|
105
|
+
financeGroup?: string;
|
|
106
|
+
storeIds?: string[];
|
|
107
|
+
pageIndex?: number;
|
|
108
|
+
pageSize?: number;
|
|
109
|
+
}
|
|
94
110
|
}
|
|
95
111
|
namespace Response {
|
|
96
112
|
/**
|
|
@@ -202,6 +218,13 @@ export declare namespace PandoraFranchiseeService {
|
|
|
202
218
|
name: string;
|
|
203
219
|
}>;
|
|
204
220
|
}
|
|
221
|
+
/**
|
|
222
|
+
* 导出加盟商列表响应
|
|
223
|
+
*/
|
|
224
|
+
interface exportFranchiseeListToExcel {
|
|
225
|
+
headerMap: Record<string, string>;
|
|
226
|
+
data: Record<string, any>[];
|
|
227
|
+
}
|
|
205
228
|
}
|
|
206
229
|
/**
|
|
207
230
|
* Franchisee Controller 接口定义
|
|
@@ -216,5 +239,6 @@ export declare namespace PandoraFranchiseeService {
|
|
|
216
239
|
getFranchiseeIdByUserId(request: Request.getFranchiseeIdByUserId): Promise<StandardResponse<Response.getFranchiseeIdByUserId>>;
|
|
217
240
|
updateStatus(request: Request.updateStatus): Promise<StandardResponse<Response.updateStatus>>;
|
|
218
241
|
listFranchiseeOptions(request: Request.franchiseeOptions): Promise<StandardResponse<Response.franchiseeOptions>>;
|
|
242
|
+
exportFranchiseeListToExcel(request: Request.exportFranchiseeListToExcel): Promise<StandardResponse<Response.exportFranchiseeListToExcel>>;
|
|
219
243
|
}
|
|
220
244
|
}
|
|
@@ -92,4 +92,5 @@ export declare class PandoraStoreService extends BaseService implements Service.
|
|
|
92
92
|
* @returns Promise,解析为标准响应格式
|
|
93
93
|
*/
|
|
94
94
|
batchQueryTagsByStores(request: Service.Request.BatchQueryTagsByStores): Promise<Service.Response.BatchQueryTagsByStores>;
|
|
95
|
+
getStoreIdsByConditions(request: Service.Request.GetStoreIdsByConditions): Promise<Service.Response.GetStoreIdsByConditions>;
|
|
95
96
|
}
|
|
@@ -127,5 +127,8 @@ class PandoraStoreService extends BaseService_1.default {
|
|
|
127
127
|
batchQueryTagsByStores(request) {
|
|
128
128
|
return this.request(this.batchQueryTagsByStores, request);
|
|
129
129
|
}
|
|
130
|
+
getStoreIdsByConditions(request) {
|
|
131
|
+
return this.request(this.getStoreIdsByConditions, request);
|
|
132
|
+
}
|
|
130
133
|
}
|
|
131
134
|
exports.PandoraStoreService = PandoraStoreService;
|
|
@@ -487,6 +487,23 @@ export declare namespace StoreService {
|
|
|
487
487
|
/** 门店名称 */
|
|
488
488
|
storeName: string;
|
|
489
489
|
}
|
|
490
|
+
/**
|
|
491
|
+
* 根据条件查询门店ID列表请求
|
|
492
|
+
*/
|
|
493
|
+
interface GetStoreIdsByConditions {
|
|
494
|
+
/** 门店基础信息查询块 */
|
|
495
|
+
basicInfoQuery?: QueryBlock.BasicInfo;
|
|
496
|
+
/** 门店结算信息查询块 */
|
|
497
|
+
settlementQuery?: QueryBlock.Settlement;
|
|
498
|
+
/** 门店仓配信息查询块 */
|
|
499
|
+
warehouseDeliveryQuery?: QueryBlock.WarehouseDelivery;
|
|
500
|
+
/** 门店分组查询块 */
|
|
501
|
+
storeGroupQuery?: QueryBlock.StoreGroup;
|
|
502
|
+
/** 门店人员查询块 */
|
|
503
|
+
storeUserQuery?: QueryBlock.StoreUser;
|
|
504
|
+
/** 门店统计数据查询块 */
|
|
505
|
+
statisticsQuery?: QueryBlock.Statistics;
|
|
506
|
+
}
|
|
490
507
|
/** 创建门店分组标签 */
|
|
491
508
|
interface CreateTag {
|
|
492
509
|
/** 标签名称 */
|
|
@@ -735,6 +752,13 @@ export declare namespace StoreService {
|
|
|
735
752
|
/** 每页数量 */
|
|
736
753
|
pageSize: number;
|
|
737
754
|
}
|
|
755
|
+
/**
|
|
756
|
+
* 根据条件查询门店ID列表响应
|
|
757
|
+
*/
|
|
758
|
+
interface GetStoreIdsByConditions {
|
|
759
|
+
/** 门店ID列表 */
|
|
760
|
+
storeIds: string[];
|
|
761
|
+
}
|
|
738
762
|
/**
|
|
739
763
|
* 根据门店名称获取门店ID响应
|
|
740
764
|
*/
|
|
@@ -887,5 +911,11 @@ export declare namespace StoreService {
|
|
|
887
911
|
queryTagsByGroup(request: StoreService.Request.QueryTagsByGroup): Promise<StandardResponse<StoreService.Response.QueryTagsByGroup>>;
|
|
888
912
|
/** 删除门店分组 */
|
|
889
913
|
deleteStoreGroup(request: StoreService.Request.DeleteStoreGroup): Promise<StandardResponse<StoreService.Response.DeleteStoreGroup>>;
|
|
914
|
+
/**
|
|
915
|
+
* 根据条件查询门店ID列表
|
|
916
|
+
* @param request 请求参数
|
|
917
|
+
* @returns 响应数据
|
|
918
|
+
*/
|
|
919
|
+
getStoreIdsByConditions(request: StoreService.Request.GetStoreIdsByConditions): Promise<StoreService.Response.GetStoreIdsByConditions>;
|
|
890
920
|
}
|
|
891
921
|
}
|
|
@@ -10,4 +10,5 @@ export declare class PandoraUserManagementService extends BaseService implements
|
|
|
10
10
|
bindUsersToStore(request: PandoraUserManagementTypes.Request.bindUsersToStore): Promise<StandardResponse<PandoraUserManagementTypes.Response.bindUsersToStore>>;
|
|
11
11
|
unbindUsersFromStore(request: PandoraUserManagementTypes.Request.unbindUsersFromStore): Promise<StandardResponse<PandoraUserManagementTypes.Response.unbindUsersFromStore>>;
|
|
12
12
|
getUserByUnionId(request: PandoraUserManagementTypes.Request.getUserByUnionId): Promise<StandardResponse<PandoraUserManagementTypes.Response.getUserByUnionId>>;
|
|
13
|
+
batchTransferUsersStore(request: PandoraUserManagementTypes.Request.batchTransferUsersStore): Promise<StandardResponse<PandoraUserManagementTypes.Response.batchTransferUsersStore>>;
|
|
13
14
|
}
|
|
@@ -31,5 +31,8 @@ class PandoraUserManagementService extends BaseService_1.default {
|
|
|
31
31
|
getUserByUnionId(request) {
|
|
32
32
|
return this.request(this.getUserByUnionId, request);
|
|
33
33
|
}
|
|
34
|
+
batchTransferUsersStore(request) {
|
|
35
|
+
return this.request(this.batchTransferUsersStore, request);
|
|
36
|
+
}
|
|
34
37
|
}
|
|
35
38
|
exports.PandoraUserManagementService = PandoraUserManagementService;
|
|
@@ -15,5 +15,6 @@ export declare namespace PandoraUserManagementTypes {
|
|
|
15
15
|
bindUsersToStore(request: Request.bindUsersToStore): Promise<StandardResponse<Response.bindUsersToStore>>;
|
|
16
16
|
unbindUsersFromStore(request: Request.unbindUsersFromStore): Promise<StandardResponse<Response.unbindUsersFromStore>>;
|
|
17
17
|
getUserByUnionId(request: Request.getUserByUnionId): Promise<StandardResponse<Response.getUserByUnionId>>;
|
|
18
|
+
batchTransferUsersStore(request: Request.batchTransferUsersStore): Promise<StandardResponse<Response.batchTransferUsersStore>>;
|
|
18
19
|
}
|
|
19
20
|
}
|
|
@@ -17,4 +17,5 @@ export declare class PandoraFranchiseeService extends BaseService implements Ser
|
|
|
17
17
|
getFranchiseeIdByUserId(request: Service.Request.getFranchiseeIdByUserId): Promise<StandardResponse<Service.Response.getFranchiseeIdByUserId>>;
|
|
18
18
|
updateStatus(request: Service.Request.updateStatus): Promise<StandardResponse<Service.Response.updateStatus>>;
|
|
19
19
|
listFranchiseeOptions(request: Service.Request.franchiseeOptions): Promise<StandardResponse<Service.Response.franchiseeOptions>>;
|
|
20
|
+
exportFranchiseeListToExcel(request: Service.Request.exportFranchiseeListToExcel): Promise<StandardResponse<Service.Response.exportFranchiseeListToExcel>>;
|
|
20
21
|
}
|
|
@@ -36,4 +36,7 @@ export class PandoraFranchiseeService extends BaseService {
|
|
|
36
36
|
listFranchiseeOptions(request) {
|
|
37
37
|
return this.request(this.listFranchiseeOptions, request);
|
|
38
38
|
}
|
|
39
|
+
exportFranchiseeListToExcel(request) {
|
|
40
|
+
return this.request(this.exportFranchiseeListToExcel, request);
|
|
41
|
+
}
|
|
39
42
|
}
|
|
@@ -26,6 +26,7 @@ export declare namespace PandoraFranchiseeService {
|
|
|
26
26
|
status?: 'VALID' | 'INVALID';
|
|
27
27
|
approvalStatus?: string;
|
|
28
28
|
financeGroup?: string;
|
|
29
|
+
storeIds?: string[];
|
|
29
30
|
}
|
|
30
31
|
/**
|
|
31
32
|
* 查询加盟商详情
|
|
@@ -91,6 +92,21 @@ export declare namespace PandoraFranchiseeService {
|
|
|
91
92
|
interface franchiseeOptions {
|
|
92
93
|
name?: string;
|
|
93
94
|
}
|
|
95
|
+
/**
|
|
96
|
+
* 导出加盟商列表
|
|
97
|
+
*/
|
|
98
|
+
interface exportFranchiseeListToExcel {
|
|
99
|
+
name?: string;
|
|
100
|
+
directorName?: string;
|
|
101
|
+
directorPhone?: string;
|
|
102
|
+
bdDirector?: string;
|
|
103
|
+
status?: 'VALID' | 'INVALID';
|
|
104
|
+
approvalStatus?: string;
|
|
105
|
+
financeGroup?: string;
|
|
106
|
+
storeIds?: string[];
|
|
107
|
+
pageIndex?: number;
|
|
108
|
+
pageSize?: number;
|
|
109
|
+
}
|
|
94
110
|
}
|
|
95
111
|
namespace Response {
|
|
96
112
|
/**
|
|
@@ -202,6 +218,13 @@ export declare namespace PandoraFranchiseeService {
|
|
|
202
218
|
name: string;
|
|
203
219
|
}>;
|
|
204
220
|
}
|
|
221
|
+
/**
|
|
222
|
+
* 导出加盟商列表响应
|
|
223
|
+
*/
|
|
224
|
+
interface exportFranchiseeListToExcel {
|
|
225
|
+
headerMap: Record<string, string>;
|
|
226
|
+
data: Record<string, any>[];
|
|
227
|
+
}
|
|
205
228
|
}
|
|
206
229
|
/**
|
|
207
230
|
* Franchisee Controller 接口定义
|
|
@@ -216,5 +239,6 @@ export declare namespace PandoraFranchiseeService {
|
|
|
216
239
|
getFranchiseeIdByUserId(request: Request.getFranchiseeIdByUserId): Promise<StandardResponse<Response.getFranchiseeIdByUserId>>;
|
|
217
240
|
updateStatus(request: Request.updateStatus): Promise<StandardResponse<Response.updateStatus>>;
|
|
218
241
|
listFranchiseeOptions(request: Request.franchiseeOptions): Promise<StandardResponse<Response.franchiseeOptions>>;
|
|
242
|
+
exportFranchiseeListToExcel(request: Request.exportFranchiseeListToExcel): Promise<StandardResponse<Response.exportFranchiseeListToExcel>>;
|
|
219
243
|
}
|
|
220
244
|
}
|
|
@@ -92,4 +92,5 @@ export declare class PandoraStoreService extends BaseService implements Service.
|
|
|
92
92
|
* @returns Promise,解析为标准响应格式
|
|
93
93
|
*/
|
|
94
94
|
batchQueryTagsByStores(request: Service.Request.BatchQueryTagsByStores): Promise<Service.Response.BatchQueryTagsByStores>;
|
|
95
|
+
getStoreIdsByConditions(request: Service.Request.GetStoreIdsByConditions): Promise<Service.Response.GetStoreIdsByConditions>;
|
|
95
96
|
}
|
|
@@ -121,4 +121,7 @@ export class PandoraStoreService extends BaseService {
|
|
|
121
121
|
batchQueryTagsByStores(request) {
|
|
122
122
|
return this.request(this.batchQueryTagsByStores, request);
|
|
123
123
|
}
|
|
124
|
+
getStoreIdsByConditions(request) {
|
|
125
|
+
return this.request(this.getStoreIdsByConditions, request);
|
|
126
|
+
}
|
|
124
127
|
}
|
|
@@ -487,6 +487,23 @@ export declare namespace StoreService {
|
|
|
487
487
|
/** 门店名称 */
|
|
488
488
|
storeName: string;
|
|
489
489
|
}
|
|
490
|
+
/**
|
|
491
|
+
* 根据条件查询门店ID列表请求
|
|
492
|
+
*/
|
|
493
|
+
interface GetStoreIdsByConditions {
|
|
494
|
+
/** 门店基础信息查询块 */
|
|
495
|
+
basicInfoQuery?: QueryBlock.BasicInfo;
|
|
496
|
+
/** 门店结算信息查询块 */
|
|
497
|
+
settlementQuery?: QueryBlock.Settlement;
|
|
498
|
+
/** 门店仓配信息查询块 */
|
|
499
|
+
warehouseDeliveryQuery?: QueryBlock.WarehouseDelivery;
|
|
500
|
+
/** 门店分组查询块 */
|
|
501
|
+
storeGroupQuery?: QueryBlock.StoreGroup;
|
|
502
|
+
/** 门店人员查询块 */
|
|
503
|
+
storeUserQuery?: QueryBlock.StoreUser;
|
|
504
|
+
/** 门店统计数据查询块 */
|
|
505
|
+
statisticsQuery?: QueryBlock.Statistics;
|
|
506
|
+
}
|
|
490
507
|
/** 创建门店分组标签 */
|
|
491
508
|
interface CreateTag {
|
|
492
509
|
/** 标签名称 */
|
|
@@ -735,6 +752,13 @@ export declare namespace StoreService {
|
|
|
735
752
|
/** 每页数量 */
|
|
736
753
|
pageSize: number;
|
|
737
754
|
}
|
|
755
|
+
/**
|
|
756
|
+
* 根据条件查询门店ID列表响应
|
|
757
|
+
*/
|
|
758
|
+
interface GetStoreIdsByConditions {
|
|
759
|
+
/** 门店ID列表 */
|
|
760
|
+
storeIds: string[];
|
|
761
|
+
}
|
|
738
762
|
/**
|
|
739
763
|
* 根据门店名称获取门店ID响应
|
|
740
764
|
*/
|
|
@@ -887,5 +911,11 @@ export declare namespace StoreService {
|
|
|
887
911
|
queryTagsByGroup(request: StoreService.Request.QueryTagsByGroup): Promise<StandardResponse<StoreService.Response.QueryTagsByGroup>>;
|
|
888
912
|
/** 删除门店分组 */
|
|
889
913
|
deleteStoreGroup(request: StoreService.Request.DeleteStoreGroup): Promise<StandardResponse<StoreService.Response.DeleteStoreGroup>>;
|
|
914
|
+
/**
|
|
915
|
+
* 根据条件查询门店ID列表
|
|
916
|
+
* @param request 请求参数
|
|
917
|
+
* @returns 响应数据
|
|
918
|
+
*/
|
|
919
|
+
getStoreIdsByConditions(request: StoreService.Request.GetStoreIdsByConditions): Promise<StoreService.Response.GetStoreIdsByConditions>;
|
|
890
920
|
}
|
|
891
921
|
}
|
|
@@ -10,4 +10,5 @@ export declare class PandoraUserManagementService extends BaseService implements
|
|
|
10
10
|
bindUsersToStore(request: PandoraUserManagementTypes.Request.bindUsersToStore): Promise<StandardResponse<PandoraUserManagementTypes.Response.bindUsersToStore>>;
|
|
11
11
|
unbindUsersFromStore(request: PandoraUserManagementTypes.Request.unbindUsersFromStore): Promise<StandardResponse<PandoraUserManagementTypes.Response.unbindUsersFromStore>>;
|
|
12
12
|
getUserByUnionId(request: PandoraUserManagementTypes.Request.getUserByUnionId): Promise<StandardResponse<PandoraUserManagementTypes.Response.getUserByUnionId>>;
|
|
13
|
+
batchTransferUsersStore(request: PandoraUserManagementTypes.Request.batchTransferUsersStore): Promise<StandardResponse<PandoraUserManagementTypes.Response.batchTransferUsersStore>>;
|
|
13
14
|
}
|
|
@@ -25,4 +25,7 @@ export class PandoraUserManagementService extends BaseService {
|
|
|
25
25
|
getUserByUnionId(request) {
|
|
26
26
|
return this.request(this.getUserByUnionId, request);
|
|
27
27
|
}
|
|
28
|
+
batchTransferUsersStore(request) {
|
|
29
|
+
return this.request(this.batchTransferUsersStore, request);
|
|
30
|
+
}
|
|
28
31
|
}
|
|
@@ -15,5 +15,6 @@ export declare namespace PandoraUserManagementTypes {
|
|
|
15
15
|
bindUsersToStore(request: Request.bindUsersToStore): Promise<StandardResponse<Response.bindUsersToStore>>;
|
|
16
16
|
unbindUsersFromStore(request: Request.unbindUsersFromStore): Promise<StandardResponse<Response.unbindUsersFromStore>>;
|
|
17
17
|
getUserByUnionId(request: Request.getUserByUnionId): Promise<StandardResponse<Response.getUserByUnionId>>;
|
|
18
|
+
batchTransferUsersStore(request: Request.batchTransferUsersStore): Promise<StandardResponse<Response.batchTransferUsersStore>>;
|
|
18
19
|
}
|
|
19
20
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@be-link/ecommerce-backend-bff-service-node-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.52",
|
|
4
4
|
"description": "EcommerceBackendBffService Node.js SDK",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./cjs/index.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@be-link/ecommerce-trade-service-node-sdk": "^0.1.
|
|
27
|
+
"@be-link/ecommerce-trade-service-node-sdk": "^0.1.48",
|
|
28
28
|
"@be-link/ecommerce-backend-user-service-node-sdk": "^0.1.11",
|
|
29
29
|
"@be-link/ecommerce-volcengine-open-api-sdk": "^1.0.22",
|
|
30
30
|
"@be-link/ecommerce-client-backend-service-node-sdk": "^0.1.18",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"@be-link/ecommerce-store-service-node-sdk": "^0.1.8",
|
|
33
33
|
"@be-link/ecommerce-promotion-service-node-sdk": "^0.1.3",
|
|
34
34
|
"axios": "^1.13.2",
|
|
35
|
-
"@be-link/ecommerce-user-service-node-sdk": "^0.1.
|
|
36
|
-
"@be-link/ecommerce-product-service-node-sdk": "^0.1.
|
|
37
|
-
"@be-link/ecommerce-task-center-service-node-sdk": "^0.1.
|
|
35
|
+
"@be-link/ecommerce-user-service-node-sdk": "^0.1.34",
|
|
36
|
+
"@be-link/ecommerce-product-service-node-sdk": "^0.1.11",
|
|
37
|
+
"@be-link/ecommerce-task-center-service-node-sdk": "^0.1.12"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"tsoa": "^6.4.0",
|