@trusted-solutions/sdit.models 0.51.0-alpha.1 → 0.51.0-alpha.3
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.
|
@@ -29,6 +29,10 @@ export declare enum PaymentServiceProvider {
|
|
|
29
29
|
ddpayOnline = "ddpayOnline",
|
|
30
30
|
/** DDpay 點點付 線下金流 */
|
|
31
31
|
ddpay = "ddpay",
|
|
32
|
+
/** LINEPay線上直串 */
|
|
33
|
+
linepayOnline = "linepayOnline",
|
|
34
|
+
/** LINEPay線下直串 */
|
|
35
|
+
linepay = "linepay",
|
|
32
36
|
none = "none",
|
|
33
37
|
mix = "mix"
|
|
34
38
|
}
|
|
@@ -33,6 +33,10 @@ var PaymentServiceProvider;
|
|
|
33
33
|
PaymentServiceProvider["ddpayOnline"] = "ddpayOnline";
|
|
34
34
|
/** DDpay 點點付 線下金流 */
|
|
35
35
|
PaymentServiceProvider["ddpay"] = "ddpay";
|
|
36
|
+
/** LINEPay線上直串 */
|
|
37
|
+
PaymentServiceProvider["linepayOnline"] = "linepayOnline";
|
|
38
|
+
/** LINEPay線下直串 */
|
|
39
|
+
PaymentServiceProvider["linepay"] = "linepay";
|
|
36
40
|
PaymentServiceProvider["none"] = "none";
|
|
37
41
|
PaymentServiceProvider["mix"] = "mix";
|
|
38
42
|
})(PaymentServiceProvider = exports.PaymentServiceProvider || (exports.PaymentServiceProvider = {}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"payment-service-provider.js","sourceRoot":"","sources":["../../../projects/sdit-model-lib/src/enums/payment-service-provider.ts"],"names":[],"mappings":";;;AAAA,IAAY,
|
|
1
|
+
{"version":3,"file":"payment-service-provider.js","sourceRoot":"","sources":["../../../projects/sdit-model-lib/src/enums/payment-service-provider.ts"],"names":[],"mappings":";;;AAAA,IAAY,sBA8CX;AA9CD,WAAY,sBAAsB;IAChC,YAAY;IACZ,+CAAqB,CAAA;IACrB,gBAAgB;IAChB,2CAAiB,CAAA;IACjB,eAAe;IACf,2CAAiB,CAAA;IACjB,eAAe;IACf,6CAAmB,CAAA;IACnB,aAAa;IACb,+CAAqB,CAAA;IACrB,WAAW;IACX,6CAAmB,CAAA;IACnB,wBAAwB;IACxB,qEAA2C,CAAA;IAC3C,oBAAoB;IACpB,uEAA6C,CAAA;IAE7C,oBAAoB;IACpB,6CAAmB,CAAA;IACnB,uBAAuB;IACvB,+CAAqB,CAAA;IACrB,kCAAkC;IAClC,iDAAuB,CAAA;IAEvB,yBAAyB;IACzB,uDAA6B,CAAA;IAE7B,yBAAyB;IACzB,iEAAuC,CAAA;IAGvC,qBAAqB;IACrB,qDAA2B,CAAA;IAC3B,qBAAqB;IACrB,yCAAe,CAAA;IAGf,kBAAkB;IAClB,yDAA+B,CAAA;IAC/B,kBAAkB;IAClB,6CAAmB,CAAA;IAEnB,uCAAa,CAAA;IACb,qCAAW,CAAA;AAEb,CAAC,EA9CW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QA8CjC"}
|
|
@@ -358,8 +358,10 @@ export interface SOCancelOrderResponse {
|
|
|
358
358
|
/*******************************/
|
|
359
359
|
export interface SOGetOrderRequest {
|
|
360
360
|
storeId: string;
|
|
361
|
-
/** online order id
|
|
362
|
-
id
|
|
361
|
+
/** online order id 二選一*/
|
|
362
|
+
id?: string;
|
|
363
|
+
/** pos order id 二選一*/
|
|
364
|
+
orderId?: string;
|
|
363
365
|
}
|
|
364
366
|
export interface SOGetOrderResponse {
|
|
365
367
|
storeId: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trusted-solutions/sdit.models",
|
|
3
|
-
"version": "0.51.0-alpha.
|
|
3
|
+
"version": "0.51.0-alpha.3",
|
|
4
4
|
"description": "TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|