@monarkmarkets/api-client 1.3.19 → 1.3.20
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 +3 -23
- package/dist/Client.js +3 -16
- package/package.json +1 -1
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?:
|
|
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?:
|
|
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);
|
|
@@ -8816,9 +8800,6 @@ export declare enum FinancialInstitutionKycRequired {
|
|
|
8816
8800
|
Auto = "Auto",
|
|
8817
8801
|
Bypass = "Bypass"
|
|
8818
8802
|
}
|
|
8819
|
-
export declare enum FundManagerRegistration {
|
|
8820
|
-
RIA = "RIA"
|
|
8821
|
-
}
|
|
8822
8803
|
export declare enum IndicationOfInterestV2TargetAssetType {
|
|
8823
8804
|
PreIPOCompanySPV = "PreIPOCompanySPV",
|
|
8824
8805
|
RegisteredFund = "RegisteredFund",
|
|
@@ -9452,8 +9433,7 @@ export declare enum TransactionStatus {
|
|
|
9452
9433
|
Initiated = "Initiated",
|
|
9453
9434
|
Pending = "Pending",
|
|
9454
9435
|
Processing = "Processing",
|
|
9455
|
-
|
|
9456
|
-
CashDelivered = "CashDelivered",
|
|
9436
|
+
Settled = "Settled",
|
|
9457
9437
|
Complete = "Complete",
|
|
9458
9438
|
PendingCancellation = "PendingCancellation",
|
|
9459
9439
|
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"]
|
|
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
|
|
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
|
}
|
|
@@ -16918,10 +16910,6 @@ export var FinancialInstitutionKycRequired;
|
|
|
16918
16910
|
FinancialInstitutionKycRequired["Auto"] = "Auto";
|
|
16919
16911
|
FinancialInstitutionKycRequired["Bypass"] = "Bypass";
|
|
16920
16912
|
})(FinancialInstitutionKycRequired || (FinancialInstitutionKycRequired = {}));
|
|
16921
|
-
export var FundManagerRegistration;
|
|
16922
|
-
(function (FundManagerRegistration) {
|
|
16923
|
-
FundManagerRegistration["RIA"] = "RIA";
|
|
16924
|
-
})(FundManagerRegistration || (FundManagerRegistration = {}));
|
|
16925
16913
|
export var IndicationOfInterestV2TargetAssetType;
|
|
16926
16914
|
(function (IndicationOfInterestV2TargetAssetType) {
|
|
16927
16915
|
IndicationOfInterestV2TargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
@@ -17615,8 +17603,7 @@ export var TransactionStatus;
|
|
|
17615
17603
|
TransactionStatus["Initiated"] = "Initiated";
|
|
17616
17604
|
TransactionStatus["Pending"] = "Pending";
|
|
17617
17605
|
TransactionStatus["Processing"] = "Processing";
|
|
17618
|
-
TransactionStatus["
|
|
17619
|
-
TransactionStatus["CashDelivered"] = "CashDelivered";
|
|
17606
|
+
TransactionStatus["Settled"] = "Settled";
|
|
17620
17607
|
TransactionStatus["Complete"] = "Complete";
|
|
17621
17608
|
TransactionStatus["PendingCancellation"] = "PendingCancellation";
|
|
17622
17609
|
TransactionStatus["Canceled"] = "Canceled";
|