@be-link/ecommerce-trade-service-node-sdk 0.1.19 → 0.1.21
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.
|
@@ -7,6 +7,13 @@ export declare namespace PosCoreService {
|
|
|
7
7
|
code: string;
|
|
8
8
|
quantity: number;
|
|
9
9
|
}
|
|
10
|
+
interface IVerifyCoupon {
|
|
11
|
+
id: string;
|
|
12
|
+
name: string;
|
|
13
|
+
code: string;
|
|
14
|
+
validStartTime: number;
|
|
15
|
+
validEndTime: number;
|
|
16
|
+
}
|
|
10
17
|
}
|
|
11
18
|
namespace ByWeb {
|
|
12
19
|
namespace Request {
|
|
@@ -140,11 +147,7 @@ export declare namespace PosCoreService {
|
|
|
140
147
|
namespace ByInternal {
|
|
141
148
|
namespace Request {
|
|
142
149
|
interface ICreateOrderByVerifyCoupon {
|
|
143
|
-
coupon:
|
|
144
|
-
id: string;
|
|
145
|
-
name: string;
|
|
146
|
-
code: string;
|
|
147
|
-
};
|
|
150
|
+
coupon: Dto.IVerifyCoupon;
|
|
148
151
|
userId: string;
|
|
149
152
|
skuId: string;
|
|
150
153
|
}
|