@monarkmarkets/api-client 1.3.54 → 1.3.55

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 CHANGED
@@ -3175,10 +3175,28 @@ export declare class FinancialAdvisor implements IFinancialAdvisor {
3175
3175
  middleName?: string | undefined;
3176
3176
  /** Financial advisor last name. */
3177
3177
  lastName: string | undefined;
3178
+ /** Financial advisor mailing address. */
3179
+ mailingAddress: string | undefined;
3180
+ /** Financial advisor mailing city. */
3181
+ mailingCity: string | undefined;
3182
+ /** Financial advisor mailing state. */
3183
+ mailingState: string | undefined;
3184
+ /** Financial advisor mailing zip code. */
3185
+ mailingZipCode: string | undefined;
3178
3186
  /** Financial advisor mailing country code. */
3179
3187
  mailingCountryCode: string | undefined;
3180
3188
  /** Financial Advisor branch number. */
3181
3189
  branchNumber?: string | undefined;
3190
+ /** Financial advisor phone country code. */
3191
+ phoneCountryCode: string | undefined;
3192
+ /** Financial advisor phone number. */
3193
+ phoneNumber: string | undefined;
3194
+ /** Financial advisor phone number extension. */
3195
+ phoneExtension?: string | undefined;
3196
+ /** Financial advisor email address. */
3197
+ emailAddress?: string | undefined;
3198
+ /** Financial advisor fax number. */
3199
+ fax?: string | undefined;
3182
3200
  /** Prefix for the Financial Advisor. */
3183
3201
  prefix: string | undefined;
3184
3202
  /** Financial advisor broker. */
@@ -3204,10 +3222,28 @@ export interface IFinancialAdvisor {
3204
3222
  middleName?: string | undefined;
3205
3223
  /** Financial advisor last name. */
3206
3224
  lastName: string | undefined;
3225
+ /** Financial advisor mailing address. */
3226
+ mailingAddress: string | undefined;
3227
+ /** Financial advisor mailing city. */
3228
+ mailingCity: string | undefined;
3229
+ /** Financial advisor mailing state. */
3230
+ mailingState: string | undefined;
3231
+ /** Financial advisor mailing zip code. */
3232
+ mailingZipCode: string | undefined;
3207
3233
  /** Financial advisor mailing country code. */
3208
3234
  mailingCountryCode: string | undefined;
3209
3235
  /** Financial Advisor branch number. */
3210
3236
  branchNumber?: string | undefined;
3237
+ /** Financial advisor phone country code. */
3238
+ phoneCountryCode: string | undefined;
3239
+ /** Financial advisor phone number. */
3240
+ phoneNumber: string | undefined;
3241
+ /** Financial advisor phone number extension. */
3242
+ phoneExtension?: string | undefined;
3243
+ /** Financial advisor email address. */
3244
+ emailAddress?: string | undefined;
3245
+ /** Financial advisor fax number. */
3246
+ fax?: string | undefined;
3211
3247
  /** Prefix for the Financial Advisor. */
3212
3248
  prefix: string | undefined;
3213
3249
  /** Financial advisor broker. */
@@ -9183,7 +9219,10 @@ export declare enum EventType {
9183
9219
  RegisteredFundTransactionStatus = "RegisteredFundTransactionStatus",
9184
9220
  PreIPOCompanySPVUpdate = "PreIPOCompanySPVUpdate",
9185
9221
  PreIPOCompanySPVDocumentUpdate = "PreIPOCompanySPVDocumentUpdate",
9186
- PreIPOCompanySPVSubscriptionActionDefinitionUpdate = "PreIPOCompanySPVSubscriptionActionDefinitionUpdate"
9222
+ PreIPOCompanySPVSubscriptionActionDefinitionUpdate = "PreIPOCompanySPVSubscriptionActionDefinitionUpdate",
9223
+ ProspectiveOfferingAccessGained = "ProspectiveOfferingAccessGained",
9224
+ ProspectiveOfferingAccessLost = "ProspectiveOfferingAccessLost",
9225
+ IndicationOfInterestClosed = "IndicationOfInterestClosed"
9187
9226
  }
9188
9227
  export declare enum DeliveryStatus {
9189
9228
  Pending = "Pending",
@@ -10410,7 +10449,10 @@ export declare enum WebhookEventEventType {
10410
10449
  RegisteredFundTransactionStatus = "RegisteredFundTransactionStatus",
10411
10450
  PreIPOCompanySPVUpdate = "PreIPOCompanySPVUpdate",
10412
10451
  PreIPOCompanySPVDocumentUpdate = "PreIPOCompanySPVDocumentUpdate",
10413
- PreIPOCompanySPVSubscriptionActionDefinitionUpdate = "PreIPOCompanySPVSubscriptionActionDefinitionUpdate"
10452
+ PreIPOCompanySPVSubscriptionActionDefinitionUpdate = "PreIPOCompanySPVSubscriptionActionDefinitionUpdate",
10453
+ ProspectiveOfferingAccessGained = "ProspectiveOfferingAccessGained",
10454
+ ProspectiveOfferingAccessLost = "ProspectiveOfferingAccessLost",
10455
+ IndicationOfInterestClosed = "IndicationOfInterestClosed"
10414
10456
  }
10415
10457
  export interface FileResponse {
10416
10458
  data: Blob;
package/dist/Client.js CHANGED
@@ -11807,8 +11807,17 @@ export class FinancialAdvisor {
11807
11807
  this.firstName = _data["firstName"];
11808
11808
  this.middleName = _data["middleName"];
11809
11809
  this.lastName = _data["lastName"];
11810
+ this.mailingAddress = _data["mailingAddress"];
11811
+ this.mailingCity = _data["mailingCity"];
11812
+ this.mailingState = _data["mailingState"];
11813
+ this.mailingZipCode = _data["mailingZipCode"];
11810
11814
  this.mailingCountryCode = _data["mailingCountryCode"];
11811
11815
  this.branchNumber = _data["branchNumber"];
11816
+ this.phoneCountryCode = _data["phoneCountryCode"];
11817
+ this.phoneNumber = _data["phoneNumber"];
11818
+ this.phoneExtension = _data["phoneExtension"];
11819
+ this.emailAddress = _data["emailAddress"];
11820
+ this.fax = _data["fax"];
11812
11821
  this.prefix = _data["prefix"];
11813
11822
  this.broker = _data["broker"];
11814
11823
  }
@@ -11828,8 +11837,17 @@ export class FinancialAdvisor {
11828
11837
  data["firstName"] = this.firstName;
11829
11838
  data["middleName"] = this.middleName;
11830
11839
  data["lastName"] = this.lastName;
11840
+ data["mailingAddress"] = this.mailingAddress;
11841
+ data["mailingCity"] = this.mailingCity;
11842
+ data["mailingState"] = this.mailingState;
11843
+ data["mailingZipCode"] = this.mailingZipCode;
11831
11844
  data["mailingCountryCode"] = this.mailingCountryCode;
11832
11845
  data["branchNumber"] = this.branchNumber;
11846
+ data["phoneCountryCode"] = this.phoneCountryCode;
11847
+ data["phoneNumber"] = this.phoneNumber;
11848
+ data["phoneExtension"] = this.phoneExtension;
11849
+ data["emailAddress"] = this.emailAddress;
11850
+ data["fax"] = this.fax;
11833
11851
  data["prefix"] = this.prefix;
11834
11852
  data["broker"] = this.broker;
11835
11853
  return data;
@@ -18637,6 +18655,9 @@ export var EventType;
18637
18655
  EventType["PreIPOCompanySPVUpdate"] = "PreIPOCompanySPVUpdate";
18638
18656
  EventType["PreIPOCompanySPVDocumentUpdate"] = "PreIPOCompanySPVDocumentUpdate";
18639
18657
  EventType["PreIPOCompanySPVSubscriptionActionDefinitionUpdate"] = "PreIPOCompanySPVSubscriptionActionDefinitionUpdate";
18658
+ EventType["ProspectiveOfferingAccessGained"] = "ProspectiveOfferingAccessGained";
18659
+ EventType["ProspectiveOfferingAccessLost"] = "ProspectiveOfferingAccessLost";
18660
+ EventType["IndicationOfInterestClosed"] = "IndicationOfInterestClosed";
18640
18661
  })(EventType || (EventType = {}));
18641
18662
  export var DeliveryStatus;
18642
18663
  (function (DeliveryStatus) {
@@ -19979,6 +20000,9 @@ export var WebhookEventEventType;
19979
20000
  WebhookEventEventType["PreIPOCompanySPVUpdate"] = "PreIPOCompanySPVUpdate";
19980
20001
  WebhookEventEventType["PreIPOCompanySPVDocumentUpdate"] = "PreIPOCompanySPVDocumentUpdate";
19981
20002
  WebhookEventEventType["PreIPOCompanySPVSubscriptionActionDefinitionUpdate"] = "PreIPOCompanySPVSubscriptionActionDefinitionUpdate";
20003
+ WebhookEventEventType["ProspectiveOfferingAccessGained"] = "ProspectiveOfferingAccessGained";
20004
+ WebhookEventEventType["ProspectiveOfferingAccessLost"] = "ProspectiveOfferingAccessLost";
20005
+ WebhookEventEventType["IndicationOfInterestClosed"] = "IndicationOfInterestClosed";
19982
20006
  })(WebhookEventEventType || (WebhookEventEventType = {}));
19983
20007
  function formatDate(d) {
19984
20008
  return d.getFullYear() + '-' +
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monarkmarkets/api-client",
3
- "version": "1.3.54",
3
+ "version": "1.3.55",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",