@be-link/ecommerce-promotion-service-node-sdk 0.1.39 → 0.1.40
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.
|
@@ -245,8 +245,13 @@ export declare namespace Service {
|
|
|
245
245
|
orderCouponsAvailability: {
|
|
246
246
|
/** 可用的订单券模板ID列表 */
|
|
247
247
|
available: string[];
|
|
248
|
-
/**
|
|
249
|
-
unavailable:
|
|
248
|
+
/** 不可用的订单券模板及原因 */
|
|
249
|
+
unavailable: Array<{
|
|
250
|
+
/** 券模板ID */
|
|
251
|
+
couponId: string;
|
|
252
|
+
/** 不可用原因 */
|
|
253
|
+
tips: string;
|
|
254
|
+
}>;
|
|
250
255
|
};
|
|
251
256
|
/** 校验结果(仅在用户选择场景下有值) */
|
|
252
257
|
validation?: ValidateSelectedCouponResult;
|