@be-link/ecommerce-backend-bff-service-node-sdk 0.1.53 → 0.1.55

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.
@@ -44,4 +44,10 @@ export declare class PandoraStoreManagerService extends BaseService implements S
44
44
  * @returns Promise,解析为标准响应格式
45
45
  */
46
46
  checkIsStoreManager(request: Service.Request.checkIsStoreManager): Promise<StandardResponse<Service.Response.checkIsStoreManager>>;
47
+ /**
48
+ * 导出店长列表到Excel
49
+ * @param request - 请求参数
50
+ * @returns Promise,解析为标准响应格式
51
+ */
52
+ exportStoreManagerListToExcel(request: Service.Request.exportStoreManagerListToExcel): Promise<StandardResponse<Service.Response.exportStoreManagerListToExcel>>;
47
53
  }
@@ -63,5 +63,13 @@ class PandoraStoreManagerService extends BaseService_1.default {
63
63
  checkIsStoreManager(request) {
64
64
  return this.request(this.checkIsStoreManager, request);
65
65
  }
66
+ /**
67
+ * 导出店长列表到Excel
68
+ * @param request - 请求参数
69
+ * @returns Promise,解析为标准响应格式
70
+ */
71
+ exportStoreManagerListToExcel(request) {
72
+ return this.request(this.exportStoreManagerListToExcel, request);
73
+ }
66
74
  }
67
75
  exports.PandoraStoreManagerService = PandoraStoreManagerService;
@@ -32,6 +32,7 @@ export declare namespace PandoraStoreManagerService {
32
32
  name?: string;
33
33
  phone?: string;
34
34
  bindId?: string;
35
+ storeIds?: string[];
35
36
  pageIndex: number;
36
37
  pageSize: number;
37
38
  }
@@ -49,6 +50,17 @@ export declare namespace PandoraStoreManagerService {
49
50
  interface checkIsStoreManager {
50
51
  unionId: string;
51
52
  }
53
+ /**
54
+ * 导出店长列表
55
+ */
56
+ interface exportStoreManagerListToExcel {
57
+ name?: string;
58
+ phone?: string;
59
+ bindId?: string;
60
+ storeIds?: string[];
61
+ pageIndex?: number;
62
+ pageSize?: number;
63
+ }
52
64
  }
53
65
  namespace Response {
54
66
  /**
@@ -116,6 +128,13 @@ export declare namespace PandoraStoreManagerService {
116
128
  storeId?: string;
117
129
  storeName?: string;
118
130
  }
131
+ /**
132
+ * 导出店长列表响应
133
+ */
134
+ interface exportStoreManagerListToExcel {
135
+ headerMap: Record<string, string>;
136
+ data: Record<string, any>[];
137
+ }
119
138
  }
120
139
  /**
121
140
  * StoreManager Controller 接口定义
@@ -145,5 +164,9 @@ export declare namespace PandoraStoreManagerService {
145
164
  * 检查用户是否为店长角色
146
165
  */
147
166
  checkIsStoreManager(request: Request.checkIsStoreManager): Promise<StandardResponse<Response.checkIsStoreManager>>;
167
+ /**
168
+ * 导出店长列表到Excel
169
+ */
170
+ exportStoreManagerListToExcel(request: Request.exportStoreManagerListToExcel): Promise<StandardResponse<Response.exportStoreManagerListToExcel>>;
148
171
  }
149
172
  }
@@ -44,4 +44,10 @@ export declare class PandoraStoreManagerService extends BaseService implements S
44
44
  * @returns Promise,解析为标准响应格式
45
45
  */
46
46
  checkIsStoreManager(request: Service.Request.checkIsStoreManager): Promise<StandardResponse<Service.Response.checkIsStoreManager>>;
47
+ /**
48
+ * 导出店长列表到Excel
49
+ * @param request - 请求参数
50
+ * @returns Promise,解析为标准响应格式
51
+ */
52
+ exportStoreManagerListToExcel(request: Service.Request.exportStoreManagerListToExcel): Promise<StandardResponse<Service.Response.exportStoreManagerListToExcel>>;
47
53
  }
@@ -57,4 +57,12 @@ export class PandoraStoreManagerService extends BaseService {
57
57
  checkIsStoreManager(request) {
58
58
  return this.request(this.checkIsStoreManager, request);
59
59
  }
60
+ /**
61
+ * 导出店长列表到Excel
62
+ * @param request - 请求参数
63
+ * @returns Promise,解析为标准响应格式
64
+ */
65
+ exportStoreManagerListToExcel(request) {
66
+ return this.request(this.exportStoreManagerListToExcel, request);
67
+ }
60
68
  }
@@ -32,6 +32,7 @@ export declare namespace PandoraStoreManagerService {
32
32
  name?: string;
33
33
  phone?: string;
34
34
  bindId?: string;
35
+ storeIds?: string[];
35
36
  pageIndex: number;
36
37
  pageSize: number;
37
38
  }
@@ -49,6 +50,17 @@ export declare namespace PandoraStoreManagerService {
49
50
  interface checkIsStoreManager {
50
51
  unionId: string;
51
52
  }
53
+ /**
54
+ * 导出店长列表
55
+ */
56
+ interface exportStoreManagerListToExcel {
57
+ name?: string;
58
+ phone?: string;
59
+ bindId?: string;
60
+ storeIds?: string[];
61
+ pageIndex?: number;
62
+ pageSize?: number;
63
+ }
52
64
  }
53
65
  namespace Response {
54
66
  /**
@@ -116,6 +128,13 @@ export declare namespace PandoraStoreManagerService {
116
128
  storeId?: string;
117
129
  storeName?: string;
118
130
  }
131
+ /**
132
+ * 导出店长列表响应
133
+ */
134
+ interface exportStoreManagerListToExcel {
135
+ headerMap: Record<string, string>;
136
+ data: Record<string, any>[];
137
+ }
119
138
  }
120
139
  /**
121
140
  * StoreManager Controller 接口定义
@@ -145,5 +164,9 @@ export declare namespace PandoraStoreManagerService {
145
164
  * 检查用户是否为店长角色
146
165
  */
147
166
  checkIsStoreManager(request: Request.checkIsStoreManager): Promise<StandardResponse<Response.checkIsStoreManager>>;
167
+ /**
168
+ * 导出店长列表到Excel
169
+ */
170
+ exportStoreManagerListToExcel(request: Request.exportStoreManagerListToExcel): Promise<StandardResponse<Response.exportStoreManagerListToExcel>>;
148
171
  }
149
172
  }
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.53",
3
+ "version": "0.1.55",
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.54",
27
+ "@be-link/ecommerce-trade-service-node-sdk": "^0.1.56",
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.28",
@@ -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.34",
36
- "@be-link/ecommerce-product-service-node-sdk": "^0.1.13",
35
+ "@be-link/ecommerce-user-service-node-sdk": "^0.1.41",
36
+ "@be-link/ecommerce-product-service-node-sdk": "^0.1.14",
37
37
  "safe-stable-stringify": "^2.5.0",
38
38
  "@be-link/ecommerce-task-center-service-node-sdk": "^0.1.13"
39
39
  },