@be-link/ecommerce-backend-bff-service-node-sdk 0.0.73 → 0.0.75

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.
@@ -31,7 +31,7 @@ export declare class PandoraCouponService extends BaseService implements Service
31
31
  * @param request - 请求参数
32
32
  * @returns Promise,解析为标准响应格式
33
33
  */
34
- addCouponStock(request: Service.Request.addCouponStock): Promise<StandardResponse<Service.Response.addCouponStock>>;
34
+ addCouponStock(request: Service.Request.addCouponStock): Promise<StandardResponse<void>>;
35
35
  /**
36
36
  * 获取券模版详情
37
37
  * @param request - 请求参数
@@ -388,7 +388,7 @@ export declare namespace CouponService {
388
388
  /** 获取券模版列表 */
389
389
  getCouponTemplateList(request: CouponService.Request.getCouponTemplateList): Promise<StandardResponse<CouponService.Response.getCouponTemplateList>>;
390
390
  /** 增加券库存 */
391
- addCouponStock(request: CouponService.Request.addCouponStock): Promise<StandardResponse<CouponService.Response.addCouponStock>>;
391
+ addCouponStock(request: CouponService.Request.addCouponStock): Promise<StandardResponse<void>>;
392
392
  /** 获取券模版详情 */
393
393
  getCouponTemplateDetail(request: CouponService.Request.getCouponTemplateDetail): Promise<StandardResponse<CouponService.Response.getCouponTemplateDetail>>;
394
394
  /** 同步券至火山直播 */
@@ -86,4 +86,10 @@ export declare class PandoraProductService extends BaseService implements Servic
86
86
  * @returns Promise,解析为标准响应格式
87
87
  */
88
88
  searchProductByName(request: Service.Request.searchProductByName): Promise<StandardResponse<Service.Response.searchProductByName[]>>;
89
+ /**
90
+ * 获取绑定的SKU信息
91
+ * @param request - 请求参数
92
+ * @returns Promise,解析为标准响应格式
93
+ */
94
+ queryBindSkus(request: Service.Request.queryBindSkus): Promise<StandardResponse<Service.Response.queryBindSkus[]>>;
89
95
  }
@@ -119,5 +119,13 @@ class PandoraProductService extends BaseService_1.default {
119
119
  searchProductByName(request) {
120
120
  return this.request(this.searchProductByName, request);
121
121
  }
122
+ /**
123
+ * 获取绑定的SKU信息
124
+ * @param request - 请求参数
125
+ * @returns Promise,解析为标准响应格式
126
+ */
127
+ queryBindSkus(request) {
128
+ return this.request(this.queryBindSkus, request);
129
+ }
122
130
  }
123
131
  exports.PandoraProductService = PandoraProductService;
@@ -67,7 +67,7 @@ export declare namespace PandoraProductService {
67
67
  id?: string;
68
68
  /** 定时任务时间戳 */
69
69
  scheduledTime: number;
70
- /** 上下状态 */
70
+ /** 上下架状态 */
71
71
  status: string;
72
72
  }
73
73
  /**
@@ -255,6 +255,10 @@ export declare namespace PandoraProductService {
255
255
  /** 商品名称 */
256
256
  productName: string;
257
257
  }
258
+ interface queryBindSkus {
259
+ /** SKU Id */
260
+ skuId: string;
261
+ }
258
262
  }
259
263
  namespace Response {
260
264
  interface create {
@@ -266,10 +270,8 @@ export declare namespace PandoraProductService {
266
270
  id: string;
267
271
  /** 定时任务时间戳 */
268
272
  scheduledTime: number;
269
- /** 任务状态 */
273
+ /** 上下架状态 */
270
274
  status: string;
271
- /** 操作类型 上下架 */
272
- operationType: string;
273
275
  }
274
276
  interface list {
275
277
  total: number;
@@ -372,6 +374,26 @@ export declare namespace PandoraProductService {
372
374
  /** 商品ID */
373
375
  productId: string;
374
376
  }
377
+ interface queryBindSkus {
378
+ /** 商品Id */
379
+ productId: string;
380
+ /** SKU Id */
381
+ skuId: string;
382
+ /** 商品名称 */
383
+ productName: string;
384
+ /** 分类 */
385
+ cateName: string;
386
+ /** 数量 */
387
+ quantity: number;
388
+ /** 69码 */
389
+ skuCode: string;
390
+ /** 规格 */
391
+ attrs: Attr[];
392
+ /** 价格 */
393
+ price: number;
394
+ /** 上下架状态 */
395
+ status: string;
396
+ }
375
397
  }
376
398
  /**
377
399
  * ProductLive Controller 接口定义
@@ -429,5 +451,9 @@ export declare namespace PandoraProductService {
429
451
  * 根据商品名获取商品id列表
430
452
  */
431
453
  searchProductByName(request: PandoraProductService.Request.searchProductByName): Promise<StandardResponse<PandoraProductService.Response.searchProductByName[]>>;
454
+ /**
455
+ * 获取绑定的SKU信息
456
+ */
457
+ queryBindSkus(request: PandoraProductService.Request.queryBindSkus): Promise<StandardResponse<PandoraProductService.Response.queryBindSkus[]>>;
432
458
  }
433
459
  }
