@monarkmarkets/api-client 1.3.11 → 1.3.13
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 +76 -41
- package/dist/Client.js +86 -34
- package/package.json +1 -1
package/dist/Client.d.ts
CHANGED
|
@@ -952,9 +952,10 @@ export declare class Client {
|
|
|
952
952
|
* Get the RegisteredFund by the specified Id.
|
|
953
953
|
* @param id ID of the RegisteredFund to find.
|
|
954
954
|
* @param includeDocuments (optional) Return associated documents
|
|
955
|
+
* @param financialInstitutionId (optional) Optional financial institution ID for access control.
|
|
955
956
|
* @return Returns the RegisteredFund with the specified Id.
|
|
956
957
|
*/
|
|
957
|
-
getRegisteredFundById(id: string, includeDocuments: boolean | undefined): Promise<RegisteredFund>;
|
|
958
|
+
getRegisteredFundById(id: string, includeDocuments: boolean | undefined, financialInstitutionId: string | undefined): Promise<RegisteredFund>;
|
|
958
959
|
protected processGetRegisteredFundById(response: Response): Promise<RegisteredFund>;
|
|
959
960
|
/**
|
|
960
961
|
* Get all RegisteredFunds
|
|
@@ -964,9 +965,11 @@ export declare class Client {
|
|
|
964
965
|
Defaults to 25 if not specified.
|
|
965
966
|
* @param searchTerm (optional) Search term to filter results on based on 'Name' field
|
|
966
967
|
* @param sortOrder (optional) Which way to sort order, defaults to Descending.
|
|
968
|
+
* @param financialInstitutionId (optional) Optional financial institution ID for access control.
|
|
969
|
+
* @param assetClass (optional) Optional asset class to filter registered funds by asset class.
|
|
967
970
|
* @return OK
|
|
968
971
|
*/
|
|
969
|
-
getAllRegisteredFunds(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder17 | undefined): Promise<RegisteredFundApiResponse>;
|
|
972
|
+
getAllRegisteredFunds(page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder17 | undefined, financialInstitutionId: string | undefined, assetClass: string | undefined): Promise<RegisteredFundApiResponse>;
|
|
970
973
|
protected processGetAllRegisteredFunds(response: Response): Promise<RegisteredFundApiResponse>;
|
|
971
974
|
/**
|
|
972
975
|
* Gets a SecondaryLink Evergreen Fund by ID.
|
|
@@ -1071,7 +1074,7 @@ export declare class Client {
|
|
|
1071
1074
|
protected processCreateTransaction(response: Response): Promise<Transaction>;
|
|
1072
1075
|
/**
|
|
1073
1076
|
* Get all orders for a specific asset type with optional filtering.
|
|
1074
|
-
* @param targetAssetType
|
|
1077
|
+
* @param targetAssetType Required: The asset type (PreIPOCompanySPV or RegisteredFund).
|
|
1075
1078
|
* @param page (optional) Number of the page to retrieve.
|
|
1076
1079
|
Defaults to 1 if not specified.
|
|
1077
1080
|
* @param pageSize (optional) Size of the page to retrieve.
|
|
@@ -1082,7 +1085,7 @@ export declare class Client {
|
|
|
1082
1085
|
* @param referenceId (optional) Optional: Filter by order reference ID.
|
|
1083
1086
|
* @return OK
|
|
1084
1087
|
*/
|
|
1085
|
-
getTransactions(targetAssetType: TargetAssetType
|
|
1088
|
+
getTransactions(targetAssetType: TargetAssetType, page: number | undefined, pageSize: number | undefined, targetId: string | undefined, investorId: string | undefined, status: string | undefined, referenceId: string | undefined): Promise<TransactionApiResponse>;
|
|
1086
1089
|
protected processGetTransactions(response: Response): Promise<TransactionApiResponse>;
|
|
1087
1090
|
/**
|
|
1088
1091
|
* Update an existing order.
|
|
@@ -2402,6 +2405,8 @@ export declare class EvergreenFund implements IEvergreenFund {
|
|
|
2402
2405
|
id: string;
|
|
2403
2406
|
/** Official name of the Evergreen Fund */
|
|
2404
2407
|
fundName: string | undefined;
|
|
2408
|
+
/** Central Index Key assigned by the SEC. */
|
|
2409
|
+
cik?: number | undefined;
|
|
2405
2410
|
/** Manager of the Evergreen Fund */
|
|
2406
2411
|
manager?: string | undefined;
|
|
2407
2412
|
/** Year of inception for the Evergreen Fund */
|
|
@@ -2420,6 +2425,10 @@ export declare class EvergreenFund implements IEvergreenFund {
|
|
|
2420
2425
|
repurchaseFrequency?: string | undefined;
|
|
2421
2426
|
/** Frequency at which subscriptions occur */
|
|
2422
2427
|
subscriptionFrequency?: string | undefined;
|
|
2428
|
+
/** The Evergreen Return associated with this fund. */
|
|
2429
|
+
evergreenReturns?: EvergreenReturns | undefined;
|
|
2430
|
+
/** Collection of Evergreen Share Classes associated with this fund. */
|
|
2431
|
+
evergreenShareClasses?: EvergreenShareClasses[] | undefined;
|
|
2423
2432
|
constructor(data?: IEvergreenFund);
|
|
2424
2433
|
init(_data?: any): void;
|
|
2425
2434
|
static fromJS(data: any): EvergreenFund;
|
|
@@ -2431,6 +2440,8 @@ export interface IEvergreenFund {
|
|
|
2431
2440
|
id: string;
|
|
2432
2441
|
/** Official name of the Evergreen Fund */
|
|
2433
2442
|
fundName: string | undefined;
|
|
2443
|
+
/** Central Index Key assigned by the SEC. */
|
|
2444
|
+
cik?: number | undefined;
|
|
2434
2445
|
/** Manager of the Evergreen Fund */
|
|
2435
2446
|
manager?: string | undefined;
|
|
2436
2447
|
/** Year of inception for the Evergreen Fund */
|
|
@@ -2449,6 +2460,10 @@ export interface IEvergreenFund {
|
|
|
2449
2460
|
repurchaseFrequency?: string | undefined;
|
|
2450
2461
|
/** Frequency at which subscriptions occur */
|
|
2451
2462
|
subscriptionFrequency?: string | undefined;
|
|
2463
|
+
/** The Evergreen Return associated with this fund. */
|
|
2464
|
+
evergreenReturns?: EvergreenReturns | undefined;
|
|
2465
|
+
/** Collection of Evergreen Share Classes associated with this fund. */
|
|
2466
|
+
evergreenShareClasses?: EvergreenShareClasses[] | undefined;
|
|
2452
2467
|
}
|
|
2453
2468
|
export declare class EvergreenFundApiResponse implements IEvergreenFundApiResponse {
|
|
2454
2469
|
items?: EvergreenFund[] | undefined;
|
|
@@ -2862,14 +2877,16 @@ export interface IFinancialInstitutionApiResponse {
|
|
|
2862
2877
|
items?: FinancialInstitution[] | undefined;
|
|
2863
2878
|
pagination?: Pagination | undefined;
|
|
2864
2879
|
}
|
|
2865
|
-
/**
|
|
2866
|
-
export declare class
|
|
2880
|
+
/** FundManager represents the advisor responsible for managing the Registered Fund */
|
|
2881
|
+
export declare class FundManager implements IFundManager {
|
|
2867
2882
|
/** Unique ID for fund advisor */
|
|
2868
2883
|
id: string;
|
|
2869
2884
|
/** Fund advisor name */
|
|
2870
2885
|
name: string | undefined;
|
|
2871
2886
|
/** Fund advisor legal name */
|
|
2872
2887
|
legalName: string | undefined;
|
|
2888
|
+
/** Name of the fund manager's advisor. */
|
|
2889
|
+
fundAdvisorName?: string | undefined;
|
|
2873
2890
|
/** Link to representative logo for fund advisor */
|
|
2874
2891
|
logoUrl: string | undefined;
|
|
2875
2892
|
/** Year when fund advisor firm was first established */
|
|
@@ -2885,7 +2902,7 @@ export declare class FundAdvisor implements IFundAdvisor {
|
|
|
2885
2902
|
/** City where fund advisor was established */
|
|
2886
2903
|
city?: string | undefined;
|
|
2887
2904
|
/** Registration or exemption */
|
|
2888
|
-
registration?:
|
|
2905
|
+
registration?: FundManagerRegistration | undefined;
|
|
2889
2906
|
/** CRD number if fund advisor firm is registered */
|
|
2890
2907
|
crdNumber?: string | undefined;
|
|
2891
2908
|
/** Link to fund advisor's website */
|
|
@@ -2898,19 +2915,21 @@ export declare class FundAdvisor implements IFundAdvisor {
|
|
|
2898
2915
|
email?: string | undefined;
|
|
2899
2916
|
/** Main office phone number of fund advisor */
|
|
2900
2917
|
phone?: string | undefined;
|
|
2901
|
-
constructor(data?:
|
|
2918
|
+
constructor(data?: IFundManager);
|
|
2902
2919
|
init(_data?: any): void;
|
|
2903
|
-
static fromJS(data: any):
|
|
2920
|
+
static fromJS(data: any): FundManager;
|
|
2904
2921
|
toJSON(data?: any): any;
|
|
2905
2922
|
}
|
|
2906
|
-
/**
|
|
2907
|
-
export interface
|
|
2923
|
+
/** FundManager represents the advisor responsible for managing the Registered Fund */
|
|
2924
|
+
export interface IFundManager {
|
|
2908
2925
|
/** Unique ID for fund advisor */
|
|
2909
2926
|
id: string;
|
|
2910
2927
|
/** Fund advisor name */
|
|
2911
2928
|
name: string | undefined;
|
|
2912
2929
|
/** Fund advisor legal name */
|
|
2913
2930
|
legalName: string | undefined;
|
|
2931
|
+
/** Name of the fund manager's advisor. */
|
|
2932
|
+
fundAdvisorName?: string | undefined;
|
|
2914
2933
|
/** Link to representative logo for fund advisor */
|
|
2915
2934
|
logoUrl: string | undefined;
|
|
2916
2935
|
/** Year when fund advisor firm was first established */
|
|
@@ -2926,7 +2945,7 @@ export interface IFundAdvisor {
|
|
|
2926
2945
|
/** City where fund advisor was established */
|
|
2927
2946
|
city?: string | undefined;
|
|
2928
2947
|
/** Registration or exemption */
|
|
2929
|
-
registration?:
|
|
2948
|
+
registration?: FundManagerRegistration | undefined;
|
|
2930
2949
|
/** CRD number if fund advisor firm is registered */
|
|
2931
2950
|
crdNumber?: string | undefined;
|
|
2932
2951
|
/** Link to fund advisor's website */
|
|
@@ -6349,15 +6368,17 @@ export declare class RegisteredFund implements IRegisteredFund {
|
|
|
6349
6368
|
/** Unique identification number for Registered Fund */
|
|
6350
6369
|
id: string;
|
|
6351
6370
|
/** ID of underlying fund advisor */
|
|
6352
|
-
|
|
6371
|
+
fundManagerId?: string | undefined;
|
|
6353
6372
|
/** ID of the Partner associated with a registered fund. */
|
|
6354
6373
|
partnerId?: string | undefined;
|
|
6355
6374
|
/** Official name of Registered Fund */
|
|
6356
6375
|
name: string | undefined;
|
|
6376
|
+
/** Central Index Key assigned by the SEC. */
|
|
6377
|
+
cik?: number | undefined;
|
|
6357
6378
|
/** Fund's website */
|
|
6358
6379
|
website?: string | undefined;
|
|
6359
6380
|
/** Symbol assigned to this registered fund */
|
|
6360
|
-
symbol
|
|
6381
|
+
symbol?: string | undefined;
|
|
6361
6382
|
/** Link to logo for Registered Fund */
|
|
6362
6383
|
logoUrl?: string | undefined;
|
|
6363
6384
|
/** Current reported AUM of Registered Fund */
|
|
@@ -6365,7 +6386,7 @@ export declare class RegisteredFund implements IRegisteredFund {
|
|
|
6365
6386
|
/** Base currency of the fund */
|
|
6366
6387
|
currency?: string | undefined;
|
|
6367
6388
|
/** General asset class the Registered Fund is targeting */
|
|
6368
|
-
assetClass
|
|
6389
|
+
assetClass: string | undefined;
|
|
6369
6390
|
/** First year the fund began fundraising efforts */
|
|
6370
6391
|
vintage?: number;
|
|
6371
6392
|
/** The number of assets held by this fund */
|
|
@@ -6373,9 +6394,7 @@ export declare class RegisteredFund implements IRegisteredFund {
|
|
|
6373
6394
|
/** Brief description of fund */
|
|
6374
6395
|
description: string | undefined;
|
|
6375
6396
|
/** Structure of the fund */
|
|
6376
|
-
structure
|
|
6377
|
-
/** Indicates the exemption used to distribute securities in the Registered Fund */
|
|
6378
|
-
act33Exemption?: string | undefined;
|
|
6397
|
+
structure: string | undefined;
|
|
6379
6398
|
/** Subscription cadence of the fund */
|
|
6380
6399
|
subscriptionCadence?: RegisteredFundSubscriptionCadence | undefined;
|
|
6381
6400
|
/** Describes the subscription process of the fund */
|
|
@@ -6390,8 +6409,8 @@ export declare class RegisteredFund implements IRegisteredFund {
|
|
|
6390
6409
|
distributionCadence?: RegisteredFundDistributionCadence;
|
|
6391
6410
|
/** Describes the fund's process for distributions */
|
|
6392
6411
|
distributionProcess?: string | undefined;
|
|
6393
|
-
/** Does this registered fund accept non
|
|
6394
|
-
|
|
6412
|
+
/** Does this registered fund accept all investors (including non-accredited)? */
|
|
6413
|
+
allInvestors?: boolean;
|
|
6395
6414
|
/** Does this registered fund require accreditation status? */
|
|
6396
6415
|
accreditedInvestor?: boolean;
|
|
6397
6416
|
/** Does this registered fund require investors to be qualified clients? */
|
|
@@ -6400,14 +6419,20 @@ export declare class RegisteredFund implements IRegisteredFund {
|
|
|
6400
6419
|
qualifiedPurchaserInvestor?: boolean;
|
|
6401
6420
|
/** Does this registered fund allow for non-US based investors? */
|
|
6402
6421
|
nonUSInvestor?: boolean;
|
|
6422
|
+
/** Optional tax reporting designation. */
|
|
6423
|
+
taxReporting?: string | undefined;
|
|
6424
|
+
/** Optional tax form designation. */
|
|
6425
|
+
taxForm?: string | undefined;
|
|
6403
6426
|
/** The fund advisor for this registered fund. */
|
|
6404
|
-
|
|
6427
|
+
fundManager?: FundManager | undefined;
|
|
6405
6428
|
/** Associated share classes for the fund. */
|
|
6406
6429
|
shareClasses?: ShareClass[] | undefined;
|
|
6407
6430
|
/** Collection of Fee Structures directly associated with this Registered Fund. */
|
|
6408
6431
|
feeStructures?: FeeStructure[] | undefined;
|
|
6409
6432
|
/** Documents associated with the Registered Fund. */
|
|
6410
6433
|
documents?: Document[] | undefined;
|
|
6434
|
+
/** Third party data for the Registered Fund. */
|
|
6435
|
+
thirdPartyData?: RegisteredFundThirdPartyData | undefined;
|
|
6411
6436
|
constructor(data?: IRegisteredFund);
|
|
6412
6437
|
init(_data?: any): void;
|
|
6413
6438
|
static fromJS(data: any): RegisteredFund;
|
|
@@ -6418,15 +6443,17 @@ export interface IRegisteredFund {
|
|
|
6418
6443
|
/** Unique identification number for Registered Fund */
|
|
6419
6444
|
id: string;
|
|
6420
6445
|
/** ID of underlying fund advisor */
|
|
6421
|
-
|
|
6446
|
+
fundManagerId?: string | undefined;
|
|
6422
6447
|
/** ID of the Partner associated with a registered fund. */
|
|
6423
6448
|
partnerId?: string | undefined;
|
|
6424
6449
|
/** Official name of Registered Fund */
|
|
6425
6450
|
name: string | undefined;
|
|
6451
|
+
/** Central Index Key assigned by the SEC. */
|
|
6452
|
+
cik?: number | undefined;
|
|
6426
6453
|
/** Fund's website */
|
|
6427
6454
|
website?: string | undefined;
|
|
6428
6455
|
/** Symbol assigned to this registered fund */
|
|
6429
|
-
symbol
|
|
6456
|
+
symbol?: string | undefined;
|
|
6430
6457
|
/** Link to logo for Registered Fund */
|
|
6431
6458
|
logoUrl?: string | undefined;
|
|
6432
6459
|
/** Current reported AUM of Registered Fund */
|
|
@@ -6434,7 +6461,7 @@ export interface IRegisteredFund {
|
|
|
6434
6461
|
/** Base currency of the fund */
|
|
6435
6462
|
currency?: string | undefined;
|
|
6436
6463
|
/** General asset class the Registered Fund is targeting */
|
|
6437
|
-
assetClass
|
|
6464
|
+
assetClass: string | undefined;
|
|
6438
6465
|
/** First year the fund began fundraising efforts */
|
|
6439
6466
|
vintage?: number;
|
|
6440
6467
|
/** The number of assets held by this fund */
|
|
@@ -6442,9 +6469,7 @@ export interface IRegisteredFund {
|
|
|
6442
6469
|
/** Brief description of fund */
|
|
6443
6470
|
description: string | undefined;
|
|
6444
6471
|
/** Structure of the fund */
|
|
6445
|
-
structure
|
|
6446
|
-
/** Indicates the exemption used to distribute securities in the Registered Fund */
|
|
6447
|
-
act33Exemption?: string | undefined;
|
|
6472
|
+
structure: string | undefined;
|
|
6448
6473
|
/** Subscription cadence of the fund */
|
|
6449
6474
|
subscriptionCadence?: RegisteredFundSubscriptionCadence | undefined;
|
|
6450
6475
|
/** Describes the subscription process of the fund */
|
|
@@ -6459,8 +6484,8 @@ export interface IRegisteredFund {
|
|
|
6459
6484
|
distributionCadence?: RegisteredFundDistributionCadence;
|
|
6460
6485
|
/** Describes the fund's process for distributions */
|
|
6461
6486
|
distributionProcess?: string | undefined;
|
|
6462
|
-
/** Does this registered fund accept non
|
|
6463
|
-
|
|
6487
|
+
/** Does this registered fund accept all investors (including non-accredited)? */
|
|
6488
|
+
allInvestors?: boolean;
|
|
6464
6489
|
/** Does this registered fund require accreditation status? */
|
|
6465
6490
|
accreditedInvestor?: boolean;
|
|
6466
6491
|
/** Does this registered fund require investors to be qualified clients? */
|
|
@@ -6469,14 +6494,20 @@ export interface IRegisteredFund {
|
|
|
6469
6494
|
qualifiedPurchaserInvestor?: boolean;
|
|
6470
6495
|
/** Does this registered fund allow for non-US based investors? */
|
|
6471
6496
|
nonUSInvestor?: boolean;
|
|
6497
|
+
/** Optional tax reporting designation. */
|
|
6498
|
+
taxReporting?: string | undefined;
|
|
6499
|
+
/** Optional tax form designation. */
|
|
6500
|
+
taxForm?: string | undefined;
|
|
6472
6501
|
/** The fund advisor for this registered fund. */
|
|
6473
|
-
|
|
6502
|
+
fundManager?: FundManager | undefined;
|
|
6474
6503
|
/** Associated share classes for the fund. */
|
|
6475
6504
|
shareClasses?: ShareClass[] | undefined;
|
|
6476
6505
|
/** Collection of Fee Structures directly associated with this Registered Fund. */
|
|
6477
6506
|
feeStructures?: FeeStructure[] | undefined;
|
|
6478
6507
|
/** Documents associated with the Registered Fund. */
|
|
6479
6508
|
documents?: Document[] | undefined;
|
|
6509
|
+
/** Third party data for the Registered Fund. */
|
|
6510
|
+
thirdPartyData?: RegisteredFundThirdPartyData | undefined;
|
|
6480
6511
|
}
|
|
6481
6512
|
export declare class RegisteredFundApiResponse implements IRegisteredFundApiResponse {
|
|
6482
6513
|
items?: RegisteredFund[] | undefined;
|
|
@@ -6490,6 +6521,20 @@ export interface IRegisteredFundApiResponse {
|
|
|
6490
6521
|
items?: RegisteredFund[] | undefined;
|
|
6491
6522
|
pagination?: Pagination | undefined;
|
|
6492
6523
|
}
|
|
6524
|
+
/** Represents third party data for a registered fund. */
|
|
6525
|
+
export declare class RegisteredFundThirdPartyData implements IRegisteredFundThirdPartyData {
|
|
6526
|
+
/** Represents an evergreen fund. */
|
|
6527
|
+
secondaryLinkFund?: EvergreenFund | undefined;
|
|
6528
|
+
constructor(data?: IRegisteredFundThirdPartyData);
|
|
6529
|
+
init(_data?: any): void;
|
|
6530
|
+
static fromJS(data: any): RegisteredFundThirdPartyData;
|
|
6531
|
+
toJSON(data?: any): any;
|
|
6532
|
+
}
|
|
6533
|
+
/** Represents third party data for a registered fund. */
|
|
6534
|
+
export interface IRegisteredFundThirdPartyData {
|
|
6535
|
+
/** Represents an evergreen fund. */
|
|
6536
|
+
secondaryLinkFund?: EvergreenFund | undefined;
|
|
6537
|
+
}
|
|
6493
6538
|
export declare class RuntimeFieldHandle implements IRuntimeFieldHandle {
|
|
6494
6539
|
readonly value?: IntPtr;
|
|
6495
6540
|
constructor(data?: IRuntimeFieldHandle);
|
|
@@ -8510,7 +8555,7 @@ export declare enum FinancialInstitutionKycRequired {
|
|
|
8510
8555
|
Auto = "Auto",
|
|
8511
8556
|
Bypass = "Bypass"
|
|
8512
8557
|
}
|
|
8513
|
-
export declare enum
|
|
8558
|
+
export declare enum FundManagerRegistration {
|
|
8514
8559
|
RIA = "RIA"
|
|
8515
8560
|
}
|
|
8516
8561
|
export declare enum IndicationOfInterestV2TargetAssetType {
|
|
@@ -8968,16 +9013,6 @@ export declare enum QuestionnaireQuestionAnswerQuestionFormat {
|
|
|
8968
9013
|
Email = "Email",
|
|
8969
9014
|
Scale = "Scale"
|
|
8970
9015
|
}
|
|
8971
|
-
export declare enum RegisteredFundAssetClass {
|
|
8972
|
-
PrivateEquity = "PrivateEquity",
|
|
8973
|
-
PrivateCredit = "PrivateCredit"
|
|
8974
|
-
}
|
|
8975
|
-
export declare enum RegisteredFundStructure {
|
|
8976
|
-
REIT = "REIT",
|
|
8977
|
-
BDC = "BDC",
|
|
8978
|
-
TenderOfferFund = "TenderOfferFund",
|
|
8979
|
-
IntervalFund = "IntervalFund"
|
|
8980
|
-
}
|
|
8981
9016
|
export declare enum RegisteredFundSubscriptionCadence {
|
|
8982
9017
|
Monthly = "Monthly",
|
|
8983
9018
|
Quarterly = "Quarterly",
|
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.2.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 */
|
|
@@ -6178,9 +6178,10 @@ export class Client {
|
|
|
6178
6178
|
* Get the RegisteredFund by the specified Id.
|
|
6179
6179
|
* @param id ID of the RegisteredFund to find.
|
|
6180
6180
|
* @param includeDocuments (optional) Return associated documents
|
|
6181
|
+
* @param financialInstitutionId (optional) Optional financial institution ID for access control.
|
|
6181
6182
|
* @return Returns the RegisteredFund with the specified Id.
|
|
6182
6183
|
*/
|
|
6183
|
-
getRegisteredFundById(id, includeDocuments) {
|
|
6184
|
+
getRegisteredFundById(id, includeDocuments, financialInstitutionId) {
|
|
6184
6185
|
let url_ = this.baseUrl + "/primary/v1/registered-fund/{id}?";
|
|
6185
6186
|
if (id === undefined || id === null)
|
|
6186
6187
|
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
@@ -6189,6 +6190,10 @@ export class Client {
|
|
|
6189
6190
|
throw new globalThis.Error("The parameter 'includeDocuments' cannot be null.");
|
|
6190
6191
|
else if (includeDocuments !== undefined)
|
|
6191
6192
|
url_ += "includeDocuments=" + encodeURIComponent("" + includeDocuments) + "&";
|
|
6193
|
+
if (financialInstitutionId === null)
|
|
6194
|
+
throw new globalThis.Error("The parameter 'financialInstitutionId' cannot be null.");
|
|
6195
|
+
else if (financialInstitutionId !== undefined)
|
|
6196
|
+
url_ += "financialInstitutionId=" + encodeURIComponent("" + financialInstitutionId) + "&";
|
|
6192
6197
|
url_ = url_.replace(/[?&]$/, "");
|
|
6193
6198
|
let options_ = {
|
|
6194
6199
|
method: "GET",
|
|
@@ -6238,9 +6243,11 @@ export class Client {
|
|
|
6238
6243
|
Defaults to 25 if not specified.
|
|
6239
6244
|
* @param searchTerm (optional) Search term to filter results on based on 'Name' field
|
|
6240
6245
|
* @param sortOrder (optional) Which way to sort order, defaults to Descending.
|
|
6246
|
+
* @param financialInstitutionId (optional) Optional financial institution ID for access control.
|
|
6247
|
+
* @param assetClass (optional) Optional asset class to filter registered funds by asset class.
|
|
6241
6248
|
* @return OK
|
|
6242
6249
|
*/
|
|
6243
|
-
getAllRegisteredFunds(page, pageSize, searchTerm, sortOrder) {
|
|
6250
|
+
getAllRegisteredFunds(page, pageSize, searchTerm, sortOrder, financialInstitutionId, assetClass) {
|
|
6244
6251
|
let url_ = this.baseUrl + "/primary/v1/registered-fund?";
|
|
6245
6252
|
if (page === null)
|
|
6246
6253
|
throw new globalThis.Error("The parameter 'page' cannot be null.");
|
|
@@ -6258,6 +6265,14 @@ export class Client {
|
|
|
6258
6265
|
throw new globalThis.Error("The parameter 'sortOrder' cannot be null.");
|
|
6259
6266
|
else if (sortOrder !== undefined)
|
|
6260
6267
|
url_ += "sortOrder=" + encodeURIComponent("" + sortOrder) + "&";
|
|
6268
|
+
if (financialInstitutionId === null)
|
|
6269
|
+
throw new globalThis.Error("The parameter 'financialInstitutionId' cannot be null.");
|
|
6270
|
+
else if (financialInstitutionId !== undefined)
|
|
6271
|
+
url_ += "financialInstitutionId=" + encodeURIComponent("" + financialInstitutionId) + "&";
|
|
6272
|
+
if (assetClass === null)
|
|
6273
|
+
throw new globalThis.Error("The parameter 'assetClass' cannot be null.");
|
|
6274
|
+
else if (assetClass !== undefined)
|
|
6275
|
+
url_ += "assetClass=" + encodeURIComponent("" + assetClass) + "&";
|
|
6261
6276
|
url_ = url_.replace(/[?&]$/, "");
|
|
6262
6277
|
let options_ = {
|
|
6263
6278
|
method: "GET",
|
|
@@ -6962,7 +6977,7 @@ export class Client {
|
|
|
6962
6977
|
}
|
|
6963
6978
|
/**
|
|
6964
6979
|
* Get all orders for a specific asset type with optional filtering.
|
|
6965
|
-
* @param targetAssetType
|
|
6980
|
+
* @param targetAssetType Required: The asset type (PreIPOCompanySPV or RegisteredFund).
|
|
6966
6981
|
* @param page (optional) Number of the page to retrieve.
|
|
6967
6982
|
Defaults to 1 if not specified.
|
|
6968
6983
|
* @param pageSize (optional) Size of the page to retrieve.
|
|
@@ -6975,9 +6990,9 @@ export class Client {
|
|
|
6975
6990
|
*/
|
|
6976
6991
|
getTransactions(targetAssetType, page, pageSize, targetId, investorId, status, referenceId) {
|
|
6977
6992
|
let url_ = this.baseUrl + "/primary/v2/transaction?";
|
|
6978
|
-
if (targetAssetType === null)
|
|
6979
|
-
throw new globalThis.Error("The parameter 'targetAssetType' cannot be null.");
|
|
6980
|
-
else
|
|
6993
|
+
if (targetAssetType === undefined || targetAssetType === null)
|
|
6994
|
+
throw new globalThis.Error("The parameter 'targetAssetType' must be defined and cannot be null.");
|
|
6995
|
+
else
|
|
6981
6996
|
url_ += "targetAssetType=" + encodeURIComponent("" + targetAssetType) + "&";
|
|
6982
6997
|
if (page === null)
|
|
6983
6998
|
throw new globalThis.Error("The parameter 'page' cannot be null.");
|
|
@@ -9465,6 +9480,7 @@ export class EvergreenFund {
|
|
|
9465
9480
|
if (_data) {
|
|
9466
9481
|
this.id = _data["id"];
|
|
9467
9482
|
this.fundName = _data["fundName"];
|
|
9483
|
+
this.cik = _data["cik"];
|
|
9468
9484
|
this.manager = _data["manager"];
|
|
9469
9485
|
this.inception = _data["inception"];
|
|
9470
9486
|
this.dealTypeFocus = _data["dealTypeFocus"];
|
|
@@ -9474,6 +9490,12 @@ export class EvergreenFund {
|
|
|
9474
9490
|
this.registration = _data["registration"];
|
|
9475
9491
|
this.repurchaseFrequency = _data["repurchaseFrequency"];
|
|
9476
9492
|
this.subscriptionFrequency = _data["subscriptionFrequency"];
|
|
9493
|
+
this.evergreenReturns = _data["evergreenReturns"] ? EvergreenReturns.fromJS(_data["evergreenReturns"]) : undefined;
|
|
9494
|
+
if (Array.isArray(_data["evergreenShareClasses"])) {
|
|
9495
|
+
this.evergreenShareClasses = [];
|
|
9496
|
+
for (let item of _data["evergreenShareClasses"])
|
|
9497
|
+
this.evergreenShareClasses.push(EvergreenShareClasses.fromJS(item));
|
|
9498
|
+
}
|
|
9477
9499
|
}
|
|
9478
9500
|
}
|
|
9479
9501
|
static fromJS(data) {
|
|
@@ -9486,6 +9508,7 @@ export class EvergreenFund {
|
|
|
9486
9508
|
data = typeof data === 'object' ? data : {};
|
|
9487
9509
|
data["id"] = this.id;
|
|
9488
9510
|
data["fundName"] = this.fundName;
|
|
9511
|
+
data["cik"] = this.cik;
|
|
9489
9512
|
data["manager"] = this.manager;
|
|
9490
9513
|
data["inception"] = this.inception;
|
|
9491
9514
|
data["dealTypeFocus"] = this.dealTypeFocus;
|
|
@@ -9495,6 +9518,12 @@ export class EvergreenFund {
|
|
|
9495
9518
|
data["registration"] = this.registration;
|
|
9496
9519
|
data["repurchaseFrequency"] = this.repurchaseFrequency;
|
|
9497
9520
|
data["subscriptionFrequency"] = this.subscriptionFrequency;
|
|
9521
|
+
data["evergreenReturns"] = this.evergreenReturns ? this.evergreenReturns.toJSON() : undefined;
|
|
9522
|
+
if (Array.isArray(this.evergreenShareClasses)) {
|
|
9523
|
+
data["evergreenShareClasses"] = [];
|
|
9524
|
+
for (let item of this.evergreenShareClasses)
|
|
9525
|
+
data["evergreenShareClasses"].push(item ? item.toJSON() : undefined);
|
|
9526
|
+
}
|
|
9498
9527
|
return data;
|
|
9499
9528
|
}
|
|
9500
9529
|
}
|
|
@@ -10057,8 +10086,8 @@ export class FinancialInstitutionApiResponse {
|
|
|
10057
10086
|
return data;
|
|
10058
10087
|
}
|
|
10059
10088
|
}
|
|
10060
|
-
/**
|
|
10061
|
-
export class
|
|
10089
|
+
/** FundManager represents the advisor responsible for managing the Registered Fund */
|
|
10090
|
+
export class FundManager {
|
|
10062
10091
|
constructor(data) {
|
|
10063
10092
|
if (data) {
|
|
10064
10093
|
for (var property in data) {
|
|
@@ -10072,6 +10101,7 @@ export class FundAdvisor {
|
|
|
10072
10101
|
this.id = _data["id"];
|
|
10073
10102
|
this.name = _data["name"];
|
|
10074
10103
|
this.legalName = _data["legalName"];
|
|
10104
|
+
this.fundAdvisorName = _data["fundAdvisorName"];
|
|
10075
10105
|
this.logoUrl = _data["logoUrl"];
|
|
10076
10106
|
this.foundingDate = _data["foundingDate"] ? new Date(_data["foundingDate"].toString()) : undefined;
|
|
10077
10107
|
this.aum = _data["aum"];
|
|
@@ -10090,7 +10120,7 @@ export class FundAdvisor {
|
|
|
10090
10120
|
}
|
|
10091
10121
|
static fromJS(data) {
|
|
10092
10122
|
data = typeof data === 'object' ? data : {};
|
|
10093
|
-
let result = new
|
|
10123
|
+
let result = new FundManager();
|
|
10094
10124
|
result.init(data);
|
|
10095
10125
|
return result;
|
|
10096
10126
|
}
|
|
@@ -10099,6 +10129,7 @@ export class FundAdvisor {
|
|
|
10099
10129
|
data["id"] = this.id;
|
|
10100
10130
|
data["name"] = this.name;
|
|
10101
10131
|
data["legalName"] = this.legalName;
|
|
10132
|
+
data["fundAdvisorName"] = this.fundAdvisorName;
|
|
10102
10133
|
data["logoUrl"] = this.logoUrl;
|
|
10103
10134
|
data["foundingDate"] = this.foundingDate ? formatDate(this.foundingDate) : undefined;
|
|
10104
10135
|
data["aum"] = this.aum;
|
|
@@ -13886,9 +13917,10 @@ export class RegisteredFund {
|
|
|
13886
13917
|
init(_data) {
|
|
13887
13918
|
if (_data) {
|
|
13888
13919
|
this.id = _data["id"];
|
|
13889
|
-
this.
|
|
13920
|
+
this.fundManagerId = _data["fundManagerId"];
|
|
13890
13921
|
this.partnerId = _data["partnerId"];
|
|
13891
13922
|
this.name = _data["name"];
|
|
13923
|
+
this.cik = _data["cik"];
|
|
13892
13924
|
this.website = _data["website"];
|
|
13893
13925
|
this.symbol = _data["symbol"];
|
|
13894
13926
|
this.logoUrl = _data["logoUrl"];
|
|
@@ -13899,7 +13931,6 @@ export class RegisteredFund {
|
|
|
13899
13931
|
this.assetNum = _data["assetNum"];
|
|
13900
13932
|
this.description = _data["description"];
|
|
13901
13933
|
this.structure = _data["structure"];
|
|
13902
|
-
this.act33Exemption = _data["act33Exemption"];
|
|
13903
13934
|
this.subscriptionCadence = _data["subscriptionCadence"];
|
|
13904
13935
|
this.subscriptionProcess = _data["subscriptionProcess"];
|
|
13905
13936
|
this.redemptionCadence = _data["redemptionCadence"];
|
|
@@ -13907,12 +13938,14 @@ export class RegisteredFund {
|
|
|
13907
13938
|
this.redemptionProcess = _data["redemptionProcess"];
|
|
13908
13939
|
this.distributionCadence = _data["distributionCadence"];
|
|
13909
13940
|
this.distributionProcess = _data["distributionProcess"];
|
|
13910
|
-
this.
|
|
13941
|
+
this.allInvestors = _data["allInvestors"];
|
|
13911
13942
|
this.accreditedInvestor = _data["accreditedInvestor"];
|
|
13912
13943
|
this.qualifiedClientInvestor = _data["qualifiedClientInvestor"];
|
|
13913
13944
|
this.qualifiedPurchaserInvestor = _data["qualifiedPurchaserInvestor"];
|
|
13914
13945
|
this.nonUSInvestor = _data["nonUSInvestor"];
|
|
13915
|
-
this.
|
|
13946
|
+
this.taxReporting = _data["taxReporting"];
|
|
13947
|
+
this.taxForm = _data["taxForm"];
|
|
13948
|
+
this.fundManager = _data["fundManager"] ? FundManager.fromJS(_data["fundManager"]) : undefined;
|
|
13916
13949
|
if (Array.isArray(_data["shareClasses"])) {
|
|
13917
13950
|
this.shareClasses = [];
|
|
13918
13951
|
for (let item of _data["shareClasses"])
|
|
@@ -13928,6 +13961,7 @@ export class RegisteredFund {
|
|
|
13928
13961
|
for (let item of _data["documents"])
|
|
13929
13962
|
this.documents.push(Document.fromJS(item));
|
|
13930
13963
|
}
|
|
13964
|
+
this.thirdPartyData = _data["thirdPartyData"] ? RegisteredFundThirdPartyData.fromJS(_data["thirdPartyData"]) : undefined;
|
|
13931
13965
|
}
|
|
13932
13966
|
}
|
|
13933
13967
|
static fromJS(data) {
|
|
@@ -13939,9 +13973,10 @@ export class RegisteredFund {
|
|
|
13939
13973
|
toJSON(data) {
|
|
13940
13974
|
data = typeof data === 'object' ? data : {};
|
|
13941
13975
|
data["id"] = this.id;
|
|
13942
|
-
data["
|
|
13976
|
+
data["fundManagerId"] = this.fundManagerId;
|
|
13943
13977
|
data["partnerId"] = this.partnerId;
|
|
13944
13978
|
data["name"] = this.name;
|
|
13979
|
+
data["cik"] = this.cik;
|
|
13945
13980
|
data["website"] = this.website;
|
|
13946
13981
|
data["symbol"] = this.symbol;
|
|
13947
13982
|
data["logoUrl"] = this.logoUrl;
|
|
@@ -13952,7 +13987,6 @@ export class RegisteredFund {
|
|
|
13952
13987
|
data["assetNum"] = this.assetNum;
|
|
13953
13988
|
data["description"] = this.description;
|
|
13954
13989
|
data["structure"] = this.structure;
|
|
13955
|
-
data["act33Exemption"] = this.act33Exemption;
|
|
13956
13990
|
data["subscriptionCadence"] = this.subscriptionCadence;
|
|
13957
13991
|
data["subscriptionProcess"] = this.subscriptionProcess;
|
|
13958
13992
|
data["redemptionCadence"] = this.redemptionCadence;
|
|
@@ -13960,12 +13994,14 @@ export class RegisteredFund {
|
|
|
13960
13994
|
data["redemptionProcess"] = this.redemptionProcess;
|
|
13961
13995
|
data["distributionCadence"] = this.distributionCadence;
|
|
13962
13996
|
data["distributionProcess"] = this.distributionProcess;
|
|
13963
|
-
data["
|
|
13997
|
+
data["allInvestors"] = this.allInvestors;
|
|
13964
13998
|
data["accreditedInvestor"] = this.accreditedInvestor;
|
|
13965
13999
|
data["qualifiedClientInvestor"] = this.qualifiedClientInvestor;
|
|
13966
14000
|
data["qualifiedPurchaserInvestor"] = this.qualifiedPurchaserInvestor;
|
|
13967
14001
|
data["nonUSInvestor"] = this.nonUSInvestor;
|
|
13968
|
-
data["
|
|
14002
|
+
data["taxReporting"] = this.taxReporting;
|
|
14003
|
+
data["taxForm"] = this.taxForm;
|
|
14004
|
+
data["fundManager"] = this.fundManager ? this.fundManager.toJSON() : undefined;
|
|
13969
14005
|
if (Array.isArray(this.shareClasses)) {
|
|
13970
14006
|
data["shareClasses"] = [];
|
|
13971
14007
|
for (let item of this.shareClasses)
|
|
@@ -13981,6 +14017,7 @@ export class RegisteredFund {
|
|
|
13981
14017
|
for (let item of this.documents)
|
|
13982
14018
|
data["documents"].push(item ? item.toJSON() : undefined);
|
|
13983
14019
|
}
|
|
14020
|
+
data["thirdPartyData"] = this.thirdPartyData ? this.thirdPartyData.toJSON() : undefined;
|
|
13984
14021
|
return data;
|
|
13985
14022
|
}
|
|
13986
14023
|
}
|
|
@@ -14020,6 +14057,33 @@ export class RegisteredFundApiResponse {
|
|
|
14020
14057
|
return data;
|
|
14021
14058
|
}
|
|
14022
14059
|
}
|
|
14060
|
+
/** Represents third party data for a registered fund. */
|
|
14061
|
+
export class RegisteredFundThirdPartyData {
|
|
14062
|
+
constructor(data) {
|
|
14063
|
+
if (data) {
|
|
14064
|
+
for (var property in data) {
|
|
14065
|
+
if (data.hasOwnProperty(property))
|
|
14066
|
+
this[property] = data[property];
|
|
14067
|
+
}
|
|
14068
|
+
}
|
|
14069
|
+
}
|
|
14070
|
+
init(_data) {
|
|
14071
|
+
if (_data) {
|
|
14072
|
+
this.secondaryLinkFund = _data["secondaryLinkFund"] ? EvergreenFund.fromJS(_data["secondaryLinkFund"]) : undefined;
|
|
14073
|
+
}
|
|
14074
|
+
}
|
|
14075
|
+
static fromJS(data) {
|
|
14076
|
+
data = typeof data === 'object' ? data : {};
|
|
14077
|
+
let result = new RegisteredFundThirdPartyData();
|
|
14078
|
+
result.init(data);
|
|
14079
|
+
return result;
|
|
14080
|
+
}
|
|
14081
|
+
toJSON(data) {
|
|
14082
|
+
data = typeof data === 'object' ? data : {};
|
|
14083
|
+
data["secondaryLinkFund"] = this.secondaryLinkFund ? this.secondaryLinkFund.toJSON() : undefined;
|
|
14084
|
+
return data;
|
|
14085
|
+
}
|
|
14086
|
+
}
|
|
14023
14087
|
export class RuntimeFieldHandle {
|
|
14024
14088
|
constructor(data) {
|
|
14025
14089
|
if (data) {
|
|
@@ -16355,10 +16419,10 @@ export var FinancialInstitutionKycRequired;
|
|
|
16355
16419
|
FinancialInstitutionKycRequired["Auto"] = "Auto";
|
|
16356
16420
|
FinancialInstitutionKycRequired["Bypass"] = "Bypass";
|
|
16357
16421
|
})(FinancialInstitutionKycRequired || (FinancialInstitutionKycRequired = {}));
|
|
16358
|
-
export var
|
|
16359
|
-
(function (
|
|
16360
|
-
|
|
16361
|
-
})(
|
|
16422
|
+
export var FundManagerRegistration;
|
|
16423
|
+
(function (FundManagerRegistration) {
|
|
16424
|
+
FundManagerRegistration["RIA"] = "RIA";
|
|
16425
|
+
})(FundManagerRegistration || (FundManagerRegistration = {}));
|
|
16362
16426
|
export var IndicationOfInterestV2TargetAssetType;
|
|
16363
16427
|
(function (IndicationOfInterestV2TargetAssetType) {
|
|
16364
16428
|
IndicationOfInterestV2TargetAssetType["PreIPOCompanySPV"] = "PreIPOCompanySPV";
|
|
@@ -16855,18 +16919,6 @@ export var QuestionnaireQuestionAnswerQuestionFormat;
|
|
|
16855
16919
|
QuestionnaireQuestionAnswerQuestionFormat["Email"] = "Email";
|
|
16856
16920
|
QuestionnaireQuestionAnswerQuestionFormat["Scale"] = "Scale";
|
|
16857
16921
|
})(QuestionnaireQuestionAnswerQuestionFormat || (QuestionnaireQuestionAnswerQuestionFormat = {}));
|
|
16858
|
-
export var RegisteredFundAssetClass;
|
|
16859
|
-
(function (RegisteredFundAssetClass) {
|
|
16860
|
-
RegisteredFundAssetClass["PrivateEquity"] = "PrivateEquity";
|
|
16861
|
-
RegisteredFundAssetClass["PrivateCredit"] = "PrivateCredit";
|
|
16862
|
-
})(RegisteredFundAssetClass || (RegisteredFundAssetClass = {}));
|
|
16863
|
-
export var RegisteredFundStructure;
|
|
16864
|
-
(function (RegisteredFundStructure) {
|
|
16865
|
-
RegisteredFundStructure["REIT"] = "REIT";
|
|
16866
|
-
RegisteredFundStructure["BDC"] = "BDC";
|
|
16867
|
-
RegisteredFundStructure["TenderOfferFund"] = "TenderOfferFund";
|
|
16868
|
-
RegisteredFundStructure["IntervalFund"] = "IntervalFund";
|
|
16869
|
-
})(RegisteredFundStructure || (RegisteredFundStructure = {}));
|
|
16870
16922
|
export var RegisteredFundSubscriptionCadence;
|
|
16871
16923
|
(function (RegisteredFundSubscriptionCadence) {
|
|
16872
16924
|
RegisteredFundSubscriptionCadence["Monthly"] = "Monthly";
|