@lcdp/api-react-rest-client 2.14.6-develop.18946407604 → 2.14.6

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.6-develop.18946407604",
3
+ "version": "2.14.6",
4
4
  "scripts": {
5
5
  "build": "tsc"
6
6
  },
@@ -21,6 +21,14 @@ export interface UserJournal {
21
21
  * @memberof UserJournal
22
22
  */
23
23
  archivedSaleOfferPageViewAt?: Date;
24
+ /**
25
+ * Deadline indicating that the user with the ACTIVE status on Mangopay (ScaEnrollmentStatus) pre-SCA is not required to enroll.
26
+ * If this user starts the enrollment, this date is removed.
27
+ *
28
+ * @type {Date}
29
+ * @memberof UserJournal
30
+ */
31
+ scaGracePeriod?: Date;
24
32
  }
25
33
  /**
26
34
  * Check if a given object implements the UserJournal interface.
@@ -31,6 +31,7 @@ function UserJournalFromJSONTyped(json, ignoreDiscriminator) {
31
31
  }
32
32
  return {
33
33
  'archivedSaleOfferPageViewAt': (json['archivedSaleOfferPageViewAt'] === null || json['archivedSaleOfferPageViewAt'] === undefined) ? json['archivedSaleOfferPageViewAt'] : new Date(json['archivedSaleOfferPageViewAt']),
34
+ 'scaGracePeriod': (json['scaGracePeriod'] === null || json['scaGracePeriod'] === undefined) ? json['scaGracePeriod'] : new Date(json['scaGracePeriod']),
34
35
  };
35
36
  }
36
37
  exports.UserJournalFromJSONTyped = UserJournalFromJSONTyped;
@@ -40,6 +41,7 @@ function UserJournalToJSON(value) {
40
41
  }
41
42
  return {
42
43
  'archivedSaleOfferPageViewAt': (value['archivedSaleOfferPageViewAt'] === null || value['archivedSaleOfferPageViewAt'] === undefined) ? value['archivedSaleOfferPageViewAt'] : (value['archivedSaleOfferPageViewAt']).toISOString(),
44
+ 'scaGracePeriod': (value['scaGracePeriod'] === null || value['scaGracePeriod'] === undefined) ? value['scaGracePeriod'] : (value['scaGracePeriod']).toISOString(),
43
45
  };
44
46
  }
45
47
  exports.UserJournalToJSON = UserJournalToJSON;