@nimee/shared-types 1.0.182 → 1.0.183

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.
@@ -37,6 +37,7 @@ export interface IEndUserSeasonTicketModel {
37
37
  purchaseToken: string;
38
38
  startDate?: Date;
39
39
  endDate?: Date;
40
+ cancelDate?: Date;
40
41
  token?: string;
41
42
  externalSubStatus?: number;
42
43
  currency?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"endUserSeasonTicket.js","sourceRoot":"","sources":["../../src/payment/endUserSeasonTicket.ts"],"names":[],"mappings":";;;AA6DA,IAAY,uBAUX;AAVD,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;IAC/C,0EAA+C,CAAA;AACjD,CAAC,EAVW,uBAAuB,uCAAvB,uBAAuB,QAUlC"}
1
+ {"version":3,"file":"endUserSeasonTicket.js","sourceRoot":"","sources":["../../src/payment/endUserSeasonTicket.ts"],"names":[],"mappings":";;;AA8DA,IAAY,uBAUX;AAVD,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;IAC/C,0EAA+C,CAAA;AACjD,CAAC,EAVW,uBAAuB,uCAAvB,uBAAuB,QAUlC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nimee/shared-types",
3
- "version": "1.0.182",
3
+ "version": "1.0.183",
4
4
  "description": "Types and interfaces that any service can access if needed",
5
5
  "main": "dist/index.js",
6
6
  "author": "dan goldberg",
@@ -31,6 +31,7 @@ export interface IEndUserSeasonTicketModel {
31
31
  startDate?: Date; // the start date of the season ticket - if the seller wants one purchase to be valid for a certain period
32
32
  endDate?: Date; // the end date of the season ticket - if the seller wants one purchase to be valid for a certain period
33
33
  // so when the end date is over the season ticket is no longer valid and the status should be expired
34
+ cancelDate?: Date; // the date when the season ticket was cancelled
34
35
  token?: string; // the token generated when created this object and use to call createSubscription on the payment service
35
36
  externalSubStatus?: number; // the status of the subscription in the payment service
36
37
  currency?: string;