@@ -122,4 +122,10 @@ export declare class PandoraStoreService extends BaseService implements Service.
122
122
  * @returns Promise,解析为标准响应格式
123
123
  */
124
124
  queryTagsByGroup(request: Service.Request.queryTagsByGroup): Promise<StandardResponse<Service.Response.queryTagsByGroup>>;
125
+ /**
126
+ * 查询门店列表通过标签ID
127
+ * @param request - 请求参数
128
+ * @returns Promise,解析为标准响应格式
129
+ */
130
+ queryStoresByTagId(request: Service.Request.queryStoresByTagId): Promise<StandardResponse<Service.Response.queryStoresByTagId>>;
125
131
  }
@@ -167,5 +167,13 @@ class PandoraStoreService extends BaseService_1.default {
167
167
  queryTagsByGroup(request) {
168
168
  return this.request(this.queryTagsByGroup, request);
169
169
  }
170
+ /**
171
+ * 查询门店列表通过标签ID
172
+ * @param request - 请求参数
173
+ * @returns Promise,解析为标准响应格式
174
+ */
175
+ queryStoresByTagId(request) {
176
+ return this.request(this.queryStoresByTagId, request);
177
+ }
170
178
  }
171
179
  exports.PandoraStoreService = PandoraStoreService;
@@ -56,15 +56,15 @@ export declare namespace StoreService {
56
56
  /** 门店二维码 */
57
57
  qrCodeState?: any;
58
58
  /** 经营状态,0未绑定负责人,1营业中,2已打烊 */
59
- businessStatus: number;
59
+ businessStatus: string;
60
60
  /** 商家合作类型:0, 未配置;1, 独立店;2, 店中店 */
61
- merchantCooperationType: number;
61
+ merchantCooperationType: string;
62
62
  /** 门店类型:0, 未配置;1, 自营;2, 加盟 */
63
- storeType: number;
63
+ storeType: string;
64
64
  /** 门店承接类型:0-未配置,1-老店期承接,2-拉新期承接,3-开播后承接 */
65
- storeUndertakingType: number;
65
+ storeUndertakingType: string;
66
66
  /** 是否需要平台拉新:0, 未配置;1, 是;2, 否 */
67
- isPlatformNewCustomerOperation: number;
67
+ isPlatformNewCustomerOperation: string;
68
68
  /** 拉新时间 毫秒级时间戳 */
69
69
  newCustomerTime: number;
70
70
  /** 最新活动时间 毫秒级时间戳 */
@@ -156,15 +156,15 @@ export declare namespace StoreService {
156
156
  /** 店长 Pandora ID */
157
157
  storeManagerPandoraId?: string;
158
158
  /** 经营状态:0-未绑定负责人,1-营业中,2-已打烊 */
159
- businessStatus?: number;
159
+ businessStatus?: string;
160
160
  /** 商家合作类型:0-未配置,1-独立店,2-店中店 */
161
- merchantCooperationType?: number;
161
+ merchantCooperationType?: string;
162
162
  /** 门店类型:0-未配置,1-自营,2-加盟 */
163
- storeType?: number;
163
+ storeType?: string;
164
164
  /** 门店承接类型:0-未配置,1-老店期承接,2-拉新期承接,3-开播后承接 */
165
- storeUndertakingType?: number;
165
+ storeUndertakingType?: string;
166
166
  /** 是否需要平台拉新:0-未配置,1-是,2-否 */
167
- isPlatformNewCustomerOperation?: number;
167
+ isPlatformNewCustomerOperation?: string;
168
168
  /** 是否拉新(根据拉新时间是否大于0判断) */
169
169
  isNewCustomer?: number;
170
170
  /** 门店ID列表 */
@@ -307,13 +307,13 @@ export declare namespace StoreService {
307
307
  /** 门店基础信息 */
308
308
  basicInfo?: {
309
309
  /** 经营状态 */
310
- businessStatus?: number;
310
+ businessStatus?: string;
311
311
  /** 商家合作类型 */
312
- merchantCooperationType?: number;
312
+ merchantCooperationType?: string;
313
313
  /** 门店类型 */
314
- storeType?: number;
314
+ storeType?: string;
315
315
  /** 是否需要平台拉新 */
316
- isPlatformNewCustomerOperation?: number;
316
+ isPlatformNewCustomerOperation?: string;
317
317
  };
318
318
  /** 门店地址信息 */
319
319
  addressInfo?: {
@@ -375,7 +375,7 @@ export declare namespace StoreService {
375
375
  /** 门店ID */
376
376
  storeId: number;
377
377
  /** 门店承接类型:1-老店期承接,2-拉新期承接,3-开播后承接 */
378
- storeUndertakingType: number;
378
+ storeUndertakingType: string;
379
379
  }
380
380
  /**
381
381
  * 获取门店详情请求
@@ -419,7 +419,7 @@ export declare namespace StoreService {
419
419
  /** 门店ID列表 */
420
420
  storeIds: number[];
421
421
  /** 经营状态:0-未绑定负责人,1-营业中,2-已打烊 */
422
- businessStatus: number;
422
+ businessStatus: string;
423
423
  }
424
424
  /**
425
425
  * 创建门店分组请求
@@ -467,6 +467,17 @@ export declare namespace StoreService {
467
467
  */
468
468
  interface queryTagsByGroup {
469
469
  }
470
+ /**
471
+ * 查询门店列表通过标签ID请求
472
+ */
473
+ interface queryStoresByTagId {
474
+ /** 标签ID */
475
+ tagId: string;
476
+ /** 分页:页码 */
477
+ page?: number;
478
+ /** 分页:每页数量 */
479
+ pageSize?: number;
480
+ }
470
481
  }
471
482
  /**
472
483
  * 响应数据定义
@@ -565,7 +576,7 @@ export declare namespace StoreService {
565
576
  /** 是否成功 */
566
577
  success: boolean;
567
578
  /** 门店承接类型 */
568
- storeUndertakingType: number;
579
+ storeUndertakingType: string;
569
580
  }
570
581
  /**
571
582
  * 获取门店详情响应
@@ -699,6 +710,27 @@ export declare namespace StoreService {
699
710
  createdAt: number;
700
711
  }>;
701
712
  }
713
+ interface queryStoresByTagId {
714
+ /** 门店列表 */
715
+ stores: Array<{
716
+ /** 门店ID */
717
+ id: number;
718
+ /** 门店名称 */
719
+ storeName: string;
720
+ /** 省份 */
721
+ province?: string;
722
+ /** 城市 */
723
+ city?: string;
724
+ /** 区域 */
725
+ area?: string;
726
+ }>;
727
+ /** 总数 */
728
+ total: number;
729
+ /** 当前页 */
730
+ page: number;
731
+ /** 每页数量 */
732
+ pageSize: number;
733
+ }
702
734
  }
