@migration-planner-ui/api-client 0.0.18 → 0.0.19

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.
@@ -28,6 +28,18 @@ export interface Assessment {
28
28
  * @memberof Assessment
29
29
  */
30
30
  name: string;
31
+ /**
32
+ * Owner's first name
33
+ * @type {string}
34
+ * @memberof Assessment
35
+ */
36
+ ownerFirstName?: string;
37
+ /**
38
+ * Owner's last name
39
+ * @type {string}
40
+ * @memberof Assessment
41
+ */
42
+ ownerLastName?: string;
31
43
  /**
32
44
  *
33
45
  * @type {string}
@@ -46,6 +46,8 @@ export function AssessmentFromJSONTyped(json, ignoreDiscriminator) {
46
46
  return {
47
47
  'id': json['id'],
48
48
  'name': json['name'],
49
+ 'ownerFirstName': json['ownerFirstName'] == null ? undefined : json['ownerFirstName'],
50
+ 'ownerLastName': json['ownerLastName'] == null ? undefined : json['ownerLastName'],
49
51
  'sourceType': json['sourceType'],
50
52
  'sourceId': json['sourceId'] == null ? undefined : json['sourceId'],
51
53
  'createdAt': (new Date(json['createdAt'])),
@@ -59,6 +61,8 @@ export function AssessmentToJSON(value) {
59
61
  return {
60
62
  'id': value['id'],
61
63
  'name': value['name'],
64
+ 'ownerFirstName': value['ownerFirstName'],
65
+ 'ownerLastName': value['ownerLastName'],
62
66
  'sourceType': value['sourceType'],
63
67
  'sourceId': value['sourceId'],
64
68
  'createdAt': ((value['createdAt']).toISOString()),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@migration-planner-ui/api-client",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "description": "OpenAPI client for the Migration Planner API",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -38,6 +38,18 @@ export interface Assessment {
38
38
  * @memberof Assessment
39
39
  */
40
40
  name: string;
41
+ /**
42
+ * Owner's first name
43
+ * @type {string}
44
+ * @memberof Assessment
45
+ */
46
+ ownerFirstName?: string;
47
+ /**
48
+ * Owner's last name
49
+ * @type {string}
50
+ * @memberof Assessment
51
+ */
52
+ ownerLastName?: string;
41
53
  /**
42
54
  *
43
55
  * @type {string}
@@ -100,6 +112,8 @@ export function AssessmentFromJSONTyped(json: any, ignoreDiscriminator: boolean)
100
112
 
101
113
  'id': json['id'],
102
114
  'name': json['name'],
115
+ 'ownerFirstName': json['ownerFirstName'] == null ? undefined : json['ownerFirstName'],
116
+ 'ownerLastName': json['ownerLastName'] == null ? undefined : json['ownerLastName'],
103
117
  'sourceType': json['sourceType'],
104
118
  'sourceId': json['sourceId'] == null ? undefined : json['sourceId'],
105
119
  'createdAt': (new Date(json['createdAt'])),
@@ -115,6 +129,8 @@ export function AssessmentToJSON(value?: Assessment | null): any {
115
129
 
116
130
  'id': value['id'],
117
131
  'name': value['name'],
132
+ 'ownerFirstName': value['ownerFirstName'],
133
+ 'ownerLastName': value['ownerLastName'],
118
134
  'sourceType': value['sourceType'],
119
135
  'sourceId': value['sourceId'],
120
136
  'createdAt': ((value['createdAt']).toISOString()),