@lcdp/api-react-rest-client 2.13.4-LDS-4624-rdadmin-couleur-icone-commentai.16146100337 → 2.13.4-LDS-4624-rdadmin-couleur-icone-commentai.16165418850

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