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

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