@be-link/ecommerce-backend-bff-service-node-sdk 0.0.90 → 0.0.92
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.
|
@@ -159,7 +159,7 @@ export declare namespace CouponService {
|
|
|
159
159
|
/** 券生命周期 */
|
|
160
160
|
lifeCycle: CouponLifeCycle;
|
|
161
161
|
/** 使用限制 */
|
|
162
|
-
usageLimit
|
|
162
|
+
usageLimit?: CouponUsageLimit;
|
|
163
163
|
/** 领取限制列表 */
|
|
164
164
|
receiveLimits?: CouponReceiveLimit[];
|
|
165
165
|
/** 优惠规则列表 */
|
|
@@ -208,7 +208,7 @@ export declare namespace CouponService {
|
|
|
208
208
|
/** 是否可用 */
|
|
209
209
|
available: boolean;
|
|
210
210
|
/** 范围值 */
|
|
211
|
-
scopeValue
|
|
211
|
+
scopeValue?: string;
|
|
212
212
|
/** 商品列表 */
|
|
213
213
|
idList?: string[];
|
|
214
214
|
/** 范围类型 */
|
|
@@ -31,7 +31,10 @@ export declare namespace PointMallService {
|
|
|
31
31
|
sortOrder: number;
|
|
32
32
|
productName: string;
|
|
33
33
|
productId: string;
|
|
34
|
-
skuSpecs:
|
|
34
|
+
skuSpecs: {
|
|
35
|
+
attrName: string;
|
|
36
|
+
attrValue: string;
|
|
37
|
+
}[];
|
|
35
38
|
salePrice: number;
|
|
36
39
|
online: number;
|
|
37
40
|
enabled: number;
|
|
@@ -159,7 +159,7 @@ export declare namespace CouponService {
|
|
|
159
159
|
/** 券生命周期 */
|
|
160
160
|
lifeCycle: CouponLifeCycle;
|
|
161
161
|
/** 使用限制 */
|
|
162
|
-
usageLimit
|
|
162
|
+
usageLimit?: CouponUsageLimit;
|
|
163
163
|
/** 领取限制列表 */
|
|
164
164
|
receiveLimits?: CouponReceiveLimit[];
|
|
165
165
|
/** 优惠规则列表 */
|
|
@@ -208,7 +208,7 @@ export declare namespace CouponService {
|
|
|
208
208
|
/** 是否可用 */
|
|
209
209
|
available: boolean;
|
|
210
210
|
/** 范围值 */
|
|
211
|
-
scopeValue
|
|
211
|
+
scopeValue?: string;
|
|
212
212
|
/** 商品列表 */
|
|
213
213
|
idList?: string[];
|
|
214
214
|
/** 范围类型 */
|
|
@@ -31,7 +31,10 @@ export declare namespace PointMallService {
|
|
|
31
31
|
sortOrder: number;
|
|
32
32
|
productName: string;
|
|
33
33
|
productId: string;
|
|
34
|
-
skuSpecs:
|
|
34
|
+
skuSpecs: {
|
|
35
|
+
attrName: string;
|
|
36
|
+
attrValue: string;
|
|
37
|
+
}[];
|
|
35
38
|
salePrice: number;
|
|
36
39
|
online: number;
|
|
37
40
|
enabled: number;
|
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.
|
|
3
|
+
"version": "0.0.92",
|
|
4
4
|
"description": "EcommerceBackendBffService Node.js SDK",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./cjs/index.js",
|
|
@@ -28,9 +28,9 @@
|
|
|
28
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
30
|
"@be-link/ecommerce-store-service-node-sdk": "^0.0.22",
|
|
31
|
-
"@be-link/ecommerce-trade-service-node-sdk": "^0.0.
|
|
32
|
-
"@be-link/ecommerce-task-center-service-node-sdk": "^0.0.
|
|
33
|
-
"@be-link/ecommerce-promotion-service-node-sdk": "^0.0.
|
|
31
|
+
"@be-link/ecommerce-trade-service-node-sdk": "^0.0.51",
|
|
32
|
+
"@be-link/ecommerce-task-center-service-node-sdk": "^0.0.34",
|
|
33
|
+
"@be-link/ecommerce-promotion-service-node-sdk": "^0.0.28",
|
|
34
34
|
"axios": "1.13.2",
|
|
35
35
|
"@be-link/ecommerce-backend-user-service-node-sdk": "^0.0.3",
|
|
36
36
|
"@be-link/ecommerce-product-service-node-sdk": "0.0.30"
|