@equisoft/equisoft-connect-sdk-typescript 11.2.5-snapshot.20230203190257 → 11.2.5

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.
@@ -15,12 +15,6 @@
15
15
  * @interface GatewaysCredentials
16
16
  */
17
17
  export interface GatewaysCredentials {
18
- /**
19
- * Id
20
- * @type {number}
21
- * @memberof GatewaysCredentials
22
- */
23
- id?: number;
24
18
  /**
25
19
  * User name
26
20
  * @type {string}
@@ -34,7 +34,6 @@ function GatewaysCredentialsFromJSONTyped(json, ignoreDiscriminator) {
34
34
  return json;
35
35
  }
36
36
  return {
37
- 'id': !runtime_1.exists(json, 'id') ? undefined : json['id'],
38
37
  'username': json['username'],
39
38
  'password': json['password'],
40
39
  'firstName': !runtime_1.exists(json, 'firstName') ? undefined : json['firstName'],
@@ -53,7 +52,6 @@ function GatewaysCredentialsToJSON(value) {
53
52
  return null;
54
53
  }
55
54
  return {
56
- 'id': value.id,
57
55
  'username': value.username,
58
56
  'password': value.password,
59
57
  'firstName': value.firstName,
@@ -15,12 +15,6 @@
15
15
  * @interface GatewaysCredentialsWithSsn
16
16
  */
17
17
  export interface GatewaysCredentialsWithSsn {
18
- /**
19
- * Id
20
- * @type {number}
21
- * @memberof GatewaysCredentialsWithSsn
22
- */
23
- id?: number;
24
18
  /**
25
19
  * User name
26
20
  * @type {string}
@@ -34,7 +34,6 @@ function GatewaysCredentialsWithSsnFromJSONTyped(json, ignoreDiscriminator) {
34
34
  return json;
35
35
  }
36
36
  return {
37
- 'id': !runtime_1.exists(json, 'id') ? undefined : json['id'],
38
37
  'username': json['username'],
39
38
  'password': json['password'],
40
39
  'firstName': !runtime_1.exists(json, 'firstName') ? undefined : json['firstName'],
@@ -54,7 +53,6 @@ function GatewaysCredentialsWithSsnToJSON(value) {
54
53
  return null;
55
54
  }
56
55
  return {
57
- 'id': value.id,
58
56
  'username': value.username,
59
57
  'password': value.password,
60
58
  'firstName': value.firstName,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equisoft/equisoft-connect-sdk-typescript",
3
- "version": "11.2.5-snapshot.20230203190257",
3
+ "version": "11.2.5",
4
4
  "description": "OpenAPI client for @equisoft/equisoft-connect-sdk-typescript",
5
5
  "author": "OpenAPI-Generator",
6
6
  "main": "./dist/index.js",
@@ -19,12 +19,6 @@ import { exists, mapValues } from '../runtime';
19
19
  * @interface GatewaysCredentials
20
20
  */
21
21
  export interface GatewaysCredentials {
22
- /**
23
- * Id
24
- * @type {number}
25
- * @memberof GatewaysCredentials
26
- */
27
- id?: number;
28
22
  /**
29
23
  * User name
30
24
  * @type {string}
@@ -90,7 +84,6 @@ export function GatewaysCredentialsFromJSONTyped(json: any, ignoreDiscriminator:
90
84
  }
91
85
  return {
92
86
 
93
- 'id': !exists(json, 'id') ? undefined : json['id'],
94
87
  'username': json['username'],
95
88
  'password': json['password'],
96
89
  'firstName': !exists(json, 'firstName') ? undefined : json['firstName'],
@@ -110,7 +103,6 @@ export function GatewaysCredentialsToJSON(value?: GatewaysCredentials | null): a
110
103
  }
111
104
  return {
112
105
 
113
- 'id': value.id,
114
106
  'username': value.username,
115
107
  'password': value.password,
116
108
  'firstName': value.firstName,
@@ -32,12 +32,6 @@ import {
32
32
  * @interface GatewaysCredentialsWithSsn
33
33
  */
34
34
  export interface GatewaysCredentialsWithSsn {
35
- /**
36
- * Id
37
- * @type {number}
38
- * @memberof GatewaysCredentialsWithSsn
39
- */
40
- id?: number;
41
35
  /**
42
36
  * User name
43
37
  * @type {string}
@@ -109,7 +103,6 @@ export function GatewaysCredentialsWithSsnFromJSONTyped(json: any, ignoreDiscrim
109
103
  }
110
104
  return {
111
105
 
112
- 'id': !exists(json, 'id') ? undefined : json['id'],
113
106
  'username': json['username'],
114
107
  'password': json['password'],
115
108
  'firstName': !exists(json, 'firstName') ? undefined : json['firstName'],
@@ -130,7 +123,6 @@ export function GatewaysCredentialsWithSsnToJSON(value?: GatewaysCredentialsWith
130
123
  }
131
124
  return {
132
125
 
133
- 'id': value.id,
134
126
  'username': value.username,
135
127
  'password': value.password,
136
128
  'firstName': value.firstName,