703
735
  /**
704
736
  * Store Controller 接口定义
@@ -781,6 +813,10 @@ export declare namespace StoreService {
781
813
  * 查询门店分组标签列表
782
814
  */
783
815
  queryTagsByGroup(request: StoreService.Request.queryTagsByGroup): Promise<StandardResponse<StoreService.Response.queryTagsByGroup>>;
816
+ /**
817
+ * 查询门店列表通过标签ID
818
+ */
819
+ queryStoresByTagId(request: StoreService.Request.queryStoresByTagId): Promise<StandardResponse<StoreService.Response.queryStoresByTagId>>;
784
820
  }
785
821
  }
786
822
  }
@@ -31,7 +31,7 @@ export declare class PandoraCouponService extends BaseService implements Service
31
31
  * @param request - 请求参数
32
32
  * @returns Promise,解析为标准响应格式
33
33
  */
34
- addCouponStock(request: Service.Request.addCouponStock): Promise<StandardResponse<Service.Response.addCouponStock>>;
34
+ addCouponStock(request: Service.Request.addCouponStock): Promise<StandardResponse<void>>;
35
35
  /**
36
36
  * 获取券模版详情
37
37
  * @param request - 请求参数
@@ -388,7 +388,7 @@ export declare namespace CouponService {
388
388
  /** 获取券模版列表 */
