@equisoft/equisoft-connect-sdk-typescript 11.3.2-snapshot.20230209223944 → 11.3.2

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