@be-link/ecommerce-backend-bff-service-node-sdk 0.1.51 → 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.
@@ -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;
@@ -92,6 +92,21 @@ export declare namespace PandoraFranchiseeService {
92
92
  interface franchiseeOptions {
93
93
  name?: string;
94
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
+ }
95
110
  }
96
111
  namespace Response {
97
112
  /**
@@ -203,6 +218,13 @@ export declare namespace PandoraFranchiseeService {
203
218
  name: string;
204
219
  }>;
205
220
  }
221
+ /**
222
+ * 导出加盟商列表响应
223
+ */
224
+ interface exportFranchiseeListToExcel {
225
+ headerMap: Record<string, string>;
226
+ data: Record<string, any>[];
227
+ }
206
228
  }
207
229
  /**
208
230
  * Franchisee Controller 接口定义
@@ -217,5 +239,6 @@ export declare namespace PandoraFranchiseeService {
217
239
  getFranchiseeIdByUserId(request: Request.getFranchiseeIdByUserId): Promise<StandardResponse<Response.getFranchiseeIdByUserId>>;
218
240
  updateStatus(request: Request.updateStatus): Promise<StandardResponse<Response.updateStatus>>;
219
241
  listFranchiseeOptions(request: Request.franchiseeOptions): Promise<StandardResponse<Response.franchiseeOptions>>;
242
+ exportFranchiseeListToExcel(request: Request.exportFranchiseeListToExcel): Promise<StandardResponse<Response.exportFranchiseeListToExcel>>;
220
243
  }
221
244
  }
@@ -228,6 +228,8 @@ export declare namespace PandoraProductService {
228
228
  pageSize: number;
229
229
  /** 商品Id列表 */
230
230
  productIds?: string[];
231
+ /** 直播分组ids */
232
+ liveGroupIds?: string[];
231
233
  /** 商品名称列表 */
232
234
  productNames?: string[];
233
235
  /** 69码列表 */
@@ -80,6 +80,7 @@ export declare namespace RoomService {
80
80
  liveStreamRoomId: string;
81
81
  /** 门店ID列表 */
82
82
  bind: string[];
83
+ operator: string;
83
84
  }
84
85
  /**
85
86
  * 根据门店绑定关系查询直播间列表
@@ -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
  }
@@ -92,6 +92,21 @@ export declare namespace PandoraFranchiseeService {
92
92
  interface franchiseeOptions {
93
93
  name?: string;
94
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
+ }
95
110
  }
96
111
  namespace Response {
97
112
  /**
@@ -203,6 +218,13 @@ export declare namespace PandoraFranchiseeService {
203
218
  name: string;
204
219
  }>;
205
220
  }
221
+ /**
222
+ * 导出加盟商列表响应
223
+ */
224
+ interface exportFranchiseeListToExcel {
225
+ headerMap: Record<string, string>;
226
+ data: Record<string, any>[];
227
+ }
206
228
  }
207
229
  /**
208
230
  * Franchisee Controller 接口定义
@@ -217,5 +239,6 @@ export declare namespace PandoraFranchiseeService {
217
239
  getFranchiseeIdByUserId(request: Request.getFranchiseeIdByUserId): Promise<StandardResponse<Response.getFranchiseeIdByUserId>>;
218
240
  updateStatus(request: Request.updateStatus): Promise<StandardResponse<Response.updateStatus>>;
219
241
  listFranchiseeOptions(request: Request.franchiseeOptions): Promise<StandardResponse<Response.franchiseeOptions>>;
242
+ exportFranchiseeListToExcel(request: Request.exportFranchiseeListToExcel): Promise<StandardResponse<Response.exportFranchiseeListToExcel>>;
220
243
  }
221
244
  }
@@ -228,6 +228,8 @@ export declare namespace PandoraProductService {
228
228
  pageSize: number;
229
229
  /** 商品Id列表 */
230
230
  productIds?: string[];
231
+ /** 直播分组ids */
232
+ liveGroupIds?: string[];
231
233
  /** 商品名称列表 */
232
234
  productNames?: string[];
233
235
  /** 69码列表 */
@@ -80,6 +80,7 @@ export declare namespace RoomService {
80
80
  liveStreamRoomId: string;
81
81
  /** 门店ID列表 */
82
82
  bind: string[];
83
+ operator: string;
83
84
  }
84
85
  /**
85
86
  * 根据门店绑定关系查询直播间列表
@@ -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.51",
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.47",
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,8 +32,8 @@
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.30",
36
- "@be-link/ecommerce-product-service-node-sdk": "^0.1.10",
35
+ "@be-link/ecommerce-user-service-node-sdk": "^0.1.34",
36
+ "@be-link/ecommerce-product-service-node-sdk": "^0.1.11",
37
37
  "@be-link/ecommerce-task-center-service-node-sdk": "^0.1.12"
38
38
  },
39
39
  "devDependencies": {