389
389
  getCouponTemplateList(request: CouponService.Request.getCouponTemplateList): Promise<StandardResponse<CouponService.Response.getCouponTemplateList>>;
390
390
  /** 增加券库存 */
391
- addCouponStock(request: CouponService.Request.addCouponStock): Promise<StandardResponse<CouponService.Response.addCouponStock>>;
391
+ addCouponStock(request: CouponService.Request.addCouponStock): Promise<StandardResponse<void>>;
392
392
  /** 获取券模版详情 */
393
393
  getCouponTemplateDetail(request: CouponService.Request.getCouponTemplateDetail): Promise<StandardResponse<CouponService.Response.getCouponTemplateDetail>>;
394
394
  /** 同步券至火山直播 */
@@ -86,4 +86,10 @@ export declare class PandoraProductService extends BaseService implements Servic
86
86
  * @returns Promise,解析为标准响应格式
87
87
  */
88
88
  searchProductByName(request: Service.Request.searchProductByName): Promise<StandardResponse<Service.Response.searchProductByName[]>>;
89
+ /**
90
+ * 获取绑定的SKU信息
91
+ * @param request - 请求参数
92
+ * @returns Promise,解析为标准响应格式
93
+ */
94
+ queryBindSkus(request: Service.Request.queryBindSkus): Promise<StandardResponse<Service.Response.queryBindSkus[]>>;
89
95
  }
@@ -113,4 +113,12 @@ export class PandoraProductService extends BaseService {
113
113
  searchProductByName(request) {
114
114
  return this.request(this.searchProductByName, request);
115
115
  }
116
+ /**
117
+ * 获取绑定的SKU信息
118
+ * @param request - 请求参数
119
+ * @returns Promise,解析为标准响应格式
120
+ */
121
+ queryBindSkus(request) {
122
+ return this.request(this.queryBindSkus, request);
123
+ }
116
124
  }
@@ -67,7 +67,7 @@ export declare namespace PandoraProductService {
67
67
  id?: string;
68
68
  /** 定时任务时间戳 */
69
69
  scheduledTime: number;
70
- /** 上下状态 */
70
+ /** 上下架状态 */
71
71
  status: string;
72
72
  }
73
73
  /**
@@ -255,6 +255,10 @@ export declare namespace PandoraProductService {
255
255
  /** 商品名称 */
256
256
  productName: string;
257
257
  }
258
+ interface queryBindSkus {
259
+ /** SKU Id */
260
+ skuId: string;
261
+ }
258
262
  }
259
263
  namespace Response {
260
264
  interface create {
@@ -266,10 +270,8 @@ export declare namespace PandoraProductService {
266
270
  id: string;
267
271
  /** 定时任务时间戳 */
268
272
  scheduledTime: number;
269
- /** 任务状态 */
273
+ /** 上下架状态 */
270
274
  status: string;
271
- /** 操作类型 上下架 */
272
- operationType: string;
273
275
  }
274
276
  interface list {
275
277
  total: number;
@@ -372,6 +374,26 @@ export declare namespace PandoraProductService {
372
374
  /** 商品ID */
373
375
  productId: string;
374
376
  }
377
+ interface queryBindSkus {
378
+ /** 商品Id */
379
+ productId: string;
380
+ /** SKU Id */
381
+ skuId: string;
382
+ /** 商品名称 */
383
+ productName: string;
384
+ /** 分类 */
385
+ cateName: string;
386
+ /** 数量 */
387
+ quantity: number;
388
+ /** 69码 */
389
+ skuCode: string;
390
+ /** 规格 */
391
+ attrs: Attr[];
392
+ /** 价格 */
393
+ price: number;
394
+ /** 上下架状态 */
395
+ status: string;
396
+ }
375
397
  }
376
398
  /**
377
399
  * ProductLive Controller 接口定义
@@ -429,5 +451,9 @@ export declare namespace PandoraProductService {
429
451
  * 根据商品名获取商品id列表
430
452
  */
431
453
  searchProductByName(request: PandoraProductService.Request.searchProductByName): Promise<StandardResponse<PandoraProductService.Response.searchProductByName[]>>;
454
+ /**
455
+ * 获取绑定的SKU信息
456
+ */
457
+ queryBindSkus(request: PandoraProductService.Request.queryBindSkus): Promise<StandardResponse<PandoraProductService.Response.queryBindSkus[]>>;
432
458
  }
433
459
  }
