@nimee/shared-types 1.0.113 → 1.0.115
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.
|
@@ -42,16 +42,16 @@ export interface IEndUserSeasonTicketModel {
|
|
|
42
42
|
currency?: string;
|
|
43
43
|
externalSubscriptionIdOfNimiId?: string;
|
|
44
44
|
hrc?: string;
|
|
45
|
-
createdDate
|
|
46
|
-
iterationType
|
|
47
|
-
description
|
|
48
|
-
isPaid
|
|
49
|
-
salePaidDate
|
|
50
|
-
buyerCardMask
|
|
51
|
-
buyerCardExp
|
|
52
|
-
buyerName
|
|
53
|
-
buyerEmail
|
|
54
|
-
buyerPhone
|
|
45
|
+
createdDate?: Date;
|
|
46
|
+
iterationType?: string;
|
|
47
|
+
description?: string;
|
|
48
|
+
isPaid?: boolean;
|
|
49
|
+
salePaidDate?: Date;
|
|
50
|
+
buyerCardMask?: string;
|
|
51
|
+
buyerCardExp?: string;
|
|
52
|
+
buyerName?: string;
|
|
53
|
+
buyerEmail?: string;
|
|
54
|
+
buyerPhone?: string;
|
|
55
55
|
}
|
|
56
56
|
export declare enum ISeasonTicketStatusType {
|
|
57
57
|
ACTIVE = "active",// the season ticket is active
|
|
@@ -60,5 +60,6 @@ export declare enum ISeasonTicketStatusType {
|
|
|
60
60
|
FAILED = "failed",// one of the payments has failed
|
|
61
61
|
COMPLETED = "completed",// all payments have been completed
|
|
62
62
|
EXPIRED = "expired",// the season ticket has expired - end date has passed
|
|
63
|
-
PAUSED = "paused"
|
|
63
|
+
PAUSED = "paused",// the season ticket has been paused
|
|
64
|
+
SUB_ITERATION_SUCCESS = "sub-iteration-success"
|
|
64
65
|
}
|
|
@@ -10,5 +10,6 @@ var ISeasonTicketStatusType;
|
|
|
10
10
|
ISeasonTicketStatusType["COMPLETED"] = "completed";
|
|
11
11
|
ISeasonTicketStatusType["EXPIRED"] = "expired";
|
|
12
12
|
ISeasonTicketStatusType["PAUSED"] = "paused";
|
|
13
|
+
ISeasonTicketStatusType["SUB_ITERATION_SUCCESS"] = "sub-iteration-success";
|
|
13
14
|
})(ISeasonTicketStatusType || (exports.ISeasonTicketStatusType = ISeasonTicketStatusType = {}));
|
|
14
15
|
//# sourceMappingURL=endUserSeasonTicket.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"endUserSeasonTicket.js","sourceRoot":"","sources":["../../src/payment/endUserSeasonTicket.ts"],"names":[],"mappings":";;;AAiDA,IAAY,
|
|
1
|
+
{"version":3,"file":"endUserSeasonTicket.js","sourceRoot":"","sources":["../../src/payment/endUserSeasonTicket.ts"],"names":[],"mappings":";;;AAiDA,IAAY,uBASX;AATD,WAAY,uBAAuB;IACjC,4CAAiB,CAAA;IACjB,8CAAmB,CAAA;IACnB,kDAAuB,CAAA;IACvB,4CAAiB,CAAA;IACjB,kDAAuB,CAAA;IACvB,8CAAmB,CAAA;IACnB,4CAAiB,CAAA;IACjB,0EAA+C,CAAA;AACjD,CAAC,EATW,uBAAuB,uCAAvB,uBAAuB,QASlC"}
|
package/package.json
CHANGED
|
@@ -36,16 +36,16 @@ export interface IEndUserSeasonTicketModel {
|
|
|
36
36
|
currency?: string;
|
|
37
37
|
externalSubscriptionIdOfNimiId?: string;
|
|
38
38
|
hrc?: string;
|
|
39
|
-
createdDate
|
|
40
|
-
iterationType
|
|
41
|
-
description
|
|
42
|
-
isPaid
|
|
43
|
-
salePaidDate
|
|
44
|
-
buyerCardMask
|
|
45
|
-
buyerCardExp
|
|
46
|
-
buyerName
|
|
47
|
-
buyerEmail
|
|
48
|
-
buyerPhone
|
|
39
|
+
createdDate?: Date;
|
|
40
|
+
iterationType?: string;
|
|
41
|
+
description?: string;
|
|
42
|
+
isPaid?: boolean;
|
|
43
|
+
salePaidDate?: Date;
|
|
44
|
+
buyerCardMask?: string;
|
|
45
|
+
buyerCardExp?: string;
|
|
46
|
+
buyerName?: string;
|
|
47
|
+
buyerEmail?: string;
|
|
48
|
+
buyerPhone?: string;
|
|
49
49
|
}
|
|
50
50
|
export enum ISeasonTicketStatusType {
|
|
51
51
|
ACTIVE = "active", // the season ticket is active
|
|
@@ -55,4 +55,5 @@ export enum ISeasonTicketStatusType {
|
|
|
55
55
|
COMPLETED = "completed", // all payments have been completed
|
|
56
56
|
EXPIRED = "expired", // the season ticket has expired - end date has passed
|
|
57
57
|
PAUSED = "paused", // the season ticket has been paused
|
|
58
|
+
SUB_ITERATION_SUCCESS = "sub-iteration-success", // the subscription iteration was successful
|
|
58
59
|
}
|