@lcdp/api-react-rest-client 2.14.3-develop.18754208100 → 2.14.3-develop.18833572496

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lcdp/api-react-rest-client",
3
- "version": "2.14.3-develop.18754208100",
3
+ "version": "2.14.3-develop.18833572496",
4
4
  "scripts": {
5
5
  "build": "tsc"
6
6
  },
@@ -52,6 +52,12 @@ export interface Subscription {
52
52
  * @memberof Subscription
53
53
  */
54
54
  nextBillingAt?: Date;
55
+ /**
56
+ *
57
+ * @type {Date}
58
+ * @memberof Subscription
59
+ */
60
+ currentTermEnd?: Date;
55
61
  /**
56
62
  *
57
63
  * @type {Date}
@@ -47,6 +47,7 @@ function SubscriptionFromJSONTyped(json, ignoreDiscriminator) {
47
47
  'status': (json['status'] === null || json['status'] === undefined) ? json['status'] : (0, SubscriptionStatus_1.SubscriptionStatusFromJSON)(json['status']),
48
48
  'startedAt': (json['startedAt'] === null || json['startedAt'] === undefined) ? json['startedAt'] : new Date(json['startedAt']),
49
49
  'nextBillingAt': (json['nextBillingAt'] === null || json['nextBillingAt'] === undefined) ? json['nextBillingAt'] : new Date(json['nextBillingAt']),
50
+ 'currentTermEnd': (json['currentTermEnd'] === null || json['currentTermEnd'] === undefined) ? json['currentTermEnd'] : new Date(json['currentTermEnd']),
50
51
  'trialStart': (json['trialStart'] === null || json['trialStart'] === undefined) ? json['trialStart'] : new Date(json['trialStart']),
51
52
  'trialEnd': (json['trialEnd'] === null || json['trialEnd'] === undefined) ? json['trialEnd'] : new Date(json['trialEnd']),
52
53
  };
@@ -63,6 +64,7 @@ function SubscriptionToJSON(value) {
63
64
  'status': (0, SubscriptionStatus_1.SubscriptionStatusToJSON)(value['status']),
64
65
  'startedAt': (value['startedAt'] === null || value['startedAt'] === undefined) ? value['startedAt'] : (value['startedAt']).toISOString(),
65
66
  'nextBillingAt': (value['nextBillingAt'] === null || value['nextBillingAt'] === undefined) ? value['nextBillingAt'] : (value['nextBillingAt']).toISOString(),
67
+ 'currentTermEnd': (value['currentTermEnd'] === null || value['currentTermEnd'] === undefined) ? value['currentTermEnd'] : (value['currentTermEnd']).toISOString(),
66
68
  'trialStart': (value['trialStart'] === null || value['trialStart'] === undefined) ? value['trialStart'] : (value['trialStart']).toISOString(),
67
69
  'trialEnd': (value['trialEnd'] === null || value['trialEnd'] === undefined) ? value['trialEnd'] : (value['trialEnd']).toISOString(),
68
70
  };