@be-link/ecommerce-backend-bff-service-node-sdk 0.1.50 → 0.1.51

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.
@@ -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
  * 查询加盟商详情
@@ -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
  }
@@ -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
  * 查询加盟商详情
@@ -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
  }
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.50",
3
+ "version": "0.1.51",
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.35",
27
+ "@be-link/ecommerce-trade-service-node-sdk": "^0.1.47",
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.26",
35
+ "@be-link/ecommerce-user-service-node-sdk": "^0.1.30",
36
36
  "@be-link/ecommerce-product-service-node-sdk": "^0.1.10",
37
- "@be-link/ecommerce-task-center-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",