@monarkmarkets/api-client 1.3.28 → 1.3.29
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.
- package/dist/Client.d.ts +12 -0
- package/dist/Client.js +7 -1
- package/package.json +1 -1
package/dist/Client.d.ts
CHANGED
|
@@ -5185,6 +5185,12 @@ See https://github.com/country-regions/country-region-data/blob/master/data.json
|
|
|
5185
5185
|
countryCode?: string | undefined;
|
|
5186
5186
|
/** Website of the Partner. */
|
|
5187
5187
|
website?: string | undefined;
|
|
5188
|
+
/** The primary contact first name of the Partner. */
|
|
5189
|
+
primaryContactFirstName?: string | undefined;
|
|
5190
|
+
/** The primary contact last name of the Partner. */
|
|
5191
|
+
primaryContactLastName?: string | undefined;
|
|
5192
|
+
/** The primary email address of the Partner. */
|
|
5193
|
+
primaryEmail?: string | undefined;
|
|
5188
5194
|
/** Executive Team of the partner. */
|
|
5189
5195
|
executiveTeam?: string[] | undefined;
|
|
5190
5196
|
/** DBA name for the Partner. */
|
|
@@ -5240,6 +5246,12 @@ See https://github.com/country-regions/country-region-data/blob/master/data.json
|
|
|
5240
5246
|
countryCode?: string | undefined;
|
|
5241
5247
|
/** Website of the Partner. */
|
|
5242
5248
|
website?: string | undefined;
|
|
5249
|
+
/** The primary contact first name of the Partner. */
|
|
5250
|
+
primaryContactFirstName?: string | undefined;
|
|
5251
|
+
/** The primary contact last name of the Partner. */
|
|
5252
|
+
primaryContactLastName?: string | undefined;
|
|
5253
|
+
/** The primary email address of the Partner. */
|
|
5254
|
+
primaryEmail?: string | undefined;
|
|
5243
5255
|
/** Executive Team of the partner. */
|
|
5244
5256
|
executiveTeam?: string[] | undefined;
|
|
5245
5257
|
/** DBA name for the Partner. */
|
package/dist/Client.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//----------------------
|
|
2
2
|
// <auto-generated>
|
|
3
|
-
// Generated using the NSwag toolchain v14.6.
|
|
3
|
+
// Generated using the NSwag toolchain v14.6.3.0 (NJsonSchema v11.5.2.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org)
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
//----------------------
|
|
6
6
|
/* eslint-disable */
|
|
@@ -13279,6 +13279,9 @@ export class Partner {
|
|
|
13279
13279
|
this.zipCode = _data["zipCode"];
|
|
13280
13280
|
this.countryCode = _data["countryCode"];
|
|
13281
13281
|
this.website = _data["website"];
|
|
13282
|
+
this.primaryContactFirstName = _data["primaryContactFirstName"];
|
|
13283
|
+
this.primaryContactLastName = _data["primaryContactLastName"];
|
|
13284
|
+
this.primaryEmail = _data["primaryEmail"];
|
|
13282
13285
|
if (Array.isArray(_data["executiveTeam"])) {
|
|
13283
13286
|
this.executiveTeam = [];
|
|
13284
13287
|
for (let item of _data["executiveTeam"])
|
|
@@ -13320,6 +13323,9 @@ export class Partner {
|
|
|
13320
13323
|
data["zipCode"] = this.zipCode;
|
|
13321
13324
|
data["countryCode"] = this.countryCode;
|
|
13322
13325
|
data["website"] = this.website;
|
|
13326
|
+
data["primaryContactFirstName"] = this.primaryContactFirstName;
|
|
13327
|
+
data["primaryContactLastName"] = this.primaryContactLastName;
|
|
13328
|
+
data["primaryEmail"] = this.primaryEmail;
|
|
13323
13329
|
if (Array.isArray(this.executiveTeam)) {
|
|
13324
13330
|
data["executiveTeam"] = [];
|
|
13325
13331
|
for (let item of this.executiveTeam)
|