@lcdp/api-react-rest-client 3.0.3-LDS-5088-mangopay-consent.20168596105 → 3.0.3-LDS-5088-mangopay-consent.20169648482

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": "3.0.3-LDS-5088-mangopay-consent.20168596105",
3
+ "version": "3.0.3-LDS-5088-mangopay-consent.20169648482",
4
4
  "scripts": {
5
5
  "build": "tsc"
6
6
  },
@@ -58,6 +58,12 @@ export interface UserUpdateParameters {
58
58
  * @memberof UserUpdateParameters
59
59
  */
60
60
  email?: string;
61
+ /**
62
+ * True if the user have unpaid invoice
63
+ * @type {boolean}
64
+ * @memberof UserUpdateParameters
65
+ */
66
+ haveUnpaid?: boolean;
61
67
  /**
62
68
  * User nickname
63
69
  * @type {string}
@@ -44,6 +44,7 @@ function UserUpdateParametersFromJSONTyped(json, ignoreDiscriminator) {
44
44
  'lastname': json['lastname'],
45
45
  'birthdate': (json['birthdate'] === null || json['birthdate'] === undefined) ? json['birthdate'] : new Date(json['birthdate']),
46
46
  'email': json['email'],
47
+ 'haveUnpaid': json['haveUnpaid'],
47
48
  'nickname': json['nickname'],
48
49
  'phone': json['phone'],
49
50
  'role': (json['role'] === null || json['role'] === undefined) ? json['role'] : (0, UserRole_1.UserRoleFromJSON)(json['role']),
@@ -74,6 +75,7 @@ function UserUpdateParametersToJSON(value) {
74
75
  'lastname': value['lastname'],
75
76
  'birthdate': (value['birthdate'] === null || value['birthdate'] === undefined) ? value['birthdate'] : (0, runtime_1.toDateISOString)(value['birthdate']),
76
77
  'email': value['email'],
78
+ 'haveUnpaid': value['haveUnpaid'],
77
79
  'nickname': value['nickname'],
78
80
  'phone': value['phone'],
79
81
  'role': (0, UserRole_1.UserRoleToJSON)(value['role']),