@nimee/shared-types 1.0.112 → 1.0.114

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,6 +42,16 @@ export interface IEndUserSeasonTicketModel {
42
42
  currency?: string;
43
43
  externalSubscriptionIdOfNimiId?: string;
44
44
  hrc?: string;
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;
45
55
  }
46
56
  export declare enum ISeasonTicketStatusType {
47
57
  ACTIVE = "active",// the season ticket is active
@@ -49,5 +59,6 @@ export declare enum ISeasonTicketStatusType {
49
59
  CANCELLED = "cancelled",// the season ticket has been cancelled
50
60
  FAILED = "failed",// one of the payments has failed
51
61
  COMPLETED = "completed",// all payments have been completed
52
- EXPIRED = "expired"
62
+ EXPIRED = "expired",// the season ticket has expired - end date has passed
63
+ PAUSED = "paused"
53
64
  }
@@ -9,5 +9,6 @@ var ISeasonTicketStatusType;
9
9
  ISeasonTicketStatusType["FAILED"] = "failed";
10
10
  ISeasonTicketStatusType["COMPLETED"] = "completed";
11
11
  ISeasonTicketStatusType["EXPIRED"] = "expired";
12
+ ISeasonTicketStatusType["PAUSED"] = "paused";
12
13
  })(ISeasonTicketStatusType || (exports.ISeasonTicketStatusType = ISeasonTicketStatusType = {}));
13
14
  //# sourceMappingURL=endUserSeasonTicket.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"endUserSeasonTicket.js","sourceRoot":"","sources":["../../src/payment/endUserSeasonTicket.ts"],"names":[],"mappings":";;;AAuCA,IAAY,uBAOX;AAPD,WAAY,uBAAuB;IACjC,4CAAiB,CAAA;IACjB,8CAAmB,CAAA;IACnB,kDAAuB,CAAA;IACvB,4CAAiB,CAAA;IACjB,kDAAuB,CAAA;IACvB,8CAAmB,CAAA;AACrB,CAAC,EAPW,uBAAuB,uCAAvB,uBAAuB,QAOlC"}
1
+ {"version":3,"file":"endUserSeasonTicket.js","sourceRoot":"","sources":["../../src/payment/endUserSeasonTicket.ts"],"names":[],"mappings":";;;AAiDA,IAAY,uBAQX;AARD,WAAY,uBAAuB;IACjC,4CAAiB,CAAA;IACjB,8CAAmB,CAAA;IACnB,kDAAuB,CAAA;IACvB,4CAAiB,CAAA;IACjB,kDAAuB,CAAA;IACvB,8CAAmB,CAAA;IACnB,4CAAiB,CAAA;AACnB,CAAC,EARW,uBAAuB,uCAAvB,uBAAuB,QAQlC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimee/shared-types",
3
- "version": "1.0.112",
3
+ "version": "1.0.114",
4
4
  "description": "Types and interfaces that any service can access if needed",
5
5
  "main": "dist/index.js",
6
6
  "author": "dan goldberg",
@@ -36,6 +36,16 @@ export interface IEndUserSeasonTicketModel {
36
36
  currency?: string;
37
37
  externalSubscriptionIdOfNimiId?: string;
38
38
  hrc?: string;
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;
39
49
  }
40
50
  export enum ISeasonTicketStatusType {
41
51
  ACTIVE = "active", // the season ticket is active
@@ -44,4 +54,5 @@ export enum ISeasonTicketStatusType {
44
54
  FAILED = "failed", // one of the payments has failed
45
55
  COMPLETED = "completed", // all payments have been completed
46
56
  EXPIRED = "expired", // the season ticket has expired - end date has passed
57
+ PAUSED = "paused", // the season ticket has been paused
47
58
  }