@@ -122,4 +122,10 @@ export declare class PandoraStoreService extends BaseService implements Service.
122
122
  * @returns Promise,解析为标准响应格式
123
123
  */
124
124
  queryTagsByGroup(request: Service.Request.queryTagsByGroup): Promise<StandardResponse<Service.Response.queryTagsByGroup>>;
125
+ /**
126
+ * 查询门店列表通过标签ID
127
+ * @param request - 请求参数
128
+ * @returns Promise,解析为标准响应格式
129
+ */
130
+ queryStoresByTagId(request: Service.Request.queryStoresByTagId): Promise<StandardResponse<Service.Response.queryStoresByTagId>>;
125
131
  }
@@ -161,4 +161,12 @@ export class PandoraStoreService extends BaseService {
161
161
  queryTagsByGroup(request) {
162
162
  return this.request(this.queryTagsByGroup, request);
163
163
  }
164
+ /**
165
+ * 查询门店列表通过标签ID
166
+ * @param request - 请求参数
167
+ * @returns Promise,解析为标准响应格式
168
+ */
169
+ queryStoresByTagId(request) {
170
+ return this.request(this.queryStoresByTagId, request);
171
+ }
164
172
  }
@@ -56,15 +56,15 @@ export declare namespace StoreService {
56
56
  /** 门店二维码 */
57
57
  qrCodeState?: any;
58
58
  /** 经营状态,0未绑定负责人,1营业中,2已打烊 */
59
- businessStatus: number;
59
+ businessStatus: string;
60
60
  /** 商家合作类型:0, 未配置;1, 独立店;2, 店中店 */
61
- merchantCooperationType: number;
61
+ merchantCooperationType: string;
62
62
  /** 门店类型:0, 未配置;1, 自营;2, 加盟 */
63
- storeType: number;
63
+ storeType: string;
64
64
  /** 门店承接类型:0-未配置,1-老店期承接,2-拉新期承接,3-开播后承接 */
65
- storeUndertakingType: number;
65
+ storeUndertakingType: string;
66
66
  /** 是否需要平台拉新:0, 未配置;1, 是;2, 否 */
67
- isPlatformNewCustomerOperation: number;
67
+ isPlatformNewCustomerOperation: string;
68
68
  /** 拉新时间 毫秒级时间戳 */
69
69
  newCustomerTime: number;
70
70
  /** 最新活动时间 毫秒级时间戳 */
@@ -156,15 +156,15 @@ export declare namespace StoreService {
156
156
  /** 店长 Pandora ID */
157
157
  storeManagerPandoraId?: string;
158
158
  /** 经营状态:0-未绑定负责人,1-营业中,2-已打烊 */
159
- businessStatus?: number;
159
+ businessStatus?: string;
160
160
  /** 商家合作类型:0-未配置,1-独立店,2-店中店 */
161
- merchantCooperationType?: number;
161
+ merchantCooperationType?: string;
162
162
  /** 门店类型:0-未配置,1-自营,2-加盟 */
163
- storeType?: number;
163
+ storeType?: string;
164
164
  /** 门店承接类型:0-未配置,1-老店期承接,2-拉新期承接,3-开播后承接 */
165
- storeUndertakingType?: number;
165
+ storeUndertakingType?: string;
166
166
  /** 是否需要平台拉新:0-未配置,1-是,2-否 */
167
- isPlatformNewCustomerOperation?: number;
167
+ isPlatformNewCustomerOperation?: string;
168
168
  /** 是否拉新(根据拉新时间是否大于0判断) */
169
169
  isNewCustomer?: number;
170
170
  /** 门店ID列表 */
@@ -307,13 +307,13 @@ export declare namespace StoreService {
307
307
  /** 门店基础信息 */
308
308
  basicInfo?: {
309
309
  /** 经营状态 */
310
- businessStatus?: number;
310
+ businessStatus?: string;
311
311
  /** 商家合作类型 */
312
- merchantCooperationType?: number;
312
+ merchantCooperationType?: string;
313
313
  /** 门店类型 */
314
- storeType?: number;
314
+ storeType?: string;
315
315
  /** 是否需要平台拉新 */
316
- isPlatformNewCustomerOperation?: number;
316
+ isPlatformNewCustomerOperation?: string;
317
317
  };
318
318
  /** 门店地址信息 */
319
319
  addressInfo?: {
@@ -375,7 +375,7 @@ export declare namespace StoreService {
375
375
  /** 门店ID */
376
376
  storeId: number;
377
377
  /** 门店承接类型:1-老店期承接,2-拉新期承接,3-开播后承接 */
378
- storeUndertakingType: number;
378
+ storeUndertakingType: string;
379
379
  }
380
380
  /**
381
381
  * 获取门店详情请求
@@ -419,7 +419,7 @@ export declare namespace StoreService {
419
419
  /** 门店ID列表 */
420
420
  storeIds: number[];
421
421
  /** 经营状态:0-未绑定负责人,1-营业中,2-已打烊 */
422
- businessStatus: number;
422
+ businessStatus: string;
423
423
  }
424
424
  /**
425
425
  * 创建门店分组请求
@@ -467,6 +467,17 @@ export declare namespace StoreService {
467
467
  */
468
468
  interface queryTagsByGroup {
469
469
  }
470
+ /**
471
+ * 查询门店列表通过标签ID请求
472
+ */
473
+ interface queryStoresByTagId {
474
+ /** 标签ID */
475
+ tagId: string;
476
+ /** 分页:页码 */
477
+ page?: number;
478
+ /** 分页:每页数量 */
479
+ pageSize?: number;
480
+ }
470
481
  }
471
482
  /**
472
483
  * 响应数据定义
@@ -565,7 +576,7 @@ export declare namespace StoreService {
565
576
  /** 是否成功 */
566
577
  success: boolean;
567
578
  /** 门店承接类型 */
568
- storeUndertakingType: number;
579
+ storeUndertakingType: string;
569
580
  }
570
581
  /**
571
582
  * 获取门店详情响应
@@ -699,6 +710,27 @@ export declare namespace StoreService {
699
710
  createdAt: number;
700
711
  }>;
701
712
  }
713
+ interface queryStoresByTagId {
714
+ /** 门店列表 */
715
+ stores: Array<{
716
+ /** 门店ID */
717
+ id: number;
718
+ /** 门店名称 */
719
+ storeName: string;
720
+ /** 省份 */
721
+ province?: string;
722
+ /** 城市 */
723
+ city?: string;
724
+ /** 区域 */
725
+ area?: string;
726
+ }>;
727
+ /** 总数 */
728
+ total: number;
729
+ /** 当前页 */
730
+ page: number;
731
+ /** 每页数量 */
732
+ pageSize: number;
733
+ }
702
734
  }
