@lcdp/api-react-rest-client 2.13.4-LDS-4632-change-extension-of-domain-from.16074556011 → 2.13.4-LDS-4624-rdadmin-couleur-icone-commentai.16146100337

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.13.4-LDS-4632-change-extension-of-domain-from.16074556011",
3
+ "version": "2.13.4-LDS-4624-rdadmin-couleur-icone-commentai.16146100337",
4
4
  "scripts": {
5
5
  "build": "tsc"
6
6
  },
@@ -39,6 +39,12 @@ export interface AuthorLink {
39
39
  * @memberof AuthorLink
40
40
  */
41
41
  lastname: string;
42
+ /**
43
+ * User email
44
+ * @type {string}
45
+ * @memberof AuthorLink
46
+ */
47
+ email: string;
42
48
  }
43
49
  /**
44
50
  * Check if a given object implements the AuthorLink interface.
@@ -26,6 +26,8 @@ function instanceOfAuthorLink(value) {
26
26
  return false;
27
27
  if (!('lastname' in value) || value['lastname'] === undefined)
28
28
  return false;
29
+ if (!('email' in value) || value['email'] === undefined)
30
+ return false;
29
31
  return true;
30
32
  }
31
33
  exports.instanceOfAuthorLink = instanceOfAuthorLink;
@@ -42,6 +44,7 @@ function AuthorLinkFromJSONTyped(json, ignoreDiscriminator) {
42
44
  'id': json['id'],
43
45
  'firstname': json['firstname'],
44
46
  'lastname': json['lastname'],
47
+ 'email': json['email'],
45
48
  };
46
49
  }
47
50
  exports.AuthorLinkFromJSONTyped = AuthorLinkFromJSONTyped;
@@ -54,6 +57,7 @@ function AuthorLinkToJSON(value) {
54
57
  'id': value['id'],
55
58
  'firstname': value['firstname'],
56
59
  'lastname': value['lastname'],
60
+ 'email': value['email'],
57
61
  };
58
62
  }
59
63
  exports.AuthorLinkToJSON = AuthorLinkToJSON;