@be-link/ecommerce-backend-bff-service-node-sdk 0.0.36 → 0.0.38

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.
@@ -114,18 +114,11 @@ export declare namespace StoreService {
114
114
  * 门店分组信息
115
115
  */
116
116
  interface StoreGroup {
117
- /** 分组ID */
118
- id: string;
119
- /** 门店ID */
120
- storeId: number;
121
- /** 分组ID */
122
- groupId: string;
123
- /** 分组名称 */
124
- groupName: string;
125
- /** 创建时间 */
126
- createdAt: number;
127
- /** 更新时间 */
128
- updatedAt: number;
117
+ /** 标签列表 */
118
+ tags: Array<{
119
+ /** 标签名称 */
120
+ tagName: string;
121
+ }>;
129
122
  }
130
123
  /**
131
124
  * 完整门店信息(包含基础、结算、仓配信息)
@@ -430,8 +423,8 @@ export declare namespace StoreService {
430
423
  interface createStoreGroup {
431
424
  /** 标签名称 */
432
425
  name: string;
433
- /** 门店分组ID */
434
- groupId: string;
426
+ /** 门店ID列表 */
427
+ storeIds?: string[];
435
428
  /** 状态 */
436
429
  status?: number;
437
430
  /** 备注 */
@@ -470,6 +463,8 @@ export declare namespace StoreService {
470
463
  * 查询门店分组标签列表请求
471
464
  */
472
465
  interface queryTagsByGroup {
466
+ /** 门店分组ID */
467
+ groupId: string;
473
468
  }
474
469
  }
475
470
  /**
@@ -114,18 +114,11 @@ export declare namespace StoreService {
114
114
  * 门店分组信息
115
115
  */
116
116
  interface StoreGroup {
117
- /** 分组ID */
118
- id: string;
119
- /** 门店ID */
120
- storeId: number;
121
- /** 分组ID */
122
- groupId: string;
123
- /** 分组名称 */
124
- groupName: string;
125
- /** 创建时间 */
126
- createdAt: number;
127
- /** 更新时间 */
128
- updatedAt: number;
117
+ /** 标签列表 */
118
+ tags: Array<{
119
+ /** 标签名称 */
120
+ tagName: string;
121
+ }>;
129
122
  }
130
123
  /**
131
124
  * 完整门店信息(包含基础、结算、仓配信息)
@@ -430,8 +423,8 @@ export declare namespace StoreService {
430
423
  interface createStoreGroup {
431
424
  /** 标签名称 */
432
425
  name: string;
433
- /** 门店分组ID */
434
- groupId: string;
426
+ /** 门店ID列表 */
427
+ storeIds?: string[];
435
428
  /** 状态 */
436
429
  status?: number;
437
430
  /** 备注 */
@@ -470,6 +463,8 @@ export declare namespace StoreService {
470
463
  * 查询门店分组标签列表请求
471
464
  */
472
465
  interface queryTagsByGroup {
466
+ /** 门店分组ID */
467
+ groupId: string;
473
468
  }
474
469
  }
475
470
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecommerce-backend-bff-service-node-sdk",
3
- "version": "0.0.36",
3
+ "version": "0.0.38",
4
4
  "description": "EcommerceBackendBffService Node.js SDK",
5
5
  "type": "commonjs",
6
6
  "main": "./cjs/index.js",
@@ -27,7 +27,7 @@
27
27
  "@be-link/ecommerce-product-service-node-sdk": "^0.0.8",
28
28
  "@be-link/ecommerce-volcengine-open-api-sdk": "^1.0.11",
29
29
  "@be-link/ecommerce-client-backend-service-node-sdk": "^0.0.3",
30
- "@be-link/ecommerce-store-service-node-sdk": "^0.0.9",
30
+ "@be-link/ecommerce-store-service-node-sdk": "^0.0.10",
31
31
  "axios": "1.13.2"
32
32
  },
33
33
  "devDependencies": {