@monarkmarkets/api-client 1.3.19 → 1.3.21

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
@@ -3013,7 +3013,7 @@ export declare class FundManager implements IFundManager {
3013
3013
  /** Link to representative logo for fund advisor */
3014
3014
  logoUrl: string | undefined;
3015
3015
  /** Year when fund advisor firm was first established */
3016
- foundingDate?: Date | undefined;
3016
+ foundingDate?: string | undefined;
3017
3017
  /** Total AUM of fund advisor */
3018
3018
  aum?: number | undefined;
3019
3019
  /** Brief description of focus, history, and experience of fund advisor */
@@ -3024,20 +3024,12 @@ export declare class FundManager implements IFundManager {
3024
3024
  state?: string | undefined;
3025
3025
  /** City where fund advisor was established */
3026
3026
  city?: string | undefined;
3027
- /** Registration or exemption */
3028
- registration?: FundManagerRegistration | undefined;
3029
- /** CRD number if fund advisor firm is registered */
3030
- crdNumber?: string | undefined;
3031
3027
  /** Link to fund advisor's website */
3032
3028
  website: string | undefined;
3033
3029
  /** Link to fund advisor's LinkedIn page */
3034
3030
  linkedIn?: string | undefined;
3035
3031
  /** Link to fund advisor's X page */
3036
3032
  x?: string | undefined;
3037
- /** Email address for general inbox of fund advisor */
3038
- email?: string | undefined;
3039
- /** Main office phone number of fund advisor */
3040
- phone?: string | undefined;
3041
3033
  constructor(data?: IFundManager);
3042
3034
  init(_data?: any): void;
3043
3035
  static fromJS(data: any): FundManager;
@@ -3054,7 +3046,7 @@ export interface IFundManager {
3054
3046
  /** Link to representative logo for fund advisor */
3055
3047
  logoUrl: string | undefined;
3056
3048
  /** Year when fund advisor firm was first established */
3057
- foundingDate?: Date | undefined;
3049
+ foundingDate?: string | undefined;
3058
3050
  /** Total AUM of fund advisor */
3059
3051
  aum?: number | undefined;
3060
3052
  /** Brief description of focus, history, and experience of fund advisor */
@@ -3065,20 +3057,12 @@ export interface IFundManager {
3065
3057
  state?: string | undefined;
3066
3058
  /** City where fund advisor was established */
3067
3059
  city?: string | undefined;
3068
- /** Registration or exemption */
3069
- registration?: FundManagerRegistration | undefined;
3070
- /** CRD number if fund advisor firm is registered */
3071
- crdNumber?: string | undefined;
3072
3060
  /** Link to fund advisor's website */
3073
3061
  website: string | undefined;
3074
3062
  /** Link to fund advisor's LinkedIn page */
3075
3063
  linkedIn?: string | undefined;
3076
3064
  /** Link to fund advisor's X page */
3077
3065
  x?: string | undefined;
3078
- /** Email address for general inbox of fund advisor */
3079
- email?: string | undefined;
3080
- /** Main office phone number of fund advisor */
3081
- phone?: string | undefined;
3082
3066
  }
3083
3067
  export declare class ICustomAttributeProvider implements IICustomAttributeProvider {
3084
3068
  constructor(data?: IICustomAttributeProvider);
@@ -3751,6 +3735,8 @@ export interface IInvestorPii {
3751
3735
  export declare class InvestorSubscription implements IInvestorSubscription {
3752
3736
  /** Unique ID associated with an InvestorSubscription. */
3753
3737
  id?: string;
3738
+ /** External transaction ID - Unique 20-character identifier. */
3739
+ externalId?: string | undefined;
3754
3740
  /** The SPV ID that this Subscription relates to. */
3755
3741
  preIPOCompanySPVId?: string;
3756
3742
  /** ID of the Investor associated with this InvestorSubscription. */
@@ -3783,6 +3769,8 @@ export declare class InvestorSubscription implements IInvestorSubscription {
3783
3769
  export interface IInvestorSubscription {
3784
3770
  /** Unique ID associated with an InvestorSubscription. */
3785
3771
  id?: string;
3772
+ /** External transaction ID - Unique 20-character identifier. */
3773
+ externalId?: string | undefined;
3786
3774
  /** The SPV ID that this Subscription relates to. */
3787
3775
  preIPOCompanySPVId?: string;
3788
3776
  /** ID of the Investor associated with this InvestorSubscription. */
@@ -6899,6 +6887,8 @@ export interface IStructLayoutAttribute {
6899
6887
  export declare class Transaction implements ITransaction {
6900
6888
  /** Unique ID associated with an Order. */
6901
6889
  id?: string;
6890
+ /** External transaction ID - Unique 20-character identifier. */
6891
+ externalId?: string | undefined;
6902
6892
  /** The type of asset being targeted with this Order. */
6903
6893
  targetAssetType?: TransactionTargetAssetType;
6904
6894
  /** The SPV ID that this Order relates to. */
@@ -6939,6 +6929,8 @@ export declare class Transaction implements ITransaction {
6939
6929
  export interface ITransaction {
6940
6930
  /** Unique ID associated with an Order. */
6941
6931
  id?: string;
6932
+ /** External transaction ID - Unique 20-character identifier. */
6933
+ externalId?: string | undefined;
6942
6934
  /** The type of asset being targeted with this Order. */
6943
6935
  targetAssetType?: TransactionTargetAssetType;
6944
6936
  /** The SPV ID that this Order relates to. */
@@ -8332,6 +8324,7 @@ export declare enum MonarkStage {
8332
8324
  FUNDS_SENT_TO_TARGET = "FUNDS_SENT_TO_TARGET",
8333
8325
  CLOSED = "CLOSED",
8334
8326
  REGULATORY_HOLD_PERIOD = "REGULATORY_HOLD_PERIOD",
8327
+ READY_FOR_TRADING = "READY_FOR_TRADING",
8335
8328
  ACTIVELY_TRADING = "ACTIVELY_TRADING",
8336
8329
  CLOSE_FAILED = "CLOSE_FAILED",
8337
8330
  HALTED = "HALTED",
@@ -8504,6 +8497,7 @@ export declare enum BulkPreIPOCompanySPVMonarkStage {
8504
8497
  FUNDS_SENT_TO_TARGET = "FUNDS_SENT_TO_TARGET",
8505
8498
  CLOSED = "CLOSED",
8506
8499
  REGULATORY_HOLD_PERIOD = "REGULATORY_HOLD_PERIOD",
8500
+ READY_FOR_TRADING = "READY_FOR_TRADING",
8507
8501
  ACTIVELY_TRADING = "ACTIVELY_TRADING",
8508
8502
  CLOSE_FAILED = "CLOSE_FAILED",
8509
8503
  HALTED = "HALTED",
@@ -8816,9 +8810,6 @@ export declare enum FinancialInstitutionKycRequired {
8816
8810
  Auto = "Auto",
8817
8811
  Bypass = "Bypass"
8818
8812
  }
8819
- export declare enum FundManagerRegistration {
8820
- RIA = "RIA"
8821
- }
8822
8813
  export declare enum IndicationOfInterestV2TargetAssetType {
8823
8814
  PreIPOCompanySPV = "PreIPOCompanySPV",
8824
8815
  RegisteredFund = "RegisteredFund",
@@ -9058,6 +9049,7 @@ export declare enum MonarkStageTransitionStage {
9058
9049
  FUNDS_SENT_TO_TARGET = "FUNDS_SENT_TO_TARGET",
9059
9050
  CLOSED = "CLOSED",
9060
9051
  REGULATORY_HOLD_PERIOD = "REGULATORY_HOLD_PERIOD",
9052
+ READY_FOR_TRADING = "READY_FOR_TRADING",
9061
9053
  ACTIVELY_TRADING = "ACTIVELY_TRADING",
9062
9054
  CLOSE_FAILED = "CLOSE_FAILED",
9063
9055
  HALTED = "HALTED",
@@ -9156,6 +9148,7 @@ export declare enum PreIPOCompanySPVMonarkStage {
9156
9148
  FUNDS_SENT_TO_TARGET = "FUNDS_SENT_TO_TARGET",
9157
9149
  CLOSED = "CLOSED",
9158
9150
  REGULATORY_HOLD_PERIOD = "REGULATORY_HOLD_PERIOD",
9151
+ READY_FOR_TRADING = "READY_FOR_TRADING",
9159
9152
  ACTIVELY_TRADING = "ACTIVELY_TRADING",
9160
9153
  CLOSE_FAILED = "CLOSE_FAILED",
9161
9154
  HALTED = "HALTED",
@@ -9452,8 +9445,7 @@ export declare enum TransactionStatus {
9452
9445
  Initiated = "Initiated",
9453
9446
  Pending = "Pending",
9454
9447
  Processing = "Processing",
9455
- CashReceived = "CashReceived",
9456
- CashDelivered = "CashDelivered",
9448
+ Settled = "Settled",
9457
9449
  Complete = "Complete",
9458
9450
  PendingCancellation = "PendingCancellation",
9459
9451
  Canceled = "Canceled",
package/dist/Client.js CHANGED
@@ -10460,19 +10460,15 @@ export class FundManager {
10460
10460
  this.name = _data["name"];
10461
10461
  this.legalName = _data["legalName"];
10462
10462
  this.logoUrl = _data["logoUrl"];
10463
- this.foundingDate = _data["foundingDate"] ? new Date(_data["foundingDate"].toString()) : undefined;
10463
+ this.foundingDate = _data["foundingDate"];
10464
10464
  this.aum = _data["aum"];
10465
10465
  this.description = _data["description"];
10466
10466
  this.countryCode = _data["countryCode"];
10467
10467
  this.state = _data["state"];
10468
10468
  this.city = _data["city"];
10469
- this.registration = _data["registration"];
10470
- this.crdNumber = _data["crdNumber"];
10471
10469
  this.website = _data["website"];
10472
10470
  this.linkedIn = _data["linkedIn"];
10473
10471
  this.x = _data["x"];
10474
- this.email = _data["email"];
10475
- this.phone = _data["phone"];
10476
10472
  }
10477
10473
  }
10478
10474
  static fromJS(data) {
@@ -10487,19 +10483,15 @@ export class FundManager {
10487
10483
  data["name"] = this.name;
10488
10484
  data["legalName"] = this.legalName;
10489
10485
  data["logoUrl"] = this.logoUrl;
10490
- data["foundingDate"] = this.foundingDate ? formatDate(this.foundingDate) : undefined;
10486
+ data["foundingDate"] = this.foundingDate;
10491
10487
  data["aum"] = this.aum;
10492
10488
  data["description"] = this.description;
10493
10489
  data["countryCode"] = this.countryCode;
10494
10490
  data["state"] = this.state;
10495
10491
  data["city"] = this.city;
10496
- data["registration"] = this.registration;
10497
- data["crdNumber"] = this.crdNumber;
10498
10492
  data["website"] = this.website;
10499
10493
  data["linkedIn"] = this.linkedIn;
10500
10494
  data["x"] = this.x;
10501
- data["email"] = this.email;
10502
- data["phone"] = this.phone;
10503
10495
  return data;
10504
10496
  }
10505
10497
  }
@@ -11106,6 +11098,7 @@ export class InvestorSubscription {
11106
11098
  init(_data) {
11107
11099
  if (_data) {
11108
11100
  this.id = _data["id"];
11101
+ this.externalId = _data["externalId"];
11109
11102
  this.preIPOCompanySPVId = _data["preIPOCompanySPVId"];
11110
11103
  this.investorId = _data["investorId"];
11111
11104
  this.amountReservedDollars = _data["amountReservedDollars"];
@@ -11129,6 +11122,7 @@ export class InvestorSubscription {
11129
11122
  toJSON(data) {
11130
11123
  data = typeof data === 'object' ? data : {};
11131
11124
  data["id"] = this.id;
11125
+ data["externalId"] = this.externalId;
11132
11126
  data["preIPOCompanySPVId"] = this.preIPOCompanySPVId;
11133
11127
  data["investorId"] = this.investorId;
11134
11128
  data["amountReservedDollars"] = this.amountReservedDollars;
@@ -14750,6 +14744,7 @@ export class Transaction {
14750
14744
  init(_data) {
14751
14745
  if (_data) {
14752
14746
  this.id = _data["id"];
14747
+ this.externalId = _data["externalId"];
14753
14748
  this.targetAssetType = _data["targetAssetType"];
14754
14749
  this.targetId = _data["targetId"];
14755
14750
  this.investorId = _data["investorId"];
@@ -14781,6 +14776,7 @@ export class Transaction {
14781
14776
  toJSON(data) {
14782
14777
  data = typeof data === 'object' ? data : {};
14783
14778
  data["id"] = this.id;
14779
+ data["externalId"] = this.externalId;
14784
14780
  data["targetAssetType"] = this.targetAssetType;
14785
14781
  data["targetId"] = this.targetId;
14786
14782
  data["investorId"] = this.investorId;
@@ -16390,6 +16386,7 @@ export var MonarkStage;
16390
16386
  MonarkStage["FUNDS_SENT_TO_TARGET"] = "FUNDS_SENT_TO_TARGET";
16391
16387
  MonarkStage["CLOSED"] = "CLOSED";
16392
16388
  MonarkStage["REGULATORY_HOLD_PERIOD"] = "REGULATORY_HOLD_PERIOD";
16389
+ MonarkStage["READY_FOR_TRADING"] = "READY_FOR_TRADING";
16393
16390
  MonarkStage["ACTIVELY_TRADING"] = "ACTIVELY_TRADING";
16394
16391
  MonarkStage["CLOSE_FAILED"] = "CLOSE_FAILED";
16395
16392
  MonarkStage["HALTED"] = "HALTED";
@@ -16584,6 +16581,7 @@ export var BulkPreIPOCompanySPVMonarkStage;
16584
16581
  BulkPreIPOCompanySPVMonarkStage["FUNDS_SENT_TO_TARGET"] = "FUNDS_SENT_TO_TARGET";
16585
16582
  BulkPreIPOCompanySPVMonarkStage["CLOSED"] = "CLOSED";
16586
16583
  BulkPreIPOCompanySPVMonarkStage["REGULATORY_HOLD_PERIOD"] = "REGULATORY_HOLD_PERIOD";
16584
+ BulkPreIPOCompanySPVMonarkStage["READY_FOR_TRADING"] = "READY_FOR_TRADING";
16587
16585
  BulkPreIPOCompanySPVMonarkStage["ACTIVELY_TRADING"] = "ACTIVELY_TRADING";
16588
16586
  BulkPreIPOCompanySPVMonarkStage["CLOSE_FAILED"] = "CLOSE_FAILED";
16589
16587
  BulkPreIPOCompanySPVMonarkStage["HALTED"] = "HALTED";
@@ -16918,10 +16916,6 @@ export var FinancialInstitutionKycRequired;
16918
16916
  FinancialInstitutionKycRequired["Auto"] = "Auto";
16919
16917
  FinancialInstitutionKycRequired["Bypass"] = "Bypass";
16920
16918
  })(FinancialInstitutionKycRequired || (FinancialInstitutionKycRequired = {}));
16921
- export var FundManagerRegistration;
16922
- (function (FundManagerRegistration) {
16923
- FundManagerRegistration["RIA"] = "RIA";
16924
- })(FundManagerRegistration || (FundManagerRegistration = {}));
16925
16919
  export var IndicationOfInterestV2TargetAssetType;
16926
16920
  (function (IndicationOfInterestV2TargetAssetType) {
16927
16921
  IndicationOfInterestV2TargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
@@ -17187,6 +17181,7 @@ export var MonarkStageTransitionStage;
17187
17181
  MonarkStageTransitionStage["FUNDS_SENT_TO_TARGET"] = "FUNDS_SENT_TO_TARGET";
17188
17182
  MonarkStageTransitionStage["CLOSED"] = "CLOSED";
17189
17183
  MonarkStageTransitionStage["REGULATORY_HOLD_PERIOD"] = "REGULATORY_HOLD_PERIOD";
17184
+ MonarkStageTransitionStage["READY_FOR_TRADING"] = "READY_FOR_TRADING";
17190
17185
  MonarkStageTransitionStage["ACTIVELY_TRADING"] = "ACTIVELY_TRADING";
17191
17186
  MonarkStageTransitionStage["CLOSE_FAILED"] = "CLOSE_FAILED";
17192
17187
  MonarkStageTransitionStage["HALTED"] = "HALTED";
@@ -17294,6 +17289,7 @@ export var PreIPOCompanySPVMonarkStage;
17294
17289
  PreIPOCompanySPVMonarkStage["FUNDS_SENT_TO_TARGET"] = "FUNDS_SENT_TO_TARGET";
17295
17290
  PreIPOCompanySPVMonarkStage["CLOSED"] = "CLOSED";
17296
17291
  PreIPOCompanySPVMonarkStage["REGULATORY_HOLD_PERIOD"] = "REGULATORY_HOLD_PERIOD";
17292
+ PreIPOCompanySPVMonarkStage["READY_FOR_TRADING"] = "READY_FOR_TRADING";
17297
17293
  PreIPOCompanySPVMonarkStage["ACTIVELY_TRADING"] = "ACTIVELY_TRADING";
17298
17294
  PreIPOCompanySPVMonarkStage["CLOSE_FAILED"] = "CLOSE_FAILED";
17299
17295
  PreIPOCompanySPVMonarkStage["HALTED"] = "HALTED";
@@ -17615,8 +17611,7 @@ export var TransactionStatus;
17615
17611
  TransactionStatus["Initiated"] = "Initiated";
17616
17612
  TransactionStatus["Pending"] = "Pending";
17617
17613
  TransactionStatus["Processing"] = "Processing";
17618
- TransactionStatus["CashReceived"] = "CashReceived";
17619
- TransactionStatus["CashDelivered"] = "CashDelivered";
17614
+ TransactionStatus["Settled"] = "Settled";
17620
17615
  TransactionStatus["Complete"] = "Complete";
17621
17616
  TransactionStatus["PendingCancellation"] = "PendingCancellation";
17622
17617
  TransactionStatus["Canceled"] = "Canceled";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monarkmarkets/api-client",
3
- "version": "1.3.19",
3
+ "version": "1.3.21",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",