@lcdp/api-react-rest-client 2.14.3-LDS-4997-apimonolithfront-afficher-la-da.18535749255 → 2.14.3-LDS-4997-apimonolithfront-afficher-la-da.18557707319

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-LDS-4997-apimonolithfront-afficher-la-da.18535749255",
3
+ "version": "2.14.3-LDS-4997-apimonolithfront-afficher-la-da.18557707319",
4
4
  "scripts": {
5
5
  "build": "tsc"
6
6
  },
@@ -21,7 +21,13 @@ export interface Subscription {
21
21
  * @type {string}
22
22
  * @memberof Subscription
23
23
  */
24
- family?: string;
24
+ familyId?: string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof Subscription
29
+ */
30
+ familyName?: string;
25
31
  /**
26
32
  *
27
33
  * @type {string}
@@ -31,7 +31,8 @@ function SubscriptionFromJSONTyped(json, ignoreDiscriminator) {
31
31
  return json;
32
32
  }
33
33
  return {
34
- 'family': json['family'],
34
+ 'familyId': json['familyId'],
35
+ 'familyName': json['familyName'],
35
36
  'name': json['name'],
36
37
  'status': (json['status'] === null || json['status'] === undefined) ? json['status'] : (0, SubscriptionStatus_1.SubscriptionStatusFromJSON)(json['status']),
37
38
  'startedAt': (json['startedAt'] === null || json['startedAt'] === undefined) ? json['startedAt'] : new Date(json['startedAt']),
@@ -46,7 +47,8 @@ function SubscriptionToJSON(value) {
46
47
  return value;
47
48
  }
48
49
  return {
49
- 'family': value['family'],
50
+ 'familyId': value['familyId'],
51
+ 'familyName': value['familyName'],
50
52
  'name': value['name'],
51
53
  'status': (0, SubscriptionStatus_1.SubscriptionStatusToJSON)(value['status']),
52
54
  'startedAt': (value['startedAt'] === null || value['startedAt'] === undefined) ? value['startedAt'] : (value['startedAt']).toISOString(),