@equisoft/equisoft-connect-sdk-typescript 10.35.1-snapshot.20221115010652 → 10.35.1

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.
@@ -27,6 +27,12 @@ export interface GatewaysAccessesValidationGatewayAdminDto {
27
27
  * @memberof GatewaysAccessesValidationGatewayAdminDto
28
28
  */
29
29
  name: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof GatewaysAccessesValidationGatewayAdminDto
34
+ */
35
+ email: string;
30
36
  /**
31
37
  *
32
38
  * @type {string}
@@ -21,6 +21,7 @@ function instanceOfGatewaysAccessesValidationGatewayAdminDto(value) {
21
21
  let isInstance = true;
22
22
  isInstance = isInstance && "id" in value;
23
23
  isInstance = isInstance && "name" in value;
24
+ isInstance = isInstance && "email" in value;
24
25
  isInstance = isInstance && "lang" in value;
25
26
  return isInstance;
26
27
  }
@@ -36,6 +37,7 @@ function GatewaysAccessesValidationGatewayAdminDtoFromJSONTyped(json, ignoreDisc
36
37
  return {
37
38
  'id': json['id'],
38
39
  'name': json['name'],
40
+ 'email': json['email'],
39
41
  'lang': json['lang'],
40
42
  };
41
43
  }
@@ -50,6 +52,7 @@ function GatewaysAccessesValidationGatewayAdminDtoToJSON(value) {
50
52
  return {
51
53
  'id': value.id,
52
54
  'name': value.name,
55
+ 'email': value.email,
53
56
  'lang': value.lang,
54
57
  };
55
58
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equisoft/equisoft-connect-sdk-typescript",
3
- "version": "10.35.1-snapshot.20221115010652",
3
+ "version": "10.35.1",
4
4
  "description": "OpenAPI client for @equisoft/equisoft-connect-sdk-typescript",
5
5
  "author": "OpenAPI-Generator",
6
6
  "main": "./dist/index.js",
@@ -31,6 +31,12 @@ export interface GatewaysAccessesValidationGatewayAdminDto {
31
31
  * @memberof GatewaysAccessesValidationGatewayAdminDto
32
32
  */
33
33
  name: string;
34
+ /**
35
+ *
36
+ * @type {string}
37
+ * @memberof GatewaysAccessesValidationGatewayAdminDto
38
+ */
39
+ email: string;
34
40
  /**
35
41
  *
36
42
  * @type {string}
@@ -46,6 +52,7 @@ export function instanceOfGatewaysAccessesValidationGatewayAdminDto(value: objec
46
52
  let isInstance = true;
47
53
  isInstance = isInstance && "id" in value;
48
54
  isInstance = isInstance && "name" in value;
55
+ isInstance = isInstance && "email" in value;
49
56
  isInstance = isInstance && "lang" in value;
50
57
 
51
58
  return isInstance;
@@ -63,6 +70,7 @@ export function GatewaysAccessesValidationGatewayAdminDtoFromJSONTyped(json: any
63
70
 
64
71
  'id': json['id'],
65
72
  'name': json['name'],
73
+ 'email': json['email'],
66
74
  'lang': json['lang'],
67
75
  };
68
76
  }
@@ -78,6 +86,7 @@ export function GatewaysAccessesValidationGatewayAdminDtoToJSON(value?: Gateways
78
86
 
79
87
  'id': value.id,
80
88
  'name': value.name,
89
+ 'email': value.email,
81
90
  'lang': value.lang,
82
91
  };
83
92
  }