@be-link/ecommerce-promotion-service-node-sdk 0.1.32 → 0.1.33

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.
@@ -27,6 +27,8 @@ export declare namespace Service {
27
27
  consumptionPeriodDays: number;
28
28
  /** 消费门槛金额(单位:分) */
29
29
  consumptionThresholdAmount: number;
30
+ /** 是否可以购买 */
31
+ canBuy?: boolean;
30
32
  }
31
33
  /** 后台管理列表 - 完整12个字段 */
32
34
  interface AdminProductItem {
@@ -108,6 +110,8 @@ export declare namespace Service {
108
110
  }
109
111
  /** 查询开启且上架的积分商城列表 */
110
112
  export interface queryEnabledAndOnlineProducts {
113
+ /** 门店ID */
114
+ storeId: string;
111
115
  /** 页码 */
112
116
  page?: number;
113
117
  /** 每页数量 */
@@ -133,6 +137,8 @@ export declare namespace Service {
133
137
  export interface getProductDetail {
134
138
  /** 商品ID */
135
139
  productId: string;
140
+ /** 门店id */
141
+ storeId?: string;
136
142
  /** 是否上架 */
137
143
  online?: number;
138
144
  /** 是否开启 */
@@ -149,10 +155,6 @@ export declare namespace Service {
149
155
  export interface productInfoChangeNotify {
150
156
  /** 商品ID列表 */
151
157
  productId: string;
152
- /** 可见门店ID列表,空数组表示全部门店可见 */
153
- visibleStores?: string[];
154
- /** 不可见门店ID列表,空数组表示无不可见门店 */
155
- invisibleStores?: string[];
156
158
  }
157
159
  export {};
158
160
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/ecommerce-promotion-service-node-sdk",
3
- "version": "0.1.32",
3
+ "version": "0.1.33",
4
4
  "description": "EcommercePromotionService Node.js SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",