@monarkmarkets/api-client 1.3.0 → 1.3.2

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
@@ -55,21 +55,21 @@ export declare class Client {
55
55
  downloadDocument(id: string, token: string): Promise<void>;
56
56
  protected processDownloadDocument(response: Response): Promise<void>;
57
57
  /**
58
- * Create a Financial Advisor in the primary offering.
58
+ * Create a Financial Advisor.
59
59
  * @param body (optional) create Financial Advisor information.
60
60
  * @return The newly created Financial Advisor.
61
61
  */
62
62
  createFinancialAdvisor(body: CreateFinancialAdvisor | undefined): Promise<FinancialAdvisor>;
63
63
  protected processCreateFinancialAdvisor(response: Response): Promise<FinancialAdvisor>;
64
64
  /**
65
- * Update an entire Financial Advisor in the primary offering.
65
+ * Update a Financial Advisor.
66
66
  * @param body (optional) update Financial Advisor information.
67
67
  * @return The updated Financial Advisor.
68
68
  */
69
69
  updateFinancialAdvisor(body: UpdateFinancialAdvisor | undefined): Promise<FinancialAdvisor>;
70
70
  protected processUpdateFinancialAdvisor(response: Response): Promise<FinancialAdvisor>;
71
71
  /**
72
- * Get all Financial Advisors for the authenticated partner's financial institutions.
72
+ * Get all Financial Advisors.
73
73
  * @param page (optional) Number of the page to retrieve.
74
74
  Defaults to 1 if not specified.
75
75
  * @param pageSize (optional) Size of the page to retrieve.
@@ -81,7 +81,7 @@ export declare class Client {
81
81
  getAllFinancialAdvisors(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder2 | undefined, financialInstitutionId: string | undefined): Promise<FinancialAdvisorApiResponse>;
82
82
  protected processGetAllFinancialAdvisors(response: Response): Promise<FinancialAdvisorApiResponse>;
83
83
  /**
84
- * Get the Financial Advisor by the specified Id.
84
+ * Get a Financial Advisor by Id.
85
85
  * @param id Id of the Financial Advisor to find.
86
86
  * @return Returns the Financial Advisor with the specified Id.
87
87
  */
@@ -745,6 +745,28 @@ export declare class Client {
745
745
  */
746
746
  getAllPreIPOCompanySPVs(investorId: string, monarkStage: MonarkStage | undefined, exemptionsClaimed: ExemptionsClaimed[] | undefined, nameFilter: string | undefined, preIPOCompanyId: string | undefined, preIPOCompanyInvestmentId: string | undefined, isApproved: boolean | undefined, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder12 | undefined, sortBy: SortBy2 | undefined): Promise<PreIPOCompanySPVApiResponse>;
747
747
  protected processGetAllPreIPOCompanySPVs(response: Response): Promise<PreIPOCompanySPVApiResponse>;
748
+ /**
749
+ * Gets all Financial Institutions that have access to a specific SPV
750
+ * @param spvId ID of the SPV to find Financial Institutions for
751
+ * @param page (optional) Number of the page to retrieve.
752
+ Defaults to 1 if not specified.
753
+ * @param pageSize (optional) Size of the page to retrieve.
754
+ Defaults to 25 if not specified.
755
+ * @return Returns the list of Financial Institutions
756
+ */
757
+ getFinancialInstitutionsForSPV(spvId: string, page: number | undefined, pageSize: number | undefined): Promise<FinancialInstitutionApiResponse>;
758
+ protected processGetFinancialInstitutionsForSPV(response: Response): Promise<FinancialInstitutionApiResponse>;
759
+ /**
760
+ * Gets all SPVs that a Financial Institution has access to
761
+ * @param financialInstitutionId ID of the Financial Institution
762
+ * @param page (optional) Number of the page to retrieve.
763
+ Defaults to 1 if not specified.
764
+ * @param pageSize (optional) Size of the page to retrieve.
765
+ Defaults to 25 if not specified.
766
+ * @return Returns the list of SPVs
767
+ */
768
+ getSPVsForFinancialInstitution(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined): Promise<PreIPOCompanySPV[]>;
769
+ protected processGetSPVsForFinancialInstitution(response: Response): Promise<PreIPOCompanySPV[]>;
748
770
  /**
749
771
  * Gets all SPVs that have been approved.
750
772
  * @param page (optional) Number of the page to retrieve.
@@ -795,14 +817,16 @@ export declare class Client {
795
817
  getAllPartnerSpvApprovals(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder13 | undefined): Promise<PreIPOCompanySPVPartnerApprovalApiResponse>;
796
818
  protected processGetAllPartnerSpvApprovals(response: Response): Promise<PreIPOCompanySPVPartnerApprovalApiResponse>;
797
819
  /**
798
- * @param body (optional)
799
- * @return Created
820
+ * Create a Questionnaire.
821
+ * @param body (optional) Payload describing the questionnaire to create.
822
+ * @return Returns the created questionnaire.
800
823
  */
801
824
  createQuestionnaire(body: CreateQuestionnaire | undefined): Promise<Questionnaire>;
802
825
  protected processCreateQuestionnaire(response: Response): Promise<Questionnaire>;
803
826
  /**
804
- * @param body (optional)
805
- * @return OK
827
+ * Update a Questionnaire.
828
+ * @param body (optional) Payload containing questionnaire updates.
829
+ * @return Returns the updated questionnaire.
806
830
  */
807
831
  updateQuestionnaire(body: UpdateQuestionnaire | undefined): Promise<Questionnaire>;
808
832
  protected processUpdateQuestionnaire(response: Response): Promise<Questionnaire>;
@@ -818,7 +842,9 @@ export declare class Client {
818
842
  getAllQuestionnaires(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder14 | undefined): Promise<QuestionnaireApiResponse>;
819
843
  protected processGetAllQuestionnaires(response: Response): Promise<QuestionnaireApiResponse>;
820
844
  /**
821
- * @return No Content
845
+ * Delete a Questionnaire.
846
+ * @param id Identifier of the questionnaire to remove.
847
+ * @return Questionnaire deleted successfully.
822
848
  */
823
849
  deleteQuestionnaire(id: string): Promise<void>;
824
850
  protected processDeleteQuestionnaire(response: Response): Promise<void>;
@@ -958,6 +984,90 @@ export declare class Client {
958
984
  */
959
985
  completeRegisteredFundSubscriptionAction(id: string, body: any | undefined): Promise<void>;
960
986
  protected processCompleteRegisteredFundSubscriptionAction(response: Response): Promise<void>;
987
+ /**
988
+ * Gets a SecondaryLink Evergreen Fund by ID.
989
+ * @param id The Evergreen Fund ID.
990
+ * @param financialInstitutionId The financial institution ID.
991
+ * @return Returns the EvergreenFund with the specified Id.
992
+ */
993
+ getSecondaryLinkEvergreenFundById(id: string, financialInstitutionId: string): Promise<EvergreenFund>;
994
+ protected processGetSecondaryLinkEvergreenFundById(response: Response): Promise<EvergreenFund>;
995
+ /**
996
+ * Gets all SecondaryLink Evergreen Funds with optional filtering and pagination.
997
+ * @param financialInstitutionId The financial institution ID.
998
+ * @param page (optional) Number of the page to retrieve.
999
+ Defaults to 1 if not specified.
1000
+ * @param pageSize (optional) Size of the page to retrieve.
1001
+ Defaults to 25 if not specified.
1002
+ * @param searchTerm (optional) Optional search term to filter by fund name or manager.
1003
+ * @param sortOrder (optional) Sort order (Ascending or Descending). Defaults to Descending.
1004
+ * @return Returns the list of EvergreenFund.
1005
+ */
1006
+ getAllSecondaryLinkEvergreenFunds(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder18 | undefined): Promise<EvergreenFundApiResponse>;
1007
+ protected processGetAllSecondaryLinkEvergreenFunds(response: Response): Promise<EvergreenFundApiResponse>;
1008
+ /**
1009
+ * Gets a SecondaryLink Evergreen News record by ID.
1010
+ * @param id The Evergreen News ID.
1011
+ * @param financialInstitutionId The financial institution ID.
1012
+ * @return Returns the EvergreenNews with the specified Id.
1013
+ */
1014
+ getSecondaryLinkEvergreenNewsById(id: string, financialInstitutionId: string): Promise<EvergreenNews>;
1015
+ protected processGetSecondaryLinkEvergreenNewsById(response: Response): Promise<EvergreenNews>;
1016
+ /**
1017
+ * Gets all SecondaryLink Evergreen News with optional filtering and pagination.
1018
+ * @param financialInstitutionId The financial institution ID.
1019
+ * @param page (optional) Number of the page to retrieve.
1020
+ Defaults to 1 if not specified.
1021
+ * @param pageSize (optional) Size of the page to retrieve.
1022
+ Defaults to 25 if not specified.
1023
+ * @param searchTerm (optional) Optional search term to filter by fund name or title.
1024
+ * @param sortOrder (optional) Sort order (Ascending or Descending). Defaults to Descending.
1025
+ * @return Returns the list of EvergreenNews.
1026
+ */
1027
+ getAllSecondaryLinkEvergreenNews(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder19 | undefined): Promise<EvergreenNewsApiResponse>;
1028
+ protected processGetAllSecondaryLinkEvergreenNews(response: Response): Promise<EvergreenNewsApiResponse>;
1029
+ /**
1030
+ * Gets a SecondaryLink Evergreen Returns record by ID.
1031
+ * @param id The Evergreen Returns ID.
1032
+ * @param financialInstitutionId The financial institution ID.
1033
+ * @return Returns the EvergreenReturns with the specified Id.
1034
+ */
1035
+ getSecondaryLinkEvergreenReturnsById(id: string, financialInstitutionId: string): Promise<EvergreenReturns>;
1036
+ protected processGetSecondaryLinkEvergreenReturnsById(response: Response): Promise<EvergreenReturns>;
1037
+ /**
1038
+ * Gets all SecondaryLink Evergreen Returns with optional filtering and pagination.
1039
+ * @param financialInstitutionId The financial institution ID.
1040
+ * @param page (optional) Number of the page to retrieve.
1041
+ Defaults to 1 if not specified.
1042
+ * @param pageSize (optional) Size of the page to retrieve.
1043
+ Defaults to 25 if not specified.
1044
+ * @param searchTerm (optional) Optional search term to filter by fund name.
1045
+ * @param sortOrder (optional) Sort order (Ascending or Descending). Defaults to Descending.
1046
+ * @return Returns the list of EvergreenReturns.
1047
+ */
1048
+ getAllSecondaryLinkEvergreenReturns(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder20 | undefined): Promise<EvergreenReturnsApiResponse>;
1049
+ protected processGetAllSecondaryLinkEvergreenReturns(response: Response): Promise<EvergreenReturnsApiResponse>;
1050
+ /**
1051
+ * Gets a SecondaryLink Evergreen Share Classes record by ID.
1052
+ * @param id The Evergreen Share Classes ID.
1053
+ * @param financialInstitutionId The financial institution ID.
1054
+ * @return Returns the EvergreenShareClasses with the specified Id.
1055
+ */
1056
+ getSecondaryLinkEvergreenShareClassesById(id: string, financialInstitutionId: string): Promise<EvergreenShareClasses>;
1057
+ protected processGetSecondaryLinkEvergreenShareClassesById(response: Response): Promise<EvergreenShareClasses>;
1058
+ /**
1059
+ * Gets all SecondaryLink Evergreen Share Classes with optional filtering and pagination.
1060
+ * @param financialInstitutionId The financial institution ID.
1061
+ * @param page (optional) Number of the page to retrieve.
1062
+ Defaults to 1 if not specified.
1063
+ * @param pageSize (optional) Size of the page to retrieve.
1064
+ Defaults to 25 if not specified.
1065
+ * @param searchTerm (optional) Optional search term to filter by fund name or ticker.
1066
+ * @param sortOrder (optional) Sort order (Ascending or Descending). Defaults to Descending.
1067
+ * @return Returns the list of EvergreenShareClasses.
1068
+ */
1069
+ getAllSecondaryLinkEvergreenShareClasses(financialInstitutionId: string, page: number | undefined, pageSize: number | undefined, searchTerm: string | undefined, sortOrder: SortOrder21 | undefined): Promise<EvergreenShareClassesApiResponse>;
1070
+ protected processGetAllSecondaryLinkEvergreenShareClasses(response: Response): Promise<EvergreenShareClassesApiResponse>;
961
1071
  /**
962
1072
  * Get the API version
963
1073
  * @return Returns the API version
@@ -980,7 +1090,7 @@ export declare class Client {
980
1090
  * @param sortOrder (optional) Order of which to sort the webhooks by. Default is Descending
981
1091
  * @return Returns a list of Webhooks.
982
1092
  */
983
- getAllWebhooks(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder18 | undefined): Promise<WebhookApiResponse>;
1093
+ getAllWebhooks(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder22 | undefined): Promise<WebhookApiResponse>;
984
1094
  protected processGetAllWebhooks(response: Response): Promise<WebhookApiResponse>;
985
1095
  /**
986
1096
  * Update a Webhook’s Information
@@ -1017,7 +1127,7 @@ export declare class Client {
1017
1127
  * @param deliveryStatus (optional) Optional filter by delivery status.
1018
1128
  * @return Returns a list of Webhook Events.
1019
1129
  */
1020
- getAllWebhookEvents(id: string, from: Date, to: Date, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder19 | undefined, eventType: EventType | undefined, deliveryStatus: DeliveryStatus | undefined): Promise<WebhookEventApiResponse>;
1130
+ getAllWebhookEvents(id: string, from: Date, to: Date, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder23 | undefined, eventType: EventType | undefined, deliveryStatus: DeliveryStatus | undefined): Promise<WebhookEventApiResponse>;
1021
1131
  protected processGetAllWebhookEvents(response: Response): Promise<WebhookEventApiResponse>;
1022
1132
  }
1023
1133
  /** Represents the version information of the API */
@@ -2158,6 +2268,230 @@ export interface IEventInfo {
2158
2268
  isMulticast?: boolean;
2159
2269
  eventHandlerType?: Type | undefined;
2160
2270
  }
2271
+ /** Represents an evergreen fund. */
2272
+ export declare class EvergreenFund implements IEvergreenFund {
2273
+ /** Unique identification number for Evergreen Fund */
2274
+ id: string;
2275
+ /** Official name of the Evergreen Fund */
2276
+ fundName: string | undefined;
2277
+ /** Manager of the Evergreen Fund */
2278
+ manager: string | undefined;
2279
+ /** Year of inception for the Evergreen Fund */
2280
+ inception?: number;
2281
+ /** Deal type focus of the Evergreen Fund */
2282
+ dealTypeFocus?: string | undefined;
2283
+ /** Strategy focus of the Evergreen Fund */
2284
+ strategyFocus?: string | undefined;
2285
+ /** Management fee charged by the Evergreen Fund */
2286
+ managementFee?: number;
2287
+ /** Type of the Evergreen Fund */
2288
+ fundType?: string | undefined;
2289
+ /** Registration status of the Evergreen Fund */
2290
+ registration?: string | undefined;
2291
+ /** Frequency at which repurchases occur */
2292
+ repurchaseFrequency?: string | undefined;
2293
+ /** Frequency at which subscriptions occur */
2294
+ subscriptionFrequency?: string | undefined;
2295
+ constructor(data?: IEvergreenFund);
2296
+ init(_data?: any): void;
2297
+ static fromJS(data: any): EvergreenFund;
2298
+ toJSON(data?: any): any;
2299
+ }
2300
+ /** Represents an evergreen fund. */
2301
+ export interface IEvergreenFund {
2302
+ /** Unique identification number for Evergreen Fund */
2303
+ id: string;
2304
+ /** Official name of the Evergreen Fund */
2305
+ fundName: string | undefined;
2306
+ /** Manager of the Evergreen Fund */
2307
+ manager: string | undefined;
2308
+ /** Year of inception for the Evergreen Fund */
2309
+ inception?: number;
2310
+ /** Deal type focus of the Evergreen Fund */
2311
+ dealTypeFocus?: string | undefined;
2312
+ /** Strategy focus of the Evergreen Fund */
2313
+ strategyFocus?: string | undefined;
2314
+ /** Management fee charged by the Evergreen Fund */
2315
+ managementFee?: number;
2316
+ /** Type of the Evergreen Fund */
2317
+ fundType?: string | undefined;
2318
+ /** Registration status of the Evergreen Fund */
2319
+ registration?: string | undefined;
2320
+ /** Frequency at which repurchases occur */
2321
+ repurchaseFrequency?: string | undefined;
2322
+ /** Frequency at which subscriptions occur */
2323
+ subscriptionFrequency?: string | undefined;
2324
+ }
2325
+ export declare class EvergreenFundApiResponse implements IEvergreenFundApiResponse {
2326
+ items?: EvergreenFund[] | undefined;
2327
+ pagination?: Pagination | undefined;
2328
+ constructor(data?: IEvergreenFundApiResponse);
2329
+ init(_data?: any): void;
2330
+ static fromJS(data: any): EvergreenFundApiResponse;
2331
+ toJSON(data?: any): any;
2332
+ }
2333
+ export interface IEvergreenFundApiResponse {
2334
+ items?: EvergreenFund[] | undefined;
2335
+ pagination?: Pagination | undefined;
2336
+ }
2337
+ /** Represents news data for an evergreen fund. */
2338
+ export declare class EvergreenNews implements IEvergreenNews {
2339
+ /** Unique identification number for Evergreen News */
2340
+ id: string;
2341
+ /** ID of the associated Evergreen Fund (optional) */
2342
+ evergreenFundId?: string | undefined;
2343
+ /** Name of the fund */
2344
+ fundName: string | undefined;
2345
+ /** Title of the news article */
2346
+ title: string | undefined;
2347
+ /** Short description or subtitle (strap line) */
2348
+ strap: string | undefined;
2349
+ /** URL link to the full article */
2350
+ url: string | undefined;
2351
+ /** Full article content */
2352
+ article: string | undefined;
2353
+ /** Date the article was published */
2354
+ publishDate?: Date;
2355
+ constructor(data?: IEvergreenNews);
2356
+ init(_data?: any): void;
2357
+ static fromJS(data: any): EvergreenNews;
2358
+ toJSON(data?: any): any;
2359
+ }
2360
+ /** Represents news data for an evergreen fund. */
2361
+ export interface IEvergreenNews {
2362
+ /** Unique identification number for Evergreen News */
2363
+ id: string;
2364
+ /** ID of the associated Evergreen Fund (optional) */
2365
+ evergreenFundId?: string | undefined;
2366
+ /** Name of the fund */
2367
+ fundName: string | undefined;
2368
+ /** Title of the news article */
2369
+ title: string | undefined;
2370
+ /** Short description or subtitle (strap line) */
2371
+ strap: string | undefined;
2372
+ /** URL link to the full article */
2373
+ url: string | undefined;
2374
+ /** Full article content */
2375
+ article: string | undefined;
2376
+ /** Date the article was published */
2377
+ publishDate?: Date;
2378
+ }
2379
+ export declare class EvergreenNewsApiResponse implements IEvergreenNewsApiResponse {
2380
+ items?: EvergreenNews[] | undefined;
2381
+ pagination?: Pagination | undefined;
2382
+ constructor(data?: IEvergreenNewsApiResponse);
2383
+ init(_data?: any): void;
2384
+ static fromJS(data: any): EvergreenNewsApiResponse;
2385
+ toJSON(data?: any): any;
2386
+ }
2387
+ export interface IEvergreenNewsApiResponse {
2388
+ items?: EvergreenNews[] | undefined;
2389
+ pagination?: Pagination | undefined;
2390
+ }
2391
+ /** Represents returns data for an evergreen fund. */
2392
+ export declare class EvergreenReturns implements IEvergreenReturns {
2393
+ /** Unique identification number for Evergreen Returns */
2394
+ id: string;
2395
+ /** ID of the associated Evergreen Fund (optional) */
2396
+ evergreenFundId?: string | undefined;
2397
+ /** Name of the fund */
2398
+ fundName: string | undefined;
2399
+ /** Returns since inception (as percentage) */
2400
+ sinceInception?: number;
2401
+ /** One year returns (as percentage) */
2402
+ oneYear?: number;
2403
+ constructor(data?: IEvergreenReturns);
2404
+ init(_data?: any): void;
2405
+ static fromJS(data: any): EvergreenReturns;
2406
+ toJSON(data?: any): any;
2407
+ }
2408
+ /** Represents returns data for an evergreen fund. */
2409
+ export interface IEvergreenReturns {
2410
+ /** Unique identification number for Evergreen Returns */
2411
+ id: string;
2412
+ /** ID of the associated Evergreen Fund (optional) */
2413
+ evergreenFundId?: string | undefined;
2414
+ /** Name of the fund */
2415
+ fundName: string | undefined;
2416
+ /** Returns since inception (as percentage) */
2417
+ sinceInception?: number;
2418
+ /** One year returns (as percentage) */
2419
+ oneYear?: number;
2420
+ }
2421
+ export declare class EvergreenReturnsApiResponse implements IEvergreenReturnsApiResponse {
2422
+ items?: EvergreenReturns[] | undefined;
2423
+ pagination?: Pagination | undefined;
2424
+ constructor(data?: IEvergreenReturnsApiResponse);
2425
+ init(_data?: any): void;
2426
+ static fromJS(data: any): EvergreenReturnsApiResponse;
2427
+ toJSON(data?: any): any;
2428
+ }
2429
+ export interface IEvergreenReturnsApiResponse {
2430
+ items?: EvergreenReturns[] | undefined;
2431
+ pagination?: Pagination | undefined;
2432
+ }
2433
+ /** Represents share class data for an evergreen fund. */
2434
+ export declare class EvergreenShareClasses implements IEvergreenShareClasses {
2435
+ /** Unique identification number for Evergreen Share Classes */
2436
+ id: string;
2437
+ /** ID of the associated Evergreen Fund (optional) */
2438
+ evergreenFundId?: string | undefined;
2439
+ /** Name of the fund */
2440
+ fundName: string | undefined;
2441
+ /** Share class ticker symbol */
2442
+ shareClassTicker: string | undefined;
2443
+ /** Minimum initial investment size */
2444
+ minInvestmentSize?: number;
2445
+ /** Minimum subsequent investment amount */
2446
+ minSubsequentInvestment?: number;
2447
+ /** Sales load percentage or amount */
2448
+ salesLoad?: number;
2449
+ /** Distribution and servicing fee (12b-1 fee) */
2450
+ distributionAndServicingFee?: number;
2451
+ /** Early repurchase or redemption fee */
2452
+ earlyRepurchaseOrRedemptionFee?: number;
2453
+ /** Status of the share class (e.g., Active, Inactive, Closed) */
2454
+ status: string | undefined;
2455
+ constructor(data?: IEvergreenShareClasses);
2456
+ init(_data?: any): void;
2457
+ static fromJS(data: any): EvergreenShareClasses;
2458
+ toJSON(data?: any): any;
2459
+ }
2460
+ /** Represents share class data for an evergreen fund. */
2461
+ export interface IEvergreenShareClasses {
2462
+ /** Unique identification number for Evergreen Share Classes */
2463
+ id: string;
2464
+ /** ID of the associated Evergreen Fund (optional) */
2465
+ evergreenFundId?: string | undefined;
2466
+ /** Name of the fund */
2467
+ fundName: string | undefined;
2468
+ /** Share class ticker symbol */
2469
+ shareClassTicker: string | undefined;
2470
+ /** Minimum initial investment size */
2471
+ minInvestmentSize?: number;
2472
+ /** Minimum subsequent investment amount */
2473
+ minSubsequentInvestment?: number;
2474
+ /** Sales load percentage or amount */
2475
+ salesLoad?: number;
2476
+ /** Distribution and servicing fee (12b-1 fee) */
2477
+ distributionAndServicingFee?: number;
2478
+ /** Early repurchase or redemption fee */
2479
+ earlyRepurchaseOrRedemptionFee?: number;
2480
+ /** Status of the share class (e.g., Active, Inactive, Closed) */
2481
+ status: string | undefined;
2482
+ }
2483
+ export declare class EvergreenShareClassesApiResponse implements IEvergreenShareClassesApiResponse {
2484
+ items?: EvergreenShareClasses[] | undefined;
2485
+ pagination?: Pagination | undefined;
2486
+ constructor(data?: IEvergreenShareClassesApiResponse);
2487
+ init(_data?: any): void;
2488
+ static fromJS(data: any): EvergreenShareClassesApiResponse;
2489
+ toJSON(data?: any): any;
2490
+ }
2491
+ export interface IEvergreenShareClassesApiResponse {
2492
+ items?: EvergreenShareClasses[] | undefined;
2493
+ pagination?: Pagination | undefined;
2494
+ }
2161
2495
  /** Represents a fee structure that can be associated with either a registered fund or a share class. */
2162
2496
  export declare class FeeStructure implements IFeeStructure {
2163
2497
  /** Unique ID of the fee structure. */
@@ -7434,6 +7768,22 @@ export declare enum SortOrder19 {
7434
7768
  Ascending = "Ascending",
7435
7769
  Descending = "Descending"
7436
7770
  }
7771
+ export declare enum SortOrder20 {
7772
+ Ascending = "Ascending",
7773
+ Descending = "Descending"
7774
+ }
7775
+ export declare enum SortOrder21 {
7776
+ Ascending = "Ascending",
7777
+ Descending = "Descending"
7778
+ }
7779
+ export declare enum SortOrder22 {
7780
+ Ascending = "Ascending",
7781
+ Descending = "Descending"
7782
+ }
7783
+ export declare enum SortOrder23 {
7784
+ Ascending = "Ascending",
7785
+ Descending = "Descending"
7786
+ }
7437
7787
  export declare enum EventType {
7438
7788
  PreIPOCompany = "PreIPOCompany",
7439
7789
  PreIPOCompanyInvestment = "PreIPOCompanyInvestment",
@@ -7442,7 +7792,10 @@ export declare enum EventType {
7442
7792
  Document = "Document",
7443
7793
  InvestorSubscriptionAction = "InvestorSubscriptionAction",
7444
7794
  SubscriptionStatus = "SubscriptionStatus",
7445
- RegisteredFundSubscriptionStatus = "RegisteredFundSubscriptionStatus"
7795
+ RegisteredFundSubscriptionStatus = "RegisteredFundSubscriptionStatus",
7796
+ PreIPOCompanySPVUpdate = "PreIPOCompanySPVUpdate",
7797
+ PreIPOCompanySPVDocumentUpdate = "PreIPOCompanySPVDocumentUpdate",
7798
+ PreIPOCompanySPVSubscriptionActionDefinitionUpdate = "PreIPOCompanySPVSubscriptionActionDefinitionUpdate"
7446
7799
  }
7447
7800
  export declare enum DeliveryStatus {
7448
7801
  Pending = "Pending",
@@ -7817,13 +8170,9 @@ export declare enum InvestorSubscriptionActionStatus {
7817
8170
  Complete = "Complete"
7818
8171
  }
7819
8172
  export declare enum InvestorSubscriptionActionType {
7820
- Other = "Other",
7821
8173
  DocumentSign = "DocumentSign",
7822
8174
  DocumentAcknowledge = "DocumentAcknowledge",
7823
- CashMovement = "CashMovement",
7824
- ApiCall = "ApiCall",
7825
- TextAcknowledge = "TextAcknowledge",
7826
- KYCAML = "KYCAML"
8175
+ TextAcknowledge = "TextAcknowledge"
7827
8176
  }
7828
8177
  export declare enum InvestorSubscriptionActionResponsibleParty {
7829
8178
  Partner = "Partner",
@@ -8234,13 +8583,9 @@ export declare enum RegisteredFundSubscriptionActionStatus {
8234
8583
  Complete = "Complete"
8235
8584
  }
8236
8585
  export declare enum RegisteredFundSubscriptionActionType {
8237
- Other = "Other",
8238
8586
  DocumentSign = "DocumentSign",
8239
8587
  DocumentAcknowledge = "DocumentAcknowledge",
8240
- CashMovement = "CashMovement",
8241
- ApiCall = "ApiCall",
8242
- TextAcknowledge = "TextAcknowledge",
8243
- KYCAML = "KYCAML"
8588
+ TextAcknowledge = "TextAcknowledge"
8244
8589
  }
8245
8590
  export declare enum RegisteredFundSubscriptionActionResponsibleParty {
8246
8591
  Partner = "Partner",
@@ -8435,7 +8780,10 @@ export declare enum WebhookEventEventType {
8435
8780
  Document = "Document",
8436
8781
  InvestorSubscriptionAction = "InvestorSubscriptionAction",
8437
8782
  SubscriptionStatus = "SubscriptionStatus",
8438
- RegisteredFundSubscriptionStatus = "RegisteredFundSubscriptionStatus"
8783
+ RegisteredFundSubscriptionStatus = "RegisteredFundSubscriptionStatus",
8784
+ PreIPOCompanySPVUpdate = "PreIPOCompanySPVUpdate",
8785
+ PreIPOCompanySPVDocumentUpdate = "PreIPOCompanySPVDocumentUpdate",
8786
+ PreIPOCompanySPVSubscriptionActionDefinitionUpdate = "PreIPOCompanySPVSubscriptionActionDefinitionUpdate"
8439
8787
  }
8440
8788
  export interface FileResponse {
8441
8789
  data: Blob;