703
735
  /**
704
736
  * Store Controller 接口定义
@@ -781,6 +813,10 @@ export declare namespace StoreService {
781
813
  * 查询门店分组标签列表
782
814
  */
783
815
  queryTagsByGroup(request: StoreService.Request.queryTagsByGroup): Promise<StandardResponse<StoreService.Response.queryTagsByGroup>>;
816
+ /**
817
+ * 查询门店列表通过标签ID
818
+ */
819
+ queryStoresByTagId(request: StoreService.Request.queryStoresByTagId): Promise<StandardResponse<StoreService.Response.queryStoresByTagId>>;
784
820
  }
785
821
  }
786
822
  }
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.73",
3
+ "version": "0.0.75",
4
4
  "description": "EcommerceBackendBffService Node.js SDK",
5
5
  "type": "commonjs",
6
6
  "main": "./cjs/index.js",
@@ -25,13 +25,13 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "@be-link/ecommerce-volcengine-open-api-sdk": "^1.0.16",
28
- "@be-link/ecommerce-client-backend-service-node-sdk": "^0.0.10",
28
+ "@be-link/ecommerce-client-backend-service-node-sdk": "^0.0.11",
29
29
  "@be-link/ecommerce-tag-service-node-sdk": "^0.0.11",
30
- "@be-link/ecommerce-store-service-node-sdk": "^0.0.13",
31
- "@be-link/ecommerce-promotion-service-node-sdk": "^0.0.23",
30
+ "@be-link/ecommerce-store-service-node-sdk": "^0.0.17",
31
+ "@be-link/ecommerce-promotion-service-node-sdk": "^0.0.24",
32
32
  "@be-link/ecommerce-trade-service-node-sdk": "^0.0.17",
33
33
  "axios": "1.13.2",
34
- "@be-link/ecommerce-product-service-node-sdk": "0.0.21"
34
+ "@be-link/ecommerce-product-service-node-sdk": "0.0.23"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/node": "^20.0.0",