@equisoft/equisoft-connect-sdk-typescript 11.0.8-snapshot.20221222135309 → 11.1.0

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,18 @@ export interface GatewaysCredentials {
27
27
  * @memberof GatewaysCredentials
28
28
  */
29
29
  password: string | null;
30
+ /**
31
+ * FirstName
32
+ * @type {string}
33
+ * @memberof GatewaysCredentials
34
+ */
35
+ firstName?: string | null;
36
+ /**
37
+ * LastName
38
+ * @type {string}
39
+ * @memberof GatewaysCredentials
40
+ */
41
+ lastName?: string | null;
30
42
  /**
31
43
  * Rep code
32
44
  * @type {string}
@@ -36,6 +36,8 @@ function GatewaysCredentialsFromJSONTyped(json, ignoreDiscriminator) {
36
36
  return {
37
37
  'username': json['username'],
38
38
  'password': json['password'],
39
+ 'firstName': !runtime_1.exists(json, 'firstName') ? undefined : json['firstName'],
40
+ 'lastName': !runtime_1.exists(json, 'lastName') ? undefined : json['lastName'],
39
41
  'repcode': !runtime_1.exists(json, 'repcode') ? undefined : json['repcode'],
40
42
  'isADealerCode': !runtime_1.exists(json, 'isADealerCode') ? undefined : json['isADealerCode'],
41
43
  'dealerSystemName': !runtime_1.exists(json, 'dealerSystemName') ? undefined : json['dealerSystemName'],
@@ -52,6 +54,8 @@ function GatewaysCredentialsToJSON(value) {
52
54
  return {
53
55
  'username': value.username,
54
56
  'password': value.password,
57
+ 'firstName': value.firstName,
58
+ 'lastName': value.lastName,
55
59
  'repcode': value.repcode,
56
60
  'isADealerCode': value.isADealerCode,
57
61
  'dealerSystemName': value.dealerSystemName,
@@ -27,6 +27,18 @@ export interface GatewaysCredentialsWithSsn {
27
27
  * @memberof GatewaysCredentialsWithSsn
28
28
  */
29
29
  password: string | null;
30
+ /**
31
+ * FirstName
32
+ * @type {string}
33
+ * @memberof GatewaysCredentialsWithSsn
34
+ */
35
+ firstName?: string | null;
36
+ /**
37
+ * LastName
38
+ * @type {string}
39
+ * @memberof GatewaysCredentialsWithSsn
40
+ */
41
+ lastName?: string | null;
30
42
  /**
31
43
  * Rep code
32
44
  * @type {string}
@@ -36,6 +36,8 @@ function GatewaysCredentialsWithSsnFromJSONTyped(json, ignoreDiscriminator) {
36
36
  return {
37
37
  'username': json['username'],
38
38
  'password': json['password'],
39
+ 'firstName': !runtime_1.exists(json, 'firstName') ? undefined : json['firstName'],
40
+ 'lastName': !runtime_1.exists(json, 'lastName') ? undefined : json['lastName'],
39
41
  'repcode': !runtime_1.exists(json, 'repcode') ? undefined : json['repcode'],
40
42
  'isADealerCode': !runtime_1.exists(json, 'isADealerCode') ? undefined : json['isADealerCode'],
41
43
  'dealerSystemName': !runtime_1.exists(json, 'dealerSystemName') ? undefined : json['dealerSystemName'],
@@ -53,6 +55,8 @@ function GatewaysCredentialsWithSsnToJSON(value) {
53
55
  return {
54
56
  'username': value.username,
55
57
  'password': value.password,
58
+ 'firstName': value.firstName,
59
+ 'lastName': value.lastName,
56
60
  'repcode': value.repcode,
57
61
  'isADealerCode': value.isADealerCode,
58
62
  'dealerSystemName': value.dealerSystemName,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equisoft/equisoft-connect-sdk-typescript",
3
- "version": "11.0.8-snapshot.20221222135309",
3
+ "version": "11.1.0",
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,18 @@ export interface GatewaysCredentials {
31
31
  * @memberof GatewaysCredentials
32
32
  */
33
33
  password: string | null;
34
+ /**
35
+ * FirstName
36
+ * @type {string}
37
+ * @memberof GatewaysCredentials
38
+ */
39
+ firstName?: string | null;
40
+ /**
41
+ * LastName
42
+ * @type {string}
43
+ * @memberof GatewaysCredentials
44
+ */
45
+ lastName?: string | null;
34
46
  /**
35
47
  * Rep code
36
48
  * @type {string}
@@ -74,6 +86,8 @@ export function GatewaysCredentialsFromJSONTyped(json: any, ignoreDiscriminator:
74
86
 
75
87
  'username': json['username'],
76
88
  'password': json['password'],
89
+ 'firstName': !exists(json, 'firstName') ? undefined : json['firstName'],
90
+ 'lastName': !exists(json, 'lastName') ? undefined : json['lastName'],
77
91
  'repcode': !exists(json, 'repcode') ? undefined : json['repcode'],
78
92
  'isADealerCode': !exists(json, 'isADealerCode') ? undefined : json['isADealerCode'],
79
93
  'dealerSystemName': !exists(json, 'dealerSystemName') ? undefined : json['dealerSystemName'],
@@ -91,6 +105,8 @@ export function GatewaysCredentialsToJSON(value?: GatewaysCredentials | null): a
91
105
 
92
106
  'username': value.username,
93
107
  'password': value.password,
108
+ 'firstName': value.firstName,
109
+ 'lastName': value.lastName,
94
110
  'repcode': value.repcode,
95
111
  'isADealerCode': value.isADealerCode,
96
112
  'dealerSystemName': value.dealerSystemName,
@@ -44,6 +44,18 @@ export interface GatewaysCredentialsWithSsn {
44
44
  * @memberof GatewaysCredentialsWithSsn
45
45
  */
46
46
  password: string | null;
47
+ /**
48
+ * FirstName
49
+ * @type {string}
50
+ * @memberof GatewaysCredentialsWithSsn
51
+ */
52
+ firstName?: string | null;
53
+ /**
54
+ * LastName
55
+ * @type {string}
56
+ * @memberof GatewaysCredentialsWithSsn
57
+ */
58
+ lastName?: string | null;
47
59
  /**
48
60
  * Rep code
49
61
  * @type {string}
@@ -93,6 +105,8 @@ export function GatewaysCredentialsWithSsnFromJSONTyped(json: any, ignoreDiscrim
93
105
 
94
106
  'username': json['username'],
95
107
  'password': json['password'],
108
+ 'firstName': !exists(json, 'firstName') ? undefined : json['firstName'],
109
+ 'lastName': !exists(json, 'lastName') ? undefined : json['lastName'],
96
110
  'repcode': !exists(json, 'repcode') ? undefined : json['repcode'],
97
111
  'isADealerCode': !exists(json, 'isADealerCode') ? undefined : json['isADealerCode'],
98
112
  'dealerSystemName': !exists(json, 'dealerSystemName') ? undefined : json['dealerSystemName'],
@@ -111,6 +125,8 @@ export function GatewaysCredentialsWithSsnToJSON(value?: GatewaysCredentialsWith
111
125
 
112
126
  'username': value.username,
113
127
  'password': value.password,
128
+ 'firstName': value.firstName,
129
+ 'lastName': value.lastName,
114
130
  'repcode': value.repcode,
115
131
  'isADealerCode': value.isADealerCode,
116
132
  'dealerSystemName': value.dealerSystemName,