@monarkmarkets/api-client 1.2.4 → 1.2.6

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.
Files changed (3) hide show
  1. package/dist/Client.d.ts +1613 -21
  2. package/dist/Client.js +2691 -30
  3. package/package.json +1 -1
package/dist/Client.d.ts CHANGED
@@ -472,6 +472,16 @@ export declare class Client {
472
472
  */
473
473
  partner(): Promise<Partner>;
474
474
  protected processPartner(response: Response): Promise<Partner>;
475
+ /**
476
+ * Generates a pdf from the template and the provided data mapping fields.
477
+ * @param id The document template Id.
478
+ * @param body (optional) The mapping fields and their values that are to be merged into the template.
479
+ * @return OK
480
+ */
481
+ generateDocument(id: string, body: {
482
+ [key: string]: string;
483
+ } | undefined): Promise<FileResponse>;
484
+ protected processGenerateDocument(response: Response): Promise<FileResponse>;
475
485
  /**
476
486
  * Gets a PMI feed pricing record by ID.
477
487
  * @param id The PMI feed pricing ID.
@@ -675,6 +685,51 @@ export declare class Client {
675
685
  */
676
686
  investorGET6(investorId: string, monarkStage: MonarkStage | undefined, exemptionsClaimed: ExemptionsClaimed[] | undefined, nameFilter: string | undefined, preIPOCompanyId: string | undefined, preIPOCompanyInvestmentId: string | undefined, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder12 | undefined, sortBy: SortBy2 | undefined): Promise<PreIPOCompanySPVApiResponse>;
677
687
  protected processInvestorGET6(response: Response): Promise<PreIPOCompanySPVApiResponse>;
688
+ /**
689
+ * Gets all SPVs that have been approved.
690
+ * @param pageNumber (optional) Page number for pagination.
691
+ * @param pageSize (optional) Page size for pagination.
692
+ * @return Returns the list of approved SPVs.
693
+ */
694
+ spvs(pageNumber: number | undefined, pageSize: number | undefined): Promise<PreIPOCompanySPVApiResponse>;
695
+ protected processSpvs(response: Response): Promise<PreIPOCompanySPVApiResponse>;
696
+ /**
697
+ * Checks if a specific SPV has been approved.
698
+ * @param spvId ID of the SPV.
699
+ * @return Returns whether approval exists.
700
+ */
701
+ isApproved(spvId: string): Promise<boolean>;
702
+ protected processIsApproved(response: Response): Promise<boolean>;
703
+ /**
704
+ * Approves an SPV.
705
+ * @param spvId ID of the SPV.
706
+ * @param body (optional) Approval request containing optional notes.
707
+ * @return SPV successfully approved.
708
+ */
709
+ approve(spvId: string, body: CreatePreIPOCompanySPVPartnerApproval | undefined): Promise<boolean>;
710
+ protected processApprove(response: Response): Promise<boolean>;
711
+ /**
712
+ * Gets the approval record for a specific SPV.
713
+ * @param spvId ID of the SPV.
714
+ * @return Returns the approval record.
715
+ */
716
+ approval(spvId: string): Promise<PreIPOCompanySPVPartnerApproval>;
717
+ protected processApproval(response: Response): Promise<PreIPOCompanySPVPartnerApproval>;
718
+ /**
719
+ * Gets an approval record by Id.
720
+ * @return Returns an approval record.
721
+ */
722
+ preIpoCompanySpvPartnerApproval(approvalId: string): Promise<PreIPOCompanySPVPartnerApproval>;
723
+ protected processPreIpoCompanySpvPartnerApproval(response: Response): Promise<PreIPOCompanySPVPartnerApproval>;
724
+ /**
725
+ * Gets all approval records with optional filtering.
726
+ * @param pageNumber (optional) Page number for pagination.
727
+ * @param pageSize (optional) Page size for pagination.
728
+ * @param sortOrder (optional) Sort order for results.
729
+ * @return Returns the list of approval records.
730
+ */
731
+ preIpoCompanySpvPartnerApproval2(pageNumber: number | undefined, pageSize: number | undefined, sortOrder: SortOrder13 | undefined): Promise<PreIPOCompanySPVPartnerApprovalApiResponse>;
732
+ protected processPreIpoCompanySpvPartnerApproval2(response: Response): Promise<PreIPOCompanySPVPartnerApprovalApiResponse>;
678
733
  /**
679
734
  * @param body (optional)
680
735
  * @return Created
@@ -694,7 +749,7 @@ export declare class Client {
694
749
  * @param sortOrder (optional)
695
750
  * @return Returns the list of Questionnaires.
696
751
  */
697
- questionnaireGET(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder13 | undefined): Promise<QuestionnaireApiResponse>;
752
+ questionnaireGET(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder14 | undefined): Promise<QuestionnaireApiResponse>;
698
753
  protected processQuestionnaireGET(response: Response): Promise<QuestionnaireApiResponse>;
699
754
  /**
700
755
  * @return No Content
@@ -715,13 +770,24 @@ export declare class Client {
715
770
  */
716
771
  questionnaireAnswerPOST(body: CreateQuestionnaireAnswer | undefined): Promise<QuestionnaireAnswer>;
717
772
  protected processQuestionnaireAnswerPOST(response: Response): Promise<QuestionnaireAnswer>;
773
+ /**
774
+ * Get all QuestionnaireAnswers.
775
+ * @param investorId (optional) Optional filter by Investor ID.
776
+ * @param questionnaireId (optional) Optional filter by Questionnaire ID.
777
+ * @param page (optional)
778
+ * @param pageSize (optional)
779
+ * @param sortOrder (optional)
780
+ * @return Returns the list of Questionnaire.
781
+ */
782
+ questionnaireAnswerGET(investorId: string | undefined, questionnaireId: string | undefined, page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder15 | undefined): Promise<QuestionnaireAnswerApiResponse>;
783
+ protected processQuestionnaireAnswerGET(response: Response): Promise<QuestionnaireAnswerApiResponse>;
718
784
  /**
719
785
  * Get a QuestionnaireAnswer by Id
720
786
  * @param id ID of the QuestionnaireAnswer to find.
721
787
  * @return Returns the QuestionnaireAnswer with the specified Id.
722
788
  */
723
- questionnaireAnswerGET(id: string): Promise<QuestionnaireAnswer>;
724
- protected processQuestionnaireAnswerGET(response: Response): Promise<QuestionnaireAnswer>;
789
+ questionnaireAnswerGET2(id: string): Promise<QuestionnaireAnswer>;
790
+ protected processQuestionnaireAnswerGET2(response: Response): Promise<QuestionnaireAnswer>;
725
791
  /**
726
792
  * Get the RegisteredFund by the specified Id.
727
793
  * @param id ID of the RegisteredFund to find.
@@ -738,7 +804,7 @@ export declare class Client {
738
804
  * @param pageSize (optional) The maximum number of items to return in each page, defaults to 25.
739
805
  * @return OK
740
806
  */
741
- registeredFund2(searchTerm: string | undefined, sortOrder: SortOrder14 | undefined, page: number | undefined, pageSize: number | undefined): Promise<RegisteredFundApiResponse>;
807
+ registeredFund2(searchTerm: string | undefined, sortOrder: SortOrder16 | undefined, page: number | undefined, pageSize: number | undefined): Promise<RegisteredFundApiResponse>;
742
808
  protected processRegisteredFund2(response: Response): Promise<RegisteredFundApiResponse>;
743
809
  /**
744
810
  * Creates a new registered fund subscription.
@@ -756,7 +822,7 @@ export declare class Client {
756
822
  * @param sortOrder (optional) Sort order for results (default: Descending).
757
823
  * @return OK
758
824
  */
759
- registeredFundSubscriptionGET(registeredFundId: string | undefined, investorId: string | undefined, pageNumber: number | undefined, pageSize: number | undefined, sortOrder: SortOrder15 | undefined): Promise<RegisteredFundSubscriptionApiResponse>;
825
+ registeredFundSubscriptionGET(registeredFundId: string | undefined, investorId: string | undefined, pageNumber: number | undefined, pageSize: number | undefined, sortOrder: SortOrder17 | undefined): Promise<RegisteredFundSubscriptionApiResponse>;
760
826
  protected processRegisteredFundSubscriptionGET(response: Response): Promise<RegisteredFundSubscriptionApiResponse>;
761
827
  /**
762
828
  * Gets a subscription by ID.
@@ -838,7 +904,7 @@ export declare class Client {
838
904
  * @param sortOrder (optional) Order of which to sort the webhooks by. Default is Descending
839
905
  * @return Returns a list of Webhooks.
840
906
  */
841
- webhookGET(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder16 | undefined): Promise<WebhookApiResponse>;
907
+ webhookGET(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder18 | undefined): Promise<WebhookApiResponse>;
842
908
  protected processWebhookGET(response: Response): Promise<WebhookApiResponse>;
843
909
  /**
844
910
  * Update a Webhook’s Information
@@ -873,7 +939,7 @@ export declare class Client {
873
939
  * @param pageSize (optional)
874
940
  * @return Returns a list of Webhook Events.
875
941
  */
876
- events(id: string, from: Date, to: Date, sortOrder: SortOrder17 | undefined, eventType: EventType | undefined, deliveryStatus: DeliveryStatus | undefined, page: number | undefined, pageSize: number | undefined): Promise<WebhookEventApiResponse>;
942
+ events(id: string, from: Date, to: Date, sortOrder: SortOrder19 | undefined, eventType: EventType | undefined, deliveryStatus: DeliveryStatus | undefined, page: number | undefined, pageSize: number | undefined): Promise<WebhookEventApiResponse>;
877
943
  protected processEvents(response: Response): Promise<WebhookEventApiResponse>;
878
944
  }
879
945
  /** Represents the version information of the API */
@@ -890,6 +956,50 @@ export interface IApiVersion {
890
956
  /** The version of the API */
891
957
  version?: string | undefined;
892
958
  }
959
+ export declare class Assembly implements IAssembly {
960
+ readonly definedTypes?: TypeInfo[] | undefined;
961
+ readonly exportedTypes?: Type[] | undefined;
962
+ readonly codeBase?: string | undefined;
963
+ readonly entryPoint?: MethodInfo | undefined;
964
+ readonly fullName?: string | undefined;
965
+ readonly imageRuntimeVersion?: string | undefined;
966
+ readonly isDynamic?: boolean;
967
+ readonly location?: string | undefined;
968
+ readonly reflectionOnly?: boolean;
969
+ readonly isCollectible?: boolean;
970
+ readonly isFullyTrusted?: boolean;
971
+ readonly customAttributes?: CustomAttributeData[] | undefined;
972
+ readonly escapedCodeBase?: string | undefined;
973
+ readonly manifestModule?: Module | undefined;
974
+ readonly modules?: Module[] | undefined;
975
+ readonly globalAssemblyCache?: boolean;
976
+ readonly hostContext?: number;
977
+ readonly securityRuleSet?: AssemblySecurityRuleSet;
978
+ constructor(data?: IAssembly);
979
+ init(_data?: any): void;
980
+ static fromJS(data: any): Assembly;
981
+ toJSON(data?: any): any;
982
+ }
983
+ export interface IAssembly {
984
+ definedTypes?: TypeInfo[] | undefined;
985
+ exportedTypes?: Type[] | undefined;
986
+ codeBase?: string | undefined;
987
+ entryPoint?: MethodInfo | undefined;
988
+ fullName?: string | undefined;
989
+ imageRuntimeVersion?: string | undefined;
990
+ isDynamic?: boolean;
991
+ location?: string | undefined;
992
+ reflectionOnly?: boolean;
993
+ isCollectible?: boolean;
994
+ isFullyTrusted?: boolean;
995
+ customAttributes?: CustomAttributeData[] | undefined;
996
+ escapedCodeBase?: string | undefined;
997
+ manifestModule?: Module | undefined;
998
+ modules?: Module[] | undefined;
999
+ globalAssemblyCache?: boolean;
1000
+ hostContext?: number;
1001
+ securityRuleSet?: AssemblySecurityRuleSet;
1002
+ }
893
1003
  export declare class BulkPreIPOCompany implements IBulkPreIPOCompany {
894
1004
  /** Unique ID associated with a PreIPOCompany. */
895
1005
  id: string;
@@ -1123,6 +1233,12 @@ export declare class BulkPreIPOCompanySPV implements IBulkPreIPOCompanySPV {
1123
1233
  investorFeePerShare?: number | undefined;
1124
1234
  /** The total amount per share that an Investor will pay, including fees, when they invest in an SPV. */
1125
1235
  allInPricePerShare?: number | undefined;
1236
+ /** The admin fee associated with this SPV, if the fund admin expense is not being paid out of the management fee. If the fund admin expense is being paid out of the management fee, leave this blank. */
1237
+ fundAdminExpense?: number | undefined;
1238
+ /** The total expense reserve associated with this SPV, if the expense reserve is not being paid out of the admin expense. If the fund admin expense is being paid out of the management fee, leave this blank. */
1239
+ expenseReserve?: number | undefined;
1240
+ /** Flag that describes whether the holdback expenses will be passed through to investors */
1241
+ holdbackEnabled?: boolean;
1126
1242
  /** The base documents associated with the SPV (Optional). */
1127
1243
  documents?: Document[] | undefined;
1128
1244
  /** SPV account ID. */
@@ -1135,6 +1251,8 @@ export declare class BulkPreIPOCompanySPV implements IBulkPreIPOCompanySPV {
1135
1251
  coManagers?: Partner[] | undefined;
1136
1252
  /** Optional carry interest. */
1137
1253
  carry?: number | undefined;
1254
+ /** Estimated go live date of the SPV. If the exact go live date is not known, an estimate will be provided. */
1255
+ goLiveDate?: Date | undefined;
1138
1256
  /** List of allowed financial institution IDs for this SPV. */
1139
1257
  allowedFinancialInstitutions?: string[] | undefined;
1140
1258
  constructor(data?: IBulkPreIPOCompanySPV);
@@ -1201,6 +1319,12 @@ export interface IBulkPreIPOCompanySPV {
1201
1319
  investorFeePerShare?: number | undefined;
1202
1320
  /** The total amount per share that an Investor will pay, including fees, when they invest in an SPV. */
1203
1321
  allInPricePerShare?: number | undefined;
1322
+ /** The admin fee associated with this SPV, if the fund admin expense is not being paid out of the management fee. If the fund admin expense is being paid out of the management fee, leave this blank. */
1323
+ fundAdminExpense?: number | undefined;
1324
+ /** The total expense reserve associated with this SPV, if the expense reserve is not being paid out of the admin expense. If the fund admin expense is being paid out of the management fee, leave this blank. */
1325
+ expenseReserve?: number | undefined;
1326
+ /** Flag that describes whether the holdback expenses will be passed through to investors */
1327
+ holdbackEnabled?: boolean;
1204
1328
  /** The base documents associated with the SPV (Optional). */
1205
1329
  documents?: Document[] | undefined;
1206
1330
  /** SPV account ID. */
@@ -1213,6 +1337,8 @@ export interface IBulkPreIPOCompanySPV {
1213
1337
  coManagers?: Partner[] | undefined;
1214
1338
  /** Optional carry interest. */
1215
1339
  carry?: number | undefined;
1340
+ /** Estimated go live date of the SPV. If the exact go live date is not known, an estimate will be provided. */
1341
+ goLiveDate?: Date | undefined;
1216
1342
  /** List of allowed financial institution IDs for this SPV. */
1217
1343
  allowedFinancialInstitutions?: string[] | undefined;
1218
1344
  }
@@ -1236,6 +1362,114 @@ export interface ICitation {
1236
1362
  /** Updated at the specified date. */
1237
1363
  updatedAt?: Date | undefined;
1238
1364
  }
1365
+ export declare class ConstructorInfo implements IConstructorInfo {
1366
+ readonly name?: string | undefined;
1367
+ readonly declaringType?: Type | undefined;
1368
+ readonly reflectedType?: Type | undefined;
1369
+ readonly module?: Module | undefined;
1370
+ readonly customAttributes?: CustomAttributeData[] | undefined;
1371
+ readonly isCollectible?: boolean;
1372
+ readonly metadataToken?: number;
1373
+ readonly attributes?: ConstructorInfoAttributes;
1374
+ readonly methodImplementationFlags?: ConstructorInfoMethodImplementationFlags;
1375
+ readonly callingConvention?: ConstructorInfoCallingConvention;
1376
+ readonly isAbstract?: boolean;
1377
+ readonly isConstructor?: boolean;
1378
+ readonly isFinal?: boolean;
1379
+ readonly isHideBySig?: boolean;
1380
+ readonly isSpecialName?: boolean;
1381
+ readonly isStatic?: boolean;
1382
+ readonly isVirtual?: boolean;
1383
+ readonly isAssembly?: boolean;
1384
+ readonly isFamily?: boolean;
1385
+ readonly isFamilyAndAssembly?: boolean;
1386
+ readonly isFamilyOrAssembly?: boolean;
1387
+ readonly isPrivate?: boolean;
1388
+ readonly isPublic?: boolean;
1389
+ readonly isConstructedGenericMethod?: boolean;
1390
+ readonly isGenericMethod?: boolean;
1391
+ readonly isGenericMethodDefinition?: boolean;
1392
+ readonly containsGenericParameters?: boolean;
1393
+ readonly methodHandle?: RuntimeMethodHandle;
1394
+ readonly isSecurityCritical?: boolean;
1395
+ readonly isSecuritySafeCritical?: boolean;
1396
+ readonly isSecurityTransparent?: boolean;
1397
+ readonly memberType?: ConstructorInfoMemberType;
1398
+ constructor(data?: IConstructorInfo);
1399
+ init(_data?: any): void;
1400
+ static fromJS(data: any): ConstructorInfo;
1401
+ toJSON(data?: any): any;
1402
+ }
1403
+ export interface IConstructorInfo {
1404
+ name?: string | undefined;
1405
+ declaringType?: Type | undefined;
1406
+ reflectedType?: Type | undefined;
1407
+ module?: Module | undefined;
1408
+ customAttributes?: CustomAttributeData[] | undefined;
1409
+ isCollectible?: boolean;
1410
+ metadataToken?: number;
1411
+ attributes?: ConstructorInfoAttributes;
1412
+ methodImplementationFlags?: ConstructorInfoMethodImplementationFlags;
1413
+ callingConvention?: ConstructorInfoCallingConvention;
1414
+ isAbstract?: boolean;
1415
+ isConstructor?: boolean;
1416
+ isFinal?: boolean;
1417
+ isHideBySig?: boolean;
1418
+ isSpecialName?: boolean;
1419
+ isStatic?: boolean;
1420
+ isVirtual?: boolean;
1421
+ isAssembly?: boolean;
1422
+ isFamily?: boolean;
1423
+ isFamilyAndAssembly?: boolean;
1424
+ isFamilyOrAssembly?: boolean;
1425
+ isPrivate?: boolean;
1426
+ isPublic?: boolean;
1427
+ isConstructedGenericMethod?: boolean;
1428
+ isGenericMethod?: boolean;
1429
+ isGenericMethodDefinition?: boolean;
1430
+ containsGenericParameters?: boolean;
1431
+ methodHandle?: RuntimeMethodHandle;
1432
+ isSecurityCritical?: boolean;
1433
+ isSecuritySafeCritical?: boolean;
1434
+ isSecurityTransparent?: boolean;
1435
+ memberType?: ConstructorInfoMemberType;
1436
+ }
1437
+ export declare class Cookie implements ICookie {
1438
+ comment?: string | undefined;
1439
+ commentUri?: string | undefined;
1440
+ httpOnly?: boolean;
1441
+ discard?: boolean;
1442
+ domain?: string | undefined;
1443
+ expired?: boolean;
1444
+ expires?: Date;
1445
+ name?: string | undefined;
1446
+ path?: string | undefined;
1447
+ port?: string | undefined;
1448
+ secure?: boolean;
1449
+ readonly timeStamp?: Date;
1450
+ value?: string | undefined;
1451
+ version?: number;
1452
+ constructor(data?: ICookie);
1453
+ init(_data?: any): void;
1454
+ static fromJS(data: any): Cookie;
1455
+ toJSON(data?: any): any;
1456
+ }
1457
+ export interface ICookie {
1458
+ comment?: string | undefined;
1459
+ commentUri?: string | undefined;
1460
+ httpOnly?: boolean;
1461
+ discard?: boolean;
1462
+ domain?: string | undefined;
1463
+ expired?: boolean;
1464
+ expires?: Date;
1465
+ name?: string | undefined;
1466
+ path?: string | undefined;
1467
+ port?: string | undefined;
1468
+ secure?: boolean;
1469
+ timeStamp?: Date;
1470
+ value?: string | undefined;
1471
+ version?: number;
1472
+ }
1239
1473
  export declare class CreateFinancialAdvisor implements ICreateFinancialAdvisor {
1240
1474
  /** This is the unique identifier of the Institution that the Financial Advisor is attached to. */
1241
1475
  financialInstitutionId?: string;
@@ -1412,6 +1646,16 @@ export interface ICreateInvestorSubscription {
1412
1646
  /** The reference ID of an order submitted. */
1413
1647
  orderReferenceId?: string | undefined;
1414
1648
  }
1649
+ export declare class CreatePreIPOCompanySPVPartnerApproval implements ICreatePreIPOCompanySPVPartnerApproval {
1650
+ notes?: string | undefined;
1651
+ constructor(data?: ICreatePreIPOCompanySPVPartnerApproval);
1652
+ init(_data?: any): void;
1653
+ static fromJS(data: any): CreatePreIPOCompanySPVPartnerApproval;
1654
+ toJSON(data?: any): any;
1655
+ }
1656
+ export interface ICreatePreIPOCompanySPVPartnerApproval {
1657
+ notes?: string | undefined;
1658
+ }
1415
1659
  /** Create Questionnaire allows the creation of a questionaire with the primary offerring. */
1416
1660
  export declare class CreateQuestionnaire implements ICreateQuestionnaire {
1417
1661
  /** Name of Questionnaire. */
@@ -1562,6 +1806,50 @@ export interface ICreateWebhook {
1562
1806
  /** Token value used to create a signature on webhook delivery. */
1563
1807
  token: string;
1564
1808
  }
1809
+ export declare class CustomAttributeData implements ICustomAttributeData {
1810
+ readonly attributeType?: Type | undefined;
1811
+ readonly constructor_?: ConstructorInfo | undefined;
1812
+ readonly constructorArguments?: CustomAttributeTypedArgument[] | undefined;
1813
+ readonly namedArguments?: CustomAttributeNamedArgument[] | undefined;
1814
+ constructor(data?: ICustomAttributeData);
1815
+ init(_data?: any): void;
1816
+ static fromJS(data: any): CustomAttributeData;
1817
+ toJSON(data?: any): any;
1818
+ }
1819
+ export interface ICustomAttributeData {
1820
+ attributeType?: Type | undefined;
1821
+ constructor_?: ConstructorInfo | undefined;
1822
+ constructorArguments?: CustomAttributeTypedArgument[] | undefined;
1823
+ namedArguments?: CustomAttributeNamedArgument[] | undefined;
1824
+ }
1825
+ export declare class CustomAttributeNamedArgument implements ICustomAttributeNamedArgument {
1826
+ memberInfo?: MemberInfo | undefined;
1827
+ readonly typedValue?: CustomAttributeTypedArgument;
1828
+ readonly memberName?: string | undefined;
1829
+ readonly isField?: boolean;
1830
+ constructor(data?: ICustomAttributeNamedArgument);
1831
+ init(_data?: any): void;
1832
+ static fromJS(data: any): CustomAttributeNamedArgument;
1833
+ toJSON(data?: any): any;
1834
+ }
1835
+ export interface ICustomAttributeNamedArgument {
1836
+ memberInfo?: MemberInfo | undefined;
1837
+ typedValue?: CustomAttributeTypedArgument;
1838
+ memberName?: string | undefined;
1839
+ isField?: boolean;
1840
+ }
1841
+ export declare class CustomAttributeTypedArgument implements ICustomAttributeTypedArgument {
1842
+ argumentType?: Type | undefined;
1843
+ value?: any | undefined;
1844
+ constructor(data?: ICustomAttributeTypedArgument);
1845
+ init(_data?: any): void;
1846
+ static fromJS(data: any): CustomAttributeTypedArgument;
1847
+ toJSON(data?: any): any;
1848
+ }
1849
+ export interface ICustomAttributeTypedArgument {
1850
+ argumentType?: Type | undefined;
1851
+ value?: any | undefined;
1852
+ }
1565
1853
  /** Represents a document associated with the fund admin. */
1566
1854
  export declare class Document implements IDocument {
1567
1855
  /** Unique identifier for the document. */
@@ -1754,6 +2042,44 @@ https://github.com/country-regions/country-region-data/blob/master/data.json for
1754
2042
  /** Trust type (nullable). */
1755
2043
  trustType?: EntityInvestorTrustType | undefined;
1756
2044
  }
2045
+ export declare class EventInfo implements IEventInfo {
2046
+ readonly name?: string | undefined;
2047
+ readonly declaringType?: Type | undefined;
2048
+ readonly reflectedType?: Type | undefined;
2049
+ readonly module?: Module | undefined;
2050
+ readonly customAttributes?: CustomAttributeData[] | undefined;
2051
+ readonly isCollectible?: boolean;
2052
+ readonly metadataToken?: number;
2053
+ readonly memberType?: EventInfoMemberType;
2054
+ readonly attributes?: EventInfoAttributes;
2055
+ readonly isSpecialName?: boolean;
2056
+ readonly addMethod?: MethodInfo | undefined;
2057
+ readonly removeMethod?: MethodInfo | undefined;
2058
+ readonly raiseMethod?: MethodInfo | undefined;
2059
+ readonly isMulticast?: boolean;
2060
+ readonly eventHandlerType?: Type | undefined;
2061
+ constructor(data?: IEventInfo);
2062
+ init(_data?: any): void;
2063
+ static fromJS(data: any): EventInfo;
2064
+ toJSON(data?: any): any;
2065
+ }
2066
+ export interface IEventInfo {
2067
+ name?: string | undefined;
2068
+ declaringType?: Type | undefined;
2069
+ reflectedType?: Type | undefined;
2070
+ module?: Module | undefined;
2071
+ customAttributes?: CustomAttributeData[] | undefined;
2072
+ isCollectible?: boolean;
2073
+ metadataToken?: number;
2074
+ memberType?: EventInfoMemberType;
2075
+ attributes?: EventInfoAttributes;
2076
+ isSpecialName?: boolean;
2077
+ addMethod?: MethodInfo | undefined;
2078
+ removeMethod?: MethodInfo | undefined;
2079
+ raiseMethod?: MethodInfo | undefined;
2080
+ isMulticast?: boolean;
2081
+ eventHandlerType?: Type | undefined;
2082
+ }
1757
2083
  /** Represents a fee structure that can be associated with either a registered fund or a share class. */
1758
2084
  export declare class FeeStructure implements IFeeStructure {
1759
2085
  /** Unique ID of the fee structure. */
@@ -1788,6 +2114,66 @@ export interface IFeeStructure {
1788
2114
  /** Text field used to describe the fee structure. */
1789
2115
  description?: string | undefined;
1790
2116
  }
2117
+ export declare class FieldInfo implements IFieldInfo {
2118
+ readonly name?: string | undefined;
2119
+ readonly declaringType?: Type | undefined;
2120
+ readonly reflectedType?: Type | undefined;
2121
+ readonly module?: Module | undefined;
2122
+ readonly customAttributes?: CustomAttributeData[] | undefined;
2123
+ readonly isCollectible?: boolean;
2124
+ readonly metadataToken?: number;
2125
+ readonly memberType?: FieldInfoMemberType;
2126
+ readonly attributes?: FieldInfoAttributes;
2127
+ readonly fieldType?: Type | undefined;
2128
+ readonly isInitOnly?: boolean;
2129
+ readonly isLiteral?: boolean;
2130
+ readonly isNotSerialized?: boolean;
2131
+ readonly isPinvokeImpl?: boolean;
2132
+ readonly isSpecialName?: boolean;
2133
+ readonly isStatic?: boolean;
2134
+ readonly isAssembly?: boolean;
2135
+ readonly isFamily?: boolean;
2136
+ readonly isFamilyAndAssembly?: boolean;
2137
+ readonly isFamilyOrAssembly?: boolean;
2138
+ readonly isPrivate?: boolean;
2139
+ readonly isPublic?: boolean;
2140
+ readonly isSecurityCritical?: boolean;
2141
+ readonly isSecuritySafeCritical?: boolean;
2142
+ readonly isSecurityTransparent?: boolean;
2143
+ readonly fieldHandle?: RuntimeFieldHandle;
2144
+ constructor(data?: IFieldInfo);
2145
+ init(_data?: any): void;
2146
+ static fromJS(data: any): FieldInfo;
2147
+ toJSON(data?: any): any;
2148
+ }
2149
+ export interface IFieldInfo {
2150
+ name?: string | undefined;
2151
+ declaringType?: Type | undefined;
2152
+ reflectedType?: Type | undefined;
2153
+ module?: Module | undefined;
2154
+ customAttributes?: CustomAttributeData[] | undefined;
2155
+ isCollectible?: boolean;
2156
+ metadataToken?: number;
2157
+ memberType?: FieldInfoMemberType;
2158
+ attributes?: FieldInfoAttributes;
2159
+ fieldType?: Type | undefined;
2160
+ isInitOnly?: boolean;
2161
+ isLiteral?: boolean;
2162
+ isNotSerialized?: boolean;
2163
+ isPinvokeImpl?: boolean;
2164
+ isSpecialName?: boolean;
2165
+ isStatic?: boolean;
2166
+ isAssembly?: boolean;
2167
+ isFamily?: boolean;
2168
+ isFamilyAndAssembly?: boolean;
2169
+ isFamilyOrAssembly?: boolean;
2170
+ isPrivate?: boolean;
2171
+ isPublic?: boolean;
2172
+ isSecurityCritical?: boolean;
2173
+ isSecuritySafeCritical?: boolean;
2174
+ isSecurityTransparent?: boolean;
2175
+ fieldHandle?: RuntimeFieldHandle;
2176
+ }
1791
2177
  /** FinancialAdvisor represents the financial advisor information. */
1792
2178
  export declare class FinancialAdvisor implements IFinancialAdvisor {
1793
2179
  /** Gets or sets id represents the unique id of the Financial Advisor on the internal system. */
@@ -2014,6 +2400,14 @@ export interface IFundAdvisor {
2014
2400
  /** Main office phone number of fund advisor */
2015
2401
  phone?: string | undefined;
2016
2402
  }
2403
+ export declare class ICustomAttributeProvider implements IICustomAttributeProvider {
2404
+ constructor(data?: IICustomAttributeProvider);
2405
+ init(_data?: any): void;
2406
+ static fromJS(data: any): ICustomAttributeProvider;
2407
+ toJSON(data?: any): any;
2408
+ }
2409
+ export interface IICustomAttributeProvider {
2410
+ }
2017
2411
  /** IndicationOfInterest represents the primary offering information on the IoI. */
2018
2412
  export declare class IndicationOfInterest implements IIndicationOfInterest {
2019
2413
  /** Unique ID associated with an IOI. */
@@ -2494,6 +2888,14 @@ https://github.com/country-regions/country-region-data/blob/master/data.json for
2494
2888
  /** Date that KYC expires. */
2495
2889
  kycUpdatedAt?: Date | undefined;
2496
2890
  }
2891
+ export declare class IntPtr implements IIntPtr {
2892
+ constructor(data?: IIntPtr);
2893
+ init(_data?: any): void;
2894
+ static fromJS(data: any): IntPtr;
2895
+ toJSON(data?: any): any;
2896
+ }
2897
+ export interface IIntPtr {
2898
+ }
2497
2899
  /** Investor represents the primary offering information on the investor. */
2498
2900
  export declare class Investor implements IInvestor {
2499
2901
  /** Unique ID, provided by Monark, associated with an Investor. */
@@ -2609,6 +3011,10 @@ export declare class InvestorSubscription implements IInvestorSubscription {
2609
3011
  partnerName?: string | undefined;
2610
3012
  /** The investor name for this subscription */
2611
3013
  investorName?: string | undefined;
3014
+ /** The Name of the SPV associated with this subscription. */
3015
+ spvName?: string | undefined;
3016
+ /** The Name of the Company associated with the SPV of this subscription. */
3017
+ companyName?: string | undefined;
2612
3018
  /** The reference ID of an order submitted. */
2613
3019
  orderReferenceId?: string | undefined;
2614
3020
  constructor(data?: IInvestorSubscription);
@@ -2637,6 +3043,10 @@ export interface IInvestorSubscription {
2637
3043
  partnerName?: string | undefined;
2638
3044
  /** The investor name for this subscription */
2639
3045
  investorName?: string | undefined;
3046
+ /** The Name of the SPV associated with this subscription. */
3047
+ spvName?: string | undefined;
3048
+ /** The Name of the Company associated with the SPV of this subscription. */
3049
+ companyName?: string | undefined;
2640
3050
  /** The reference ID of an order submitted. */
2641
3051
  orderReferenceId?: string | undefined;
2642
3052
  }
@@ -2770,6 +3180,180 @@ export interface IListing {
2770
3180
  /** Date the company was delisted, if applicable. */
2771
3181
  delistedAt?: Date | undefined;
2772
3182
  }
3183
+ export declare class MemberInfo implements IMemberInfo {
3184
+ readonly memberType?: MemberInfoMemberType;
3185
+ readonly name?: string | undefined;
3186
+ readonly declaringType?: Type | undefined;
3187
+ readonly reflectedType?: Type | undefined;
3188
+ readonly module?: Module | undefined;
3189
+ readonly customAttributes?: CustomAttributeData[] | undefined;
3190
+ readonly isCollectible?: boolean;
3191
+ readonly metadataToken?: number;
3192
+ constructor(data?: IMemberInfo);
3193
+ init(_data?: any): void;
3194
+ static fromJS(data: any): MemberInfo;
3195
+ toJSON(data?: any): any;
3196
+ }
3197
+ export interface IMemberInfo {
3198
+ memberType?: MemberInfoMemberType;
3199
+ name?: string | undefined;
3200
+ declaringType?: Type | undefined;
3201
+ reflectedType?: Type | undefined;
3202
+ module?: Module | undefined;
3203
+ customAttributes?: CustomAttributeData[] | undefined;
3204
+ isCollectible?: boolean;
3205
+ metadataToken?: number;
3206
+ }
3207
+ export declare class MethodBase implements IMethodBase {
3208
+ readonly memberType?: MethodBaseMemberType;
3209
+ readonly name?: string | undefined;
3210
+ readonly declaringType?: Type | undefined;
3211
+ readonly reflectedType?: Type | undefined;
3212
+ readonly module?: Module | undefined;
3213
+ readonly customAttributes?: CustomAttributeData[] | undefined;
3214
+ readonly isCollectible?: boolean;
3215
+ readonly metadataToken?: number;
3216
+ readonly attributes?: MethodBaseAttributes;
3217
+ readonly methodImplementationFlags?: MethodBaseMethodImplementationFlags;
3218
+ readonly callingConvention?: MethodBaseCallingConvention;
3219
+ readonly isAbstract?: boolean;
3220
+ readonly isConstructor?: boolean;
3221
+ readonly isFinal?: boolean;
3222
+ readonly isHideBySig?: boolean;
3223
+ readonly isSpecialName?: boolean;
3224
+ readonly isStatic?: boolean;
3225
+ readonly isVirtual?: boolean;
3226
+ readonly isAssembly?: boolean;
3227
+ readonly isFamily?: boolean;
3228
+ readonly isFamilyAndAssembly?: boolean;
3229
+ readonly isFamilyOrAssembly?: boolean;
3230
+ readonly isPrivate?: boolean;
3231
+ readonly isPublic?: boolean;
3232
+ readonly isConstructedGenericMethod?: boolean;
3233
+ readonly isGenericMethod?: boolean;
3234
+ readonly isGenericMethodDefinition?: boolean;
3235
+ readonly containsGenericParameters?: boolean;
3236
+ readonly methodHandle?: RuntimeMethodHandle;
3237
+ readonly isSecurityCritical?: boolean;
3238
+ readonly isSecuritySafeCritical?: boolean;
3239
+ readonly isSecurityTransparent?: boolean;
3240
+ constructor(data?: IMethodBase);
3241
+ init(_data?: any): void;
3242
+ static fromJS(data: any): MethodBase;
3243
+ toJSON(data?: any): any;
3244
+ }
3245
+ export interface IMethodBase {
3246
+ memberType?: MethodBaseMemberType;
3247
+ name?: string | undefined;
3248
+ declaringType?: Type | undefined;
3249
+ reflectedType?: Type | undefined;
3250
+ module?: Module | undefined;
3251
+ customAttributes?: CustomAttributeData[] | undefined;
3252
+ isCollectible?: boolean;
3253
+ metadataToken?: number;
3254
+ attributes?: MethodBaseAttributes;
3255
+ methodImplementationFlags?: MethodBaseMethodImplementationFlags;
3256
+ callingConvention?: MethodBaseCallingConvention;
3257
+ isAbstract?: boolean;
3258
+ isConstructor?: boolean;
3259
+ isFinal?: boolean;
3260
+ isHideBySig?: boolean;
3261
+ isSpecialName?: boolean;
3262
+ isStatic?: boolean;
3263
+ isVirtual?: boolean;
3264
+ isAssembly?: boolean;
3265
+ isFamily?: boolean;
3266
+ isFamilyAndAssembly?: boolean;
3267
+ isFamilyOrAssembly?: boolean;
3268
+ isPrivate?: boolean;
3269
+ isPublic?: boolean;
3270
+ isConstructedGenericMethod?: boolean;
3271
+ isGenericMethod?: boolean;
3272
+ isGenericMethodDefinition?: boolean;
3273
+ containsGenericParameters?: boolean;
3274
+ methodHandle?: RuntimeMethodHandle;
3275
+ isSecurityCritical?: boolean;
3276
+ isSecuritySafeCritical?: boolean;
3277
+ isSecurityTransparent?: boolean;
3278
+ }
3279
+ export declare class MethodInfo implements IMethodInfo {
3280
+ readonly name?: string | undefined;
3281
+ readonly declaringType?: Type | undefined;
3282
+ readonly reflectedType?: Type | undefined;
3283
+ readonly module?: Module | undefined;
3284
+ readonly customAttributes?: CustomAttributeData[] | undefined;
3285
+ readonly isCollectible?: boolean;
3286
+ readonly metadataToken?: number;
3287
+ readonly attributes?: MethodInfoAttributes;
3288
+ readonly methodImplementationFlags?: MethodInfoMethodImplementationFlags;
3289
+ readonly callingConvention?: MethodInfoCallingConvention;
3290
+ readonly isAbstract?: boolean;
3291
+ readonly isConstructor?: boolean;
3292
+ readonly isFinal?: boolean;
3293
+ readonly isHideBySig?: boolean;
3294
+ readonly isSpecialName?: boolean;
3295
+ readonly isStatic?: boolean;
3296
+ readonly isVirtual?: boolean;
3297
+ readonly isAssembly?: boolean;
3298
+ readonly isFamily?: boolean;
3299
+ readonly isFamilyAndAssembly?: boolean;
3300
+ readonly isFamilyOrAssembly?: boolean;
3301
+ readonly isPrivate?: boolean;
3302
+ readonly isPublic?: boolean;
3303
+ readonly isConstructedGenericMethod?: boolean;
3304
+ readonly isGenericMethod?: boolean;
3305
+ readonly isGenericMethodDefinition?: boolean;
3306
+ readonly containsGenericParameters?: boolean;
3307
+ readonly methodHandle?: RuntimeMethodHandle;
3308
+ readonly isSecurityCritical?: boolean;
3309
+ readonly isSecuritySafeCritical?: boolean;
3310
+ readonly isSecurityTransparent?: boolean;
3311
+ readonly memberType?: MethodInfoMemberType;
3312
+ readonly returnParameter?: ParameterInfo | undefined;
3313
+ readonly returnType?: Type | undefined;
3314
+ readonly returnTypeCustomAttributes?: ICustomAttributeProvider | undefined;
3315
+ constructor(data?: IMethodInfo);
3316
+ init(_data?: any): void;
3317
+ static fromJS(data: any): MethodInfo;
3318
+ toJSON(data?: any): any;
3319
+ }
3320
+ export interface IMethodInfo {
3321
+ name?: string | undefined;
3322
+ declaringType?: Type | undefined;
3323
+ reflectedType?: Type | undefined;
3324
+ module?: Module | undefined;
3325
+ customAttributes?: CustomAttributeData[] | undefined;
3326
+ isCollectible?: boolean;
3327
+ metadataToken?: number;
3328
+ attributes?: MethodInfoAttributes;
3329
+ methodImplementationFlags?: MethodInfoMethodImplementationFlags;
3330
+ callingConvention?: MethodInfoCallingConvention;
3331
+ isAbstract?: boolean;
3332
+ isConstructor?: boolean;
3333
+ isFinal?: boolean;
3334
+ isHideBySig?: boolean;
3335
+ isSpecialName?: boolean;
3336
+ isStatic?: boolean;
3337
+ isVirtual?: boolean;
3338
+ isAssembly?: boolean;
3339
+ isFamily?: boolean;
3340
+ isFamilyAndAssembly?: boolean;
3341
+ isFamilyOrAssembly?: boolean;
3342
+ isPrivate?: boolean;
3343
+ isPublic?: boolean;
3344
+ isConstructedGenericMethod?: boolean;
3345
+ isGenericMethod?: boolean;
3346
+ isGenericMethodDefinition?: boolean;
3347
+ containsGenericParameters?: boolean;
3348
+ methodHandle?: RuntimeMethodHandle;
3349
+ isSecurityCritical?: boolean;
3350
+ isSecuritySafeCritical?: boolean;
3351
+ isSecurityTransparent?: boolean;
3352
+ memberType?: MethodInfoMemberType;
3353
+ returnParameter?: ParameterInfo | undefined;
3354
+ returnType?: Type | undefined;
3355
+ returnTypeCustomAttributes?: ICustomAttributeProvider | undefined;
3356
+ }
2773
3357
  /** Represents a significant event or milestone in the company’s lifecycle. */
2774
3358
  export declare class Milestone implements IMilestone {
2775
3359
  /** ID for the milestone. */
@@ -2922,6 +3506,42 @@ https://github.com/country-regions/country-region-data/blob/master/data.json for
2922
3506
  /** The qualification status of an Investor. */
2923
3507
  qualifiedStatus?: ModifyIndividualInvestorQualifiedStatus | undefined;
2924
3508
  }
3509
+ export declare class Module implements IModule {
3510
+ readonly assembly?: Assembly | undefined;
3511
+ readonly fullyQualifiedName?: string | undefined;
3512
+ readonly name?: string | undefined;
3513
+ readonly mdStreamVersion?: number;
3514
+ readonly moduleVersionId?: string;
3515
+ readonly scopeName?: string | undefined;
3516
+ readonly moduleHandle?: ModuleHandle;
3517
+ readonly customAttributes?: CustomAttributeData[] | undefined;
3518
+ readonly metadataToken?: number;
3519
+ constructor(data?: IModule);
3520
+ init(_data?: any): void;
3521
+ static fromJS(data: any): Module;
3522
+ toJSON(data?: any): any;
3523
+ }
3524
+ export interface IModule {
3525
+ assembly?: Assembly | undefined;
3526
+ fullyQualifiedName?: string | undefined;
3527
+ name?: string | undefined;
3528
+ mdStreamVersion?: number;
3529
+ moduleVersionId?: string;
3530
+ scopeName?: string | undefined;
3531
+ moduleHandle?: ModuleHandle;
3532
+ customAttributes?: CustomAttributeData[] | undefined;
3533
+ metadataToken?: number;
3534
+ }
3535
+ export declare class ModuleHandle implements IModuleHandle {
3536
+ readonly mdStreamVersion?: number;
3537
+ constructor(data?: IModuleHandle);
3538
+ init(_data?: any): void;
3539
+ static fromJS(data: any): ModuleHandle;
3540
+ toJSON(data?: any): any;
3541
+ }
3542
+ export interface IModuleHandle {
3543
+ mdStreamVersion?: number;
3544
+ }
2925
3545
  /** Represents a transition of an SPV to a specific stage in its lifecycle. */
2926
3546
  export declare class MonarkStageTransition implements IMonarkStageTransition {
2927
3547
  /** The stage the SPV transitioned to. */
@@ -3598,6 +4218,44 @@ export interface IPagination {
3598
4218
  totalPages?: number;
3599
4219
  currentPage?: number;
3600
4220
  }
4221
+ export declare class ParameterInfo implements IParameterInfo {
4222
+ readonly attributes?: ParameterInfoAttributes;
4223
+ readonly member?: MemberInfo | undefined;
4224
+ readonly name?: string | undefined;
4225
+ readonly parameterType?: Type | undefined;
4226
+ readonly position?: number;
4227
+ readonly isIn?: boolean;
4228
+ readonly isLcid?: boolean;
4229
+ readonly isOptional?: boolean;
4230
+ readonly isOut?: boolean;
4231
+ readonly isRetval?: boolean;
4232
+ readonly defaultValue?: any | undefined;
4233
+ readonly rawDefaultValue?: any | undefined;
4234
+ readonly hasDefaultValue?: boolean;
4235
+ readonly customAttributes?: CustomAttributeData[] | undefined;
4236
+ readonly metadataToken?: number;
4237
+ constructor(data?: IParameterInfo);
4238
+ init(_data?: any): void;
4239
+ static fromJS(data: any): ParameterInfo;
4240
+ toJSON(data?: any): any;
4241
+ }
4242
+ export interface IParameterInfo {
4243
+ attributes?: ParameterInfoAttributes;
4244
+ member?: MemberInfo | undefined;
4245
+ name?: string | undefined;
4246
+ parameterType?: Type | undefined;
4247
+ position?: number;
4248
+ isIn?: boolean;
4249
+ isLcid?: boolean;
4250
+ isOptional?: boolean;
4251
+ isOut?: boolean;
4252
+ isRetval?: boolean;
4253
+ defaultValue?: any | undefined;
4254
+ rawDefaultValue?: any | undefined;
4255
+ hasDefaultValue?: boolean;
4256
+ customAttributes?: CustomAttributeData[] | undefined;
4257
+ metadataToken?: number;
4258
+ }
3601
4259
  /** Manager represents the entity responsible for making investment decisions on behalf of the SPV. */
3602
4260
  export declare class Partner implements IPartner {
3603
4261
  /** Unique ID, provided by Monark, associated with a Partner. */
@@ -4313,13 +4971,13 @@ export declare class PreIPOCompanyInvestment implements IPreIPOCompanyInvestment
4313
4971
  shareType: string | undefined;
4314
4972
  /** Share class of PreIPOCompany. Can be Series A, Series B, Series C, etc. */
4315
4973
  shareClass: string | undefined;
4316
- /** The number of shares in the PreIPOCompany associated with this Investment. */
4974
+ /** Estimated number of shares in the PreIPOCompany being purchased as part of this investment. */
4317
4975
  numberOfShares?: number | undefined;
4318
- /** The net amount of capital, including all commissions and fees associated with this PreIPOCompanyInvestment. This number determines the total amount of cash that needs to be syndicated in order to execute the transaction. */
4319
- totalCapitalRaise?: number | undefined;
4320
- /** This is the total amount that will be sent to the seller or issuer, after all commissions and fees have been paid. */
4321
- investmentSize?: number;
4322
- /** The price per share of the PreIPOCompany that will be paid to acquire the shares. */
4976
+ /** The net amount of capital to be paid by the SPV to acquire the stock. */
4977
+ amountPaidToAcquire?: number | undefined;
4978
+ /** The amount of capital sent to the target seller, minus any transaction fees. */
4979
+ amountToTarget?: number;
4980
+ /** This is the estimated price per share purchased by the SPV. This is found by dividing the Amount Paid to Acquire by the number of shares. */
4323
4981
  pricePerShare?: number | undefined;
4324
4982
  /** A transactionType of primary means that Monark has received an allocation in a PreIPOCompany's primary capital raise, and we are syndicating capital through an SPV to participate in the raise. transactionType of secondary means that an existing shareholder in the PreIPOCompany is looking for liquidity and Monark is interacting with the shareholder as a single LP, raising capital through the SPV and buying shares from the seller. transactionType of Tender Offer means that Monark is participating in a company sponsored share repurchase program through an SPV, helping the PreIPOCompany offer shareholders liquidity. */
4325
4983
  transactionType?: PreIPOCompanyInvestmentTransactionType;
@@ -4327,6 +4985,8 @@ export declare class PreIPOCompanyInvestment implements IPreIPOCompanyInvestment
4327
4985
  layeredSPV?: LayeredSPV | undefined;
4328
4986
  /** The name of the PreIPOCompany. */
4329
4987
  companyName?: string | undefined;
4988
+ /** Broker fees, if any, associated with this transaction. */
4989
+ brokerFee?: number | undefined;
4330
4990
  constructor(data?: IPreIPOCompanyInvestment);
4331
4991
  init(_data?: any): void;
4332
4992
  static fromJS(data: any): PreIPOCompanyInvestment;
@@ -4345,13 +5005,13 @@ export interface IPreIPOCompanyInvestment {
4345
5005
  shareType: string | undefined;
4346
5006
  /** Share class of PreIPOCompany. Can be Series A, Series B, Series C, etc. */
4347
5007
  shareClass: string | undefined;
4348
- /** The number of shares in the PreIPOCompany associated with this Investment. */
5008
+ /** Estimated number of shares in the PreIPOCompany being purchased as part of this investment. */
4349
5009
  numberOfShares?: number | undefined;
4350
- /** The net amount of capital, including all commissions and fees associated with this PreIPOCompanyInvestment. This number determines the total amount of cash that needs to be syndicated in order to execute the transaction. */
4351
- totalCapitalRaise?: number | undefined;
4352
- /** This is the total amount that will be sent to the seller or issuer, after all commissions and fees have been paid. */
4353
- investmentSize?: number;
4354
- /** The price per share of the PreIPOCompany that will be paid to acquire the shares. */
5010
+ /** The net amount of capital to be paid by the SPV to acquire the stock. */
5011
+ amountPaidToAcquire?: number | undefined;
5012
+ /** The amount of capital sent to the target seller, minus any transaction fees. */
5013
+ amountToTarget?: number;
5014
+ /** This is the estimated price per share purchased by the SPV. This is found by dividing the Amount Paid to Acquire by the number of shares. */
4355
5015
  pricePerShare?: number | undefined;
4356
5016
  /** A transactionType of primary means that Monark has received an allocation in a PreIPOCompany's primary capital raise, and we are syndicating capital through an SPV to participate in the raise. transactionType of secondary means that an existing shareholder in the PreIPOCompany is looking for liquidity and Monark is interacting with the shareholder as a single LP, raising capital through the SPV and buying shares from the seller. transactionType of Tender Offer means that Monark is participating in a company sponsored share repurchase program through an SPV, helping the PreIPOCompany offer shareholders liquidity. */
4357
5017
  transactionType?: PreIPOCompanyInvestmentTransactionType;
@@ -4359,6 +5019,8 @@ export interface IPreIPOCompanyInvestment {
4359
5019
  layeredSPV?: LayeredSPV | undefined;
4360
5020
  /** The name of the PreIPOCompany. */
4361
5021
  companyName?: string | undefined;
5022
+ /** Broker fees, if any, associated with this transaction. */
5023
+ brokerFee?: number | undefined;
4362
5024
  }
4363
5025
  export declare class PreIPOCompanyInvestmentApiResponse implements IPreIPOCompanyInvestmentApiResponse {
4364
5026
  items?: PreIPOCompanyInvestment[] | undefined;
@@ -4596,6 +5258,12 @@ export declare class PreIPOCompanySPV implements IPreIPOCompanySPV {
4596
5258
  investorFeePerShare?: number | undefined;
4597
5259
  /** The total amount per share that an Investor will pay, including fees, when they invest in an SPV. */
4598
5260
  allInPricePerShare?: number | undefined;
5261
+ /** The admin fee associated with this SPV, if the fund admin expense is not being paid out of the management fee. If the fund admin expense is being paid out of the management fee, leave this blank. */
5262
+ fundAdminExpense?: number | undefined;
5263
+ /** The total expense reserve associated with this SPV, if the expense reserve is not being paid out of the admin expense. If the fund admin expense is being paid out of the management fee, leave this blank. */
5264
+ expenseReserve?: number | undefined;
5265
+ /** Flag that describes whether the holdback expenses will be passed through to investors */
5266
+ holdbackEnabled?: boolean;
4599
5267
  /** The base documents associated with the SPV (Optional). */
4600
5268
  documents?: Document[] | undefined;
4601
5269
  /** SPV account ID. */
@@ -4608,6 +5276,8 @@ export declare class PreIPOCompanySPV implements IPreIPOCompanySPV {
4608
5276
  coManagers?: Partner[] | undefined;
4609
5277
  /** Optional carry interest. */
4610
5278
  carry?: number | undefined;
5279
+ /** Estimated go live date of the SPV. If the exact go live date is not known, an estimate will be provided. */
5280
+ goLiveDate?: Date | undefined;
4611
5281
  constructor(data?: IPreIPOCompanySPV);
4612
5282
  init(_data?: any): void;
4613
5283
  static fromJS(data: any): PreIPOCompanySPV;
@@ -4673,6 +5343,12 @@ export interface IPreIPOCompanySPV {
4673
5343
  investorFeePerShare?: number | undefined;
4674
5344
  /** The total amount per share that an Investor will pay, including fees, when they invest in an SPV. */
4675
5345
  allInPricePerShare?: number | undefined;
5346
+ /** The admin fee associated with this SPV, if the fund admin expense is not being paid out of the management fee. If the fund admin expense is being paid out of the management fee, leave this blank. */
5347
+ fundAdminExpense?: number | undefined;
5348
+ /** The total expense reserve associated with this SPV, if the expense reserve is not being paid out of the admin expense. If the fund admin expense is being paid out of the management fee, leave this blank. */
5349
+ expenseReserve?: number | undefined;
5350
+ /** Flag that describes whether the holdback expenses will be passed through to investors */
5351
+ holdbackEnabled?: boolean;
4676
5352
  /** The base documents associated with the SPV (Optional). */
4677
5353
  documents?: Document[] | undefined;
4678
5354
  /** SPV account ID. */
@@ -4685,6 +5361,8 @@ export interface IPreIPOCompanySPV {
4685
5361
  coManagers?: Partner[] | undefined;
4686
5362
  /** Optional carry interest. */
4687
5363
  carry?: number | undefined;
5364
+ /** Estimated go live date of the SPV. If the exact go live date is not known, an estimate will be provided. */
5365
+ goLiveDate?: Date | undefined;
4688
5366
  }
4689
5367
  export declare class PreIPOCompanySPVApiResponse implements IPreIPOCompanySPVApiResponse {
4690
5368
  items?: PreIPOCompanySPV[] | undefined;
@@ -4698,6 +5376,40 @@ export interface IPreIPOCompanySPVApiResponse {
4698
5376
  items?: PreIPOCompanySPV[] | undefined;
4699
5377
  pagination?: Pagination | undefined;
4700
5378
  }
5379
+ export declare class PreIPOCompanySPVPartnerApproval implements IPreIPOCompanySPVPartnerApproval {
5380
+ id?: string;
5381
+ preIPOCompanySPVId?: string;
5382
+ partnerId?: string;
5383
+ isApproved?: boolean;
5384
+ notes?: string | undefined;
5385
+ createdAt?: Date;
5386
+ updatedAt?: Date | undefined;
5387
+ constructor(data?: IPreIPOCompanySPVPartnerApproval);
5388
+ init(_data?: any): void;
5389
+ static fromJS(data: any): PreIPOCompanySPVPartnerApproval;
5390
+ toJSON(data?: any): any;
5391
+ }
5392
+ export interface IPreIPOCompanySPVPartnerApproval {
5393
+ id?: string;
5394
+ preIPOCompanySPVId?: string;
5395
+ partnerId?: string;
5396
+ isApproved?: boolean;
5397
+ notes?: string | undefined;
5398
+ createdAt?: Date;
5399
+ updatedAt?: Date | undefined;
5400
+ }
5401
+ export declare class PreIPOCompanySPVPartnerApprovalApiResponse implements IPreIPOCompanySPVPartnerApprovalApiResponse {
5402
+ items?: PreIPOCompanySPVPartnerApproval[] | undefined;
5403
+ pagination?: Pagination | undefined;
5404
+ constructor(data?: IPreIPOCompanySPVPartnerApprovalApiResponse);
5405
+ init(_data?: any): void;
5406
+ static fromJS(data: any): PreIPOCompanySPVPartnerApprovalApiResponse;
5407
+ toJSON(data?: any): any;
5408
+ }
5409
+ export interface IPreIPOCompanySPVPartnerApprovalApiResponse {
5410
+ items?: PreIPOCompanySPVPartnerApproval[] | undefined;
5411
+ pagination?: Pagination | undefined;
5412
+ }
4701
5413
  export declare class ProblemDetails implements IProblemDetails {
4702
5414
  type?: string | undefined;
4703
5415
  title?: string | undefined;
@@ -4718,6 +5430,44 @@ export interface IProblemDetails {
4718
5430
  instance?: string | undefined;
4719
5431
  [key: string]: any;
4720
5432
  }
5433
+ export declare class PropertyInfo implements IPropertyInfo {
5434
+ readonly name?: string | undefined;
5435
+ readonly declaringType?: Type | undefined;
5436
+ readonly reflectedType?: Type | undefined;
5437
+ readonly module?: Module | undefined;
5438
+ readonly customAttributes?: CustomAttributeData[] | undefined;
5439
+ readonly isCollectible?: boolean;
5440
+ readonly metadataToken?: number;
5441
+ readonly memberType?: PropertyInfoMemberType;
5442
+ readonly propertyType?: Type | undefined;
5443
+ readonly attributes?: PropertyInfoAttributes;
5444
+ readonly isSpecialName?: boolean;
5445
+ readonly canRead?: boolean;
5446
+ readonly canWrite?: boolean;
5447
+ readonly getMethod?: MethodInfo | undefined;
5448
+ readonly setMethod?: MethodInfo | undefined;
5449
+ constructor(data?: IPropertyInfo);
5450
+ init(_data?: any): void;
5451
+ static fromJS(data: any): PropertyInfo;
5452
+ toJSON(data?: any): any;
5453
+ }
5454
+ export interface IPropertyInfo {
5455
+ name?: string | undefined;
5456
+ declaringType?: Type | undefined;
5457
+ reflectedType?: Type | undefined;
5458
+ module?: Module | undefined;
5459
+ customAttributes?: CustomAttributeData[] | undefined;
5460
+ isCollectible?: boolean;
5461
+ metadataToken?: number;
5462
+ memberType?: PropertyInfoMemberType;
5463
+ propertyType?: Type | undefined;
5464
+ attributes?: PropertyInfoAttributes;
5465
+ isSpecialName?: boolean;
5466
+ canRead?: boolean;
5467
+ canWrite?: boolean;
5468
+ getMethod?: MethodInfo | undefined;
5469
+ setMethod?: MethodInfo | undefined;
5470
+ }
4721
5471
  /** Questionnaire repesents the public information we provide for a Questionnaire in the Primary Offering. */
4722
5472
  export declare class Questionnaire implements IQuestionnaire {
4723
5473
  /** Unique ID associated with a Questionnaire. */
@@ -4788,6 +5538,34 @@ export interface IQuestionnaireAnswer {
4788
5538
  /** Updated at the specified date. */
4789
5539
  updatedAt?: Date;
4790
5540
  }
5541
+ export declare class QuestionnaireAnswerApiResponse implements IQuestionnaireAnswerApiResponse {
5542
+ statusCode?: QuestionnaireAnswerApiResponseStatusCode;
5543
+ headers?: {
5544
+ [key: string]: string[];
5545
+ } | undefined;
5546
+ data?: QuestionnaireAnswer | undefined;
5547
+ errorText?: string | undefined;
5548
+ cookies?: Cookie[] | undefined;
5549
+ readonly responseType?: Type | undefined;
5550
+ readonly content?: any | undefined;
5551
+ rawContent?: string | undefined;
5552
+ constructor(data?: IQuestionnaireAnswerApiResponse);
5553
+ init(_data?: any): void;
5554
+ static fromJS(data: any): QuestionnaireAnswerApiResponse;
5555
+ toJSON(data?: any): any;
5556
+ }
5557
+ export interface IQuestionnaireAnswerApiResponse {
5558
+ statusCode?: QuestionnaireAnswerApiResponseStatusCode;
5559
+ headers?: {
5560
+ [key: string]: string[];
5561
+ } | undefined;
5562
+ data?: QuestionnaireAnswer | undefined;
5563
+ errorText?: string | undefined;
5564
+ cookies?: Cookie[] | undefined;
5565
+ responseType?: Type | undefined;
5566
+ content?: any | undefined;
5567
+ rawContent?: string | undefined;
5568
+ }
4791
5569
  export declare class QuestionnaireApiResponse implements IQuestionnaireApiResponse {
4792
5570
  items?: Questionnaire[] | undefined;
4793
5571
  pagination?: Pagination | undefined;
@@ -5164,6 +5942,36 @@ export interface IRegisteredFundSubscriptionApiResponse {
5164
5942
  items?: RegisteredFundSubscription[] | undefined;
5165
5943
  pagination?: Pagination | undefined;
5166
5944
  }
5945
+ export declare class RuntimeFieldHandle implements IRuntimeFieldHandle {
5946
+ readonly value?: IntPtr;
5947
+ constructor(data?: IRuntimeFieldHandle);
5948
+ init(_data?: any): void;
5949
+ static fromJS(data: any): RuntimeFieldHandle;
5950
+ toJSON(data?: any): any;
5951
+ }
5952
+ export interface IRuntimeFieldHandle {
5953
+ value?: IntPtr;
5954
+ }
5955
+ export declare class RuntimeMethodHandle implements IRuntimeMethodHandle {
5956
+ readonly value?: IntPtr;
5957
+ constructor(data?: IRuntimeMethodHandle);
5958
+ init(_data?: any): void;
5959
+ static fromJS(data: any): RuntimeMethodHandle;
5960
+ toJSON(data?: any): any;
5961
+ }
5962
+ export interface IRuntimeMethodHandle {
5963
+ value?: IntPtr;
5964
+ }
5965
+ export declare class RuntimeTypeHandle implements IRuntimeTypeHandle {
5966
+ readonly value?: IntPtr;
5967
+ constructor(data?: IRuntimeTypeHandle);
5968
+ init(_data?: any): void;
5969
+ static fromJS(data: any): RuntimeTypeHandle;
5970
+ toJSON(data?: any): any;
5971
+ }
5972
+ export interface IRuntimeTypeHandle {
5973
+ value?: IntPtr;
5974
+ }
5167
5975
  /** Represents a share class of a registered fund. */
5168
5976
  export declare class ShareClass implements IShareClass {
5169
5977
  /** Unique ID for share class */
@@ -5278,6 +6086,344 @@ export interface ISignatureRequest {
5278
6086
  /** The name to place as the signature on the document. */
5279
6087
  signatureName: string;
5280
6088
  }
6089
+ export declare class StructLayoutAttribute implements IStructLayoutAttribute {
6090
+ readonly typeId?: any | undefined;
6091
+ readonly value?: StructLayoutAttributeValue;
6092
+ constructor(data?: IStructLayoutAttribute);
6093
+ init(_data?: any): void;
6094
+ static fromJS(data: any): StructLayoutAttribute;
6095
+ toJSON(data?: any): any;
6096
+ }
6097
+ export interface IStructLayoutAttribute {
6098
+ typeId?: any | undefined;
6099
+ value?: StructLayoutAttributeValue;
6100
+ }
6101
+ export declare class Type implements IType {
6102
+ readonly name?: string | undefined;
6103
+ readonly customAttributes?: CustomAttributeData[] | undefined;
6104
+ readonly isCollectible?: boolean;
6105
+ readonly metadataToken?: number;
6106
+ readonly isInterface?: boolean;
6107
+ readonly memberType?: TypeMemberType;
6108
+ readonly namespace?: string | undefined;
6109
+ readonly assemblyQualifiedName?: string | undefined;
6110
+ readonly fullName?: string | undefined;
6111
+ readonly assembly?: Assembly | undefined;
6112
+ readonly module?: Module | undefined;
6113
+ readonly isNested?: boolean;
6114
+ readonly declaringType?: Type | undefined;
6115
+ readonly declaringMethod?: MethodBase | undefined;
6116
+ readonly reflectedType?: Type | undefined;
6117
+ readonly underlyingSystemType?: Type | undefined;
6118
+ readonly isTypeDefinition?: boolean;
6119
+ readonly isArray?: boolean;
6120
+ readonly isByRef?: boolean;
6121
+ readonly isPointer?: boolean;
6122
+ readonly isConstructedGenericType?: boolean;
6123
+ readonly isGenericParameter?: boolean;
6124
+ readonly isGenericTypeParameter?: boolean;
6125
+ readonly isGenericMethodParameter?: boolean;
6126
+ readonly isGenericType?: boolean;
6127
+ readonly isGenericTypeDefinition?: boolean;
6128
+ readonly isSZArray?: boolean;
6129
+ readonly isVariableBoundArray?: boolean;
6130
+ readonly isByRefLike?: boolean;
6131
+ readonly isFunctionPointer?: boolean;
6132
+ readonly isUnmanagedFunctionPointer?: boolean;
6133
+ readonly hasElementType?: boolean;
6134
+ readonly genericTypeArguments?: Type[] | undefined;
6135
+ readonly genericParameterPosition?: number;
6136
+ readonly genericParameterAttributes?: TypeGenericParameterAttributes;
6137
+ readonly attributes?: TypeAttributes;
6138
+ readonly isAbstract?: boolean;
6139
+ readonly isImport?: boolean;
6140
+ readonly isSealed?: boolean;
6141
+ readonly isSpecialName?: boolean;
6142
+ readonly isClass?: boolean;
6143
+ readonly isNestedAssembly?: boolean;
6144
+ readonly isNestedFamANDAssem?: boolean;
6145
+ readonly isNestedFamily?: boolean;
6146
+ readonly isNestedFamORAssem?: boolean;
6147
+ readonly isNestedPrivate?: boolean;
6148
+ readonly isNestedPublic?: boolean;
6149
+ readonly isNotPublic?: boolean;
6150
+ readonly isPublic?: boolean;
6151
+ readonly isAutoLayout?: boolean;
6152
+ readonly isExplicitLayout?: boolean;
6153
+ readonly isLayoutSequential?: boolean;
6154
+ readonly isAnsiClass?: boolean;
6155
+ readonly isAutoClass?: boolean;
6156
+ readonly isUnicodeClass?: boolean;
6157
+ readonly isCOMObject?: boolean;
6158
+ readonly isContextful?: boolean;
6159
+ readonly isEnum?: boolean;
6160
+ readonly isMarshalByRef?: boolean;
6161
+ readonly isPrimitive?: boolean;
6162
+ readonly isValueType?: boolean;
6163
+ readonly isSignatureType?: boolean;
6164
+ readonly isSecurityCritical?: boolean;
6165
+ readonly isSecuritySafeCritical?: boolean;
6166
+ readonly isSecurityTransparent?: boolean;
6167
+ readonly structLayoutAttribute?: StructLayoutAttribute | undefined;
6168
+ readonly typeInitializer?: ConstructorInfo | undefined;
6169
+ readonly typeHandle?: RuntimeTypeHandle;
6170
+ readonly guid?: string;
6171
+ readonly baseType?: Type | undefined;
6172
+ readonly isSerializable?: boolean;
6173
+ readonly containsGenericParameters?: boolean;
6174
+ readonly isVisible?: boolean;
6175
+ constructor(data?: IType);
6176
+ init(_data?: any): void;
6177
+ static fromJS(data: any): Type;
6178
+ toJSON(data?: any): any;
6179
+ }
6180
+ export interface IType {
6181
+ name?: string | undefined;
6182
+ customAttributes?: CustomAttributeData[] | undefined;
6183
+ isCollectible?: boolean;
6184
+ metadataToken?: number;
6185
+ isInterface?: boolean;
6186
+ memberType?: TypeMemberType;
6187
+ namespace?: string | undefined;
6188
+ assemblyQualifiedName?: string | undefined;
6189
+ fullName?: string | undefined;
6190
+ assembly?: Assembly | undefined;
6191
+ module?: Module | undefined;
6192
+ isNested?: boolean;
6193
+ declaringType?: Type | undefined;
6194
+ declaringMethod?: MethodBase | undefined;
6195
+ reflectedType?: Type | undefined;
6196
+ underlyingSystemType?: Type | undefined;
6197
+ isTypeDefinition?: boolean;
6198
+ isArray?: boolean;
6199
+ isByRef?: boolean;
6200
+ isPointer?: boolean;
6201
+ isConstructedGenericType?: boolean;
6202
+ isGenericParameter?: boolean;
6203
+ isGenericTypeParameter?: boolean;
6204
+ isGenericMethodParameter?: boolean;
6205
+ isGenericType?: boolean;
6206
+ isGenericTypeDefinition?: boolean;
6207
+ isSZArray?: boolean;
6208
+ isVariableBoundArray?: boolean;
6209
+ isByRefLike?: boolean;
6210
+ isFunctionPointer?: boolean;
6211
+ isUnmanagedFunctionPointer?: boolean;
6212
+ hasElementType?: boolean;
6213
+ genericTypeArguments?: Type[] | undefined;
6214
+ genericParameterPosition?: number;
6215
+ genericParameterAttributes?: TypeGenericParameterAttributes;
6216
+ attributes?: TypeAttributes;
6217
+ isAbstract?: boolean;
6218
+ isImport?: boolean;
6219
+ isSealed?: boolean;
6220
+ isSpecialName?: boolean;
6221
+ isClass?: boolean;
6222
+ isNestedAssembly?: boolean;
6223
+ isNestedFamANDAssem?: boolean;
6224
+ isNestedFamily?: boolean;
6225
+ isNestedFamORAssem?: boolean;
6226
+ isNestedPrivate?: boolean;
6227
+ isNestedPublic?: boolean;
6228
+ isNotPublic?: boolean;
6229
+ isPublic?: boolean;
6230
+ isAutoLayout?: boolean;
6231
+ isExplicitLayout?: boolean;
6232
+ isLayoutSequential?: boolean;
6233
+ isAnsiClass?: boolean;
6234
+ isAutoClass?: boolean;
6235
+ isUnicodeClass?: boolean;
6236
+ isCOMObject?: boolean;
6237
+ isContextful?: boolean;
6238
+ isEnum?: boolean;
6239
+ isMarshalByRef?: boolean;
6240
+ isPrimitive?: boolean;
6241
+ isValueType?: boolean;
6242
+ isSignatureType?: boolean;
6243
+ isSecurityCritical?: boolean;
6244
+ isSecuritySafeCritical?: boolean;
6245
+ isSecurityTransparent?: boolean;
6246
+ structLayoutAttribute?: StructLayoutAttribute | undefined;
6247
+ typeInitializer?: ConstructorInfo | undefined;
6248
+ typeHandle?: RuntimeTypeHandle;
6249
+ guid?: string;
6250
+ baseType?: Type | undefined;
6251
+ isSerializable?: boolean;
6252
+ containsGenericParameters?: boolean;
6253
+ isVisible?: boolean;
6254
+ }
6255
+ export declare class TypeInfo implements ITypeInfo {
6256
+ readonly name?: string | undefined;
6257
+ readonly customAttributes?: CustomAttributeData[] | undefined;
6258
+ readonly isCollectible?: boolean;
6259
+ readonly metadataToken?: number;
6260
+ readonly isInterface?: boolean;
6261
+ readonly memberType?: TypeInfoMemberType;
6262
+ readonly namespace?: string | undefined;
6263
+ readonly assemblyQualifiedName?: string | undefined;
6264
+ readonly fullName?: string | undefined;
6265
+ readonly assembly?: Assembly | undefined;
6266
+ readonly module?: Module | undefined;
6267
+ readonly isNested?: boolean;
6268
+ readonly declaringType?: Type | undefined;
6269
+ readonly declaringMethod?: MethodBase | undefined;
6270
+ readonly reflectedType?: Type | undefined;
6271
+ readonly underlyingSystemType?: Type | undefined;
6272
+ readonly isTypeDefinition?: boolean;
6273
+ readonly isArray?: boolean;
6274
+ readonly isByRef?: boolean;
6275
+ readonly isPointer?: boolean;
6276
+ readonly isConstructedGenericType?: boolean;
6277
+ readonly isGenericParameter?: boolean;
6278
+ readonly isGenericTypeParameter?: boolean;
6279
+ readonly isGenericMethodParameter?: boolean;
6280
+ readonly isGenericType?: boolean;
6281
+ readonly isGenericTypeDefinition?: boolean;
6282
+ readonly isSZArray?: boolean;
6283
+ readonly isVariableBoundArray?: boolean;
6284
+ readonly isByRefLike?: boolean;
6285
+ readonly isFunctionPointer?: boolean;
6286
+ readonly isUnmanagedFunctionPointer?: boolean;
6287
+ readonly hasElementType?: boolean;
6288
+ readonly genericTypeArguments?: Type[] | undefined;
6289
+ readonly genericParameterPosition?: number;
6290
+ readonly genericParameterAttributes?: TypeInfoGenericParameterAttributes;
6291
+ readonly attributes?: TypeInfoAttributes;
6292
+ readonly isAbstract?: boolean;
6293
+ readonly isImport?: boolean;
6294
+ readonly isSealed?: boolean;
6295
+ readonly isSpecialName?: boolean;
6296
+ readonly isClass?: boolean;
6297
+ readonly isNestedAssembly?: boolean;
6298
+ readonly isNestedFamANDAssem?: boolean;
6299
+ readonly isNestedFamily?: boolean;
6300
+ readonly isNestedFamORAssem?: boolean;
6301
+ readonly isNestedPrivate?: boolean;
6302
+ readonly isNestedPublic?: boolean;
6303
+ readonly isNotPublic?: boolean;
6304
+ readonly isPublic?: boolean;
6305
+ readonly isAutoLayout?: boolean;
6306
+ readonly isExplicitLayout?: boolean;
6307
+ readonly isLayoutSequential?: boolean;
6308
+ readonly isAnsiClass?: boolean;
6309
+ readonly isAutoClass?: boolean;
6310
+ readonly isUnicodeClass?: boolean;
6311
+ readonly isCOMObject?: boolean;
6312
+ readonly isContextful?: boolean;
6313
+ readonly isEnum?: boolean;
6314
+ readonly isMarshalByRef?: boolean;
6315
+ readonly isPrimitive?: boolean;
6316
+ readonly isValueType?: boolean;
6317
+ readonly isSignatureType?: boolean;
6318
+ readonly isSecurityCritical?: boolean;
6319
+ readonly isSecuritySafeCritical?: boolean;
6320
+ readonly isSecurityTransparent?: boolean;
6321
+ readonly structLayoutAttribute?: StructLayoutAttribute | undefined;
6322
+ readonly typeInitializer?: ConstructorInfo | undefined;
6323
+ readonly typeHandle?: RuntimeTypeHandle;
6324
+ readonly guid?: string;
6325
+ readonly baseType?: Type | undefined;
6326
+ readonly isSerializable?: boolean;
6327
+ readonly containsGenericParameters?: boolean;
6328
+ readonly isVisible?: boolean;
6329
+ readonly genericTypeParameters?: Type[] | undefined;
6330
+ readonly declaredConstructors?: ConstructorInfo[] | undefined;
6331
+ readonly declaredEvents?: EventInfo[] | undefined;
6332
+ readonly declaredFields?: FieldInfo[] | undefined;
6333
+ readonly declaredMembers?: MemberInfo[] | undefined;
6334
+ readonly declaredMethods?: MethodInfo[] | undefined;
6335
+ readonly declaredNestedTypes?: TypeInfo[] | undefined;
6336
+ readonly declaredProperties?: PropertyInfo[] | undefined;
6337
+ readonly implementedInterfaces?: Type[] | undefined;
6338
+ constructor(data?: ITypeInfo);
6339
+ init(_data?: any): void;
6340
+ static fromJS(data: any): TypeInfo;
6341
+ toJSON(data?: any): any;
6342
+ }
6343
+ export interface ITypeInfo {
6344
+ name?: string | undefined;
6345
+ customAttributes?: CustomAttributeData[] | undefined;
6346
+ isCollectible?: boolean;
6347
+ metadataToken?: number;
6348
+ isInterface?: boolean;
6349
+ memberType?: TypeInfoMemberType;
6350
+ namespace?: string | undefined;
6351
+ assemblyQualifiedName?: string | undefined;
6352
+ fullName?: string | undefined;
6353
+ assembly?: Assembly | undefined;
6354
+ module?: Module | undefined;
6355
+ isNested?: boolean;
6356
+ declaringType?: Type | undefined;
6357
+ declaringMethod?: MethodBase | undefined;
6358
+ reflectedType?: Type | undefined;
6359
+ underlyingSystemType?: Type | undefined;
6360
+ isTypeDefinition?: boolean;
6361
+ isArray?: boolean;
6362
+ isByRef?: boolean;
6363
+ isPointer?: boolean;
6364
+ isConstructedGenericType?: boolean;
6365
+ isGenericParameter?: boolean;
6366
+ isGenericTypeParameter?: boolean;
6367
+ isGenericMethodParameter?: boolean;
6368
+ isGenericType?: boolean;
6369
+ isGenericTypeDefinition?: boolean;
6370
+ isSZArray?: boolean;
6371
+ isVariableBoundArray?: boolean;
6372
+ isByRefLike?: boolean;
6373
+ isFunctionPointer?: boolean;
6374
+ isUnmanagedFunctionPointer?: boolean;
6375
+ hasElementType?: boolean;
6376
+ genericTypeArguments?: Type[] | undefined;
6377
+ genericParameterPosition?: number;
6378
+ genericParameterAttributes?: TypeInfoGenericParameterAttributes;
6379
+ attributes?: TypeInfoAttributes;
6380
+ isAbstract?: boolean;
6381
+ isImport?: boolean;
6382
+ isSealed?: boolean;
6383
+ isSpecialName?: boolean;
6384
+ isClass?: boolean;
6385
+ isNestedAssembly?: boolean;
6386
+ isNestedFamANDAssem?: boolean;
6387
+ isNestedFamily?: boolean;
6388
+ isNestedFamORAssem?: boolean;
6389
+ isNestedPrivate?: boolean;
6390
+ isNestedPublic?: boolean;
6391
+ isNotPublic?: boolean;
6392
+ isPublic?: boolean;
6393
+ isAutoLayout?: boolean;
6394
+ isExplicitLayout?: boolean;
6395
+ isLayoutSequential?: boolean;
6396
+ isAnsiClass?: boolean;
6397
+ isAutoClass?: boolean;
6398
+ isUnicodeClass?: boolean;
6399
+ isCOMObject?: boolean;
6400
+ isContextful?: boolean;
6401
+ isEnum?: boolean;
6402
+ isMarshalByRef?: boolean;
6403
+ isPrimitive?: boolean;
6404
+ isValueType?: boolean;
6405
+ isSignatureType?: boolean;
6406
+ isSecurityCritical?: boolean;
6407
+ isSecuritySafeCritical?: boolean;
6408
+ isSecurityTransparent?: boolean;
6409
+ structLayoutAttribute?: StructLayoutAttribute | undefined;
6410
+ typeInitializer?: ConstructorInfo | undefined;
6411
+ typeHandle?: RuntimeTypeHandle;
6412
+ guid?: string;
6413
+ baseType?: Type | undefined;
6414
+ isSerializable?: boolean;
6415
+ containsGenericParameters?: boolean;
6416
+ isVisible?: boolean;
6417
+ genericTypeParameters?: Type[] | undefined;
6418
+ declaredConstructors?: ConstructorInfo[] | undefined;
6419
+ declaredEvents?: EventInfo[] | undefined;
6420
+ declaredFields?: FieldInfo[] | undefined;
6421
+ declaredMembers?: MemberInfo[] | undefined;
6422
+ declaredMethods?: MethodInfo[] | undefined;
6423
+ declaredNestedTypes?: TypeInfo[] | undefined;
6424
+ declaredProperties?: PropertyInfo[] | undefined;
6425
+ implementedInterfaces?: Type[] | undefined;
6426
+ }
5281
6427
  export declare class UpdateEntityInvestor implements IUpdateEntityInvestor {
5282
6428
  /** Legal name of the entity. */
5283
6429
  legalName: string;
@@ -6160,17 +7306,25 @@ export declare enum SortOrder15 {
6160
7306
  Ascending = "Ascending",
6161
7307
  Descending = "Descending"
6162
7308
  }
7309
+ export declare enum SortOrder16 {
7310
+ Ascending = "Ascending",
7311
+ Descending = "Descending"
7312
+ }
7313
+ export declare enum SortOrder17 {
7314
+ Ascending = "Ascending",
7315
+ Descending = "Descending"
7316
+ }
6163
7317
  export declare enum ResponsibleParty {
6164
7318
  Partner = "Partner",
6165
7319
  Monark = "Monark",
6166
7320
  Investor = "Investor",
6167
7321
  Advisor = "Advisor"
6168
7322
  }
6169
- export declare enum SortOrder16 {
7323
+ export declare enum SortOrder18 {
6170
7324
  Ascending = "Ascending",
6171
7325
  Descending = "Descending"
6172
7326
  }
6173
- export declare enum SortOrder17 {
7327
+ export declare enum SortOrder19 {
6174
7328
  Ascending = "Ascending",
6175
7329
  Descending = "Descending"
6176
7330
  }
@@ -6189,6 +7343,11 @@ export declare enum DeliveryStatus {
6189
7343
  Delivered = "Delivered",
6190
7344
  Failed = "Failed"
6191
7345
  }
7346
+ export declare enum AssemblySecurityRuleSet {
7347
+ None = "None",
7348
+ Level1 = "Level1",
7349
+ Level2 = "Level2"
7350
+ }
6192
7351
  export declare enum BulkPreIPOCompanyType {
6193
7352
  SOLE_PROPRIETOR = "SOLE_PROPRIETOR",
6194
7353
  SINGLE_MEMBER_LLC = "SINGLE_MEMBER_LLC",
@@ -6246,6 +7405,64 @@ export declare enum BulkPreIPOCompanySPVMonarkStage {
6246
7405
  LIQUIDATION = "LIQUIDATION",
6247
7406
  DISSOLVED = "DISSOLVED"
6248
7407
  }
7408
+ export declare enum ConstructorInfoAttributes {
7409
+ PrivateScope = "PrivateScope",
7410
+ Private = "Private",
7411
+ FamANDAssem = "FamANDAssem",
7412
+ Assembly = "Assembly",
7413
+ Family = "Family",
7414
+ FamORAssem = "FamORAssem",
7415
+ Public = "Public",
7416
+ MemberAccessMask = "MemberAccessMask",
7417
+ UnmanagedExport = "UnmanagedExport",
7418
+ Static = "Static",
7419
+ Final = "Final",
7420
+ Virtual = "Virtual",
7421
+ HideBySig = "HideBySig",
7422
+ NewSlot = "NewSlot",
7423
+ CheckAccessOnOverride = "CheckAccessOnOverride",
7424
+ Abstract = "Abstract",
7425
+ SpecialName = "SpecialName",
7426
+ RTSpecialName = "RTSpecialName",
7427
+ PinvokeImpl = "PinvokeImpl",
7428
+ HasSecurity = "HasSecurity",
7429
+ RequireSecObject = "RequireSecObject",
7430
+ ReservedMask = "ReservedMask"
7431
+ }
7432
+ export declare enum ConstructorInfoMethodImplementationFlags {
7433
+ IL = "IL",
7434
+ Native = "Native",
7435
+ OPTIL = "OPTIL",
7436
+ CodeTypeMask = "CodeTypeMask",
7437
+ ManagedMask = "ManagedMask",
7438
+ NoInlining = "NoInlining",
7439
+ ForwardRef = "ForwardRef",
7440
+ Synchronized = "Synchronized",
7441
+ NoOptimization = "NoOptimization",
7442
+ PreserveSig = "PreserveSig",
7443
+ AggressiveInlining = "AggressiveInlining",
7444
+ AggressiveOptimization = "AggressiveOptimization",
7445
+ InternalCall = "InternalCall",
7446
+ MaxMethodImplVal = "MaxMethodImplVal"
7447
+ }
7448
+ export declare enum ConstructorInfoCallingConvention {
7449
+ Standard = "Standard",
7450
+ VarArgs = "VarArgs",
7451
+ Any = "Any",
7452
+ HasThis = "HasThis",
7453
+ ExplicitThis = "ExplicitThis"
7454
+ }
7455
+ export declare enum ConstructorInfoMemberType {
7456
+ Constructor = "Constructor",
7457
+ Event = "Event",
7458
+ Field = "Field",
7459
+ Method = "Method",
7460
+ Property = "Property",
7461
+ TypeInfo = "TypeInfo",
7462
+ Custom = "Custom",
7463
+ NestedType = "NestedType",
7464
+ All = "All"
7465
+ }
6249
7466
  export declare enum CreateInvestorType {
6250
7467
  IndividualInvestor = "IndividualInvestor",
6251
7468
  EntityInvestor = "EntityInvestor"
@@ -6352,6 +7569,22 @@ export declare enum EntityInvestorTrustType {
6352
7569
  REVOCABLE_TRUST = "REVOCABLE_TRUST",
6353
7570
  IRREVOCABLE_TRUST = "IRREVOCABLE_TRUST"
6354
7571
  }
7572
+ export declare enum EventInfoMemberType {
7573
+ Constructor = "Constructor",
7574
+ Event = "Event",
7575
+ Field = "Field",
7576
+ Method = "Method",
7577
+ Property = "Property",
7578
+ TypeInfo = "TypeInfo",
7579
+ Custom = "Custom",
7580
+ NestedType = "NestedType",
7581
+ All = "All"
7582
+ }
7583
+ export declare enum EventInfoAttributes {
7584
+ None = "None",
7585
+ SpecialName = "SpecialName",
7586
+ RTSpecialName = "RTSpecialName"
7587
+ }
6355
7588
  export declare enum FeeStructureFeeType {
6356
7589
  MANAGEMENT_FEE = "MANAGEMENT_FEE",
6357
7590
  PERFORMANCE_FEE = "PERFORMANCE_FEE",
@@ -6359,6 +7592,38 @@ export declare enum FeeStructureFeeType {
6359
7592
  SALES_LOAD = "SALES_LOAD",
6360
7593
  EARLY_REDEMPTION_FEE = "EARLY_REDEMPTION_FEE"
6361
7594
  }
7595
+ export declare enum FieldInfoMemberType {
7596
+ Constructor = "Constructor",
7597
+ Event = "Event",
7598
+ Field = "Field",
7599
+ Method = "Method",
7600
+ Property = "Property",
7601
+ TypeInfo = "TypeInfo",
7602
+ Custom = "Custom",
7603
+ NestedType = "NestedType",
7604
+ All = "All"
7605
+ }
7606
+ export declare enum FieldInfoAttributes {
7607
+ PrivateScope = "PrivateScope",
7608
+ Private = "Private",
7609
+ FamANDAssem = "FamANDAssem",
7610
+ Assembly = "Assembly",
7611
+ Family = "Family",
7612
+ FamORAssem = "FamORAssem",
7613
+ Public = "Public",
7614
+ FieldAccessMask = "FieldAccessMask",
7615
+ Static = "Static",
7616
+ InitOnly = "InitOnly",
7617
+ Literal = "Literal",
7618
+ NotSerialized = "NotSerialized",
7619
+ HasFieldRVA = "HasFieldRVA",
7620
+ SpecialName = "SpecialName",
7621
+ RTSpecialName = "RTSpecialName",
7622
+ HasFieldMarshal = "HasFieldMarshal",
7623
+ PinvokeImpl = "PinvokeImpl",
7624
+ HasDefault = "HasDefault",
7625
+ ReservedMask = "ReservedMask"
7626
+ }
6362
7627
  export declare enum FinancialInstitutionType {
6363
7628
  IntroducingBrokerDealer = "IntroducingBrokerDealer",
6364
7629
  SelfClearingBrokerDealer = "SelfClearingBrokerDealer",
@@ -6464,6 +7729,133 @@ export declare enum LayeredSPVFundStructure {
6464
7729
  ThreeCOne = "ThreeCOne",
6465
7730
  ThreeCSeven = "ThreeCSeven"
6466
7731
  }
7732
+ export declare enum MemberInfoMemberType {
7733
+ Constructor = "Constructor",
7734
+ Event = "Event",
7735
+ Field = "Field",
7736
+ Method = "Method",
7737
+ Property = "Property",
7738
+ TypeInfo = "TypeInfo",
7739
+ Custom = "Custom",
7740
+ NestedType = "NestedType",
7741
+ All = "All"
7742
+ }
7743
+ export declare enum MethodBaseMemberType {
7744
+ Constructor = "Constructor",
7745
+ Event = "Event",
7746
+ Field = "Field",
7747
+ Method = "Method",
7748
+ Property = "Property",
7749
+ TypeInfo = "TypeInfo",
7750
+ Custom = "Custom",
7751
+ NestedType = "NestedType",
7752
+ All = "All"
7753
+ }
7754
+ export declare enum MethodBaseAttributes {
7755
+ PrivateScope = "PrivateScope",
7756
+ Private = "Private",
7757
+ FamANDAssem = "FamANDAssem",
7758
+ Assembly = "Assembly",
7759
+ Family = "Family",
7760
+ FamORAssem = "FamORAssem",
7761
+ Public = "Public",
7762
+ MemberAccessMask = "MemberAccessMask",
7763
+ UnmanagedExport = "UnmanagedExport",
7764
+ Static = "Static",
7765
+ Final = "Final",
7766
+ Virtual = "Virtual",
7767
+ HideBySig = "HideBySig",
7768
+ NewSlot = "NewSlot",
7769
+ CheckAccessOnOverride = "CheckAccessOnOverride",
7770
+ Abstract = "Abstract",
7771
+ SpecialName = "SpecialName",
7772
+ RTSpecialName = "RTSpecialName",
7773
+ PinvokeImpl = "PinvokeImpl",
7774
+ HasSecurity = "HasSecurity",
7775
+ RequireSecObject = "RequireSecObject",
7776
+ ReservedMask = "ReservedMask"
7777
+ }
7778
+ export declare enum MethodBaseMethodImplementationFlags {
7779
+ IL = "IL",
7780
+ Native = "Native",
7781
+ OPTIL = "OPTIL",
7782
+ CodeTypeMask = "CodeTypeMask",
7783
+ ManagedMask = "ManagedMask",
7784
+ NoInlining = "NoInlining",
7785
+ ForwardRef = "ForwardRef",
7786
+ Synchronized = "Synchronized",
7787
+ NoOptimization = "NoOptimization",
7788
+ PreserveSig = "PreserveSig",
7789
+ AggressiveInlining = "AggressiveInlining",
7790
+ AggressiveOptimization = "AggressiveOptimization",
7791
+ InternalCall = "InternalCall",
7792
+ MaxMethodImplVal = "MaxMethodImplVal"
7793
+ }
7794
+ export declare enum MethodBaseCallingConvention {
7795
+ Standard = "Standard",
7796
+ VarArgs = "VarArgs",
7797
+ Any = "Any",
7798
+ HasThis = "HasThis",
7799
+ ExplicitThis = "ExplicitThis"
7800
+ }
7801
+ export declare enum MethodInfoAttributes {
7802
+ PrivateScope = "PrivateScope",
7803
+ Private = "Private",
7804
+ FamANDAssem = "FamANDAssem",
7805
+ Assembly = "Assembly",
7806
+ Family = "Family",
7807
+ FamORAssem = "FamORAssem",
7808
+ Public = "Public",
7809
+ MemberAccessMask = "MemberAccessMask",
7810
+ UnmanagedExport = "UnmanagedExport",
7811
+ Static = "Static",
7812
+ Final = "Final",
7813
+ Virtual = "Virtual",
7814
+ HideBySig = "HideBySig",
7815
+ NewSlot = "NewSlot",
7816
+ CheckAccessOnOverride = "CheckAccessOnOverride",
7817
+ Abstract = "Abstract",
7818
+ SpecialName = "SpecialName",
7819
+ RTSpecialName = "RTSpecialName",
7820
+ PinvokeImpl = "PinvokeImpl",
7821
+ HasSecurity = "HasSecurity",
7822
+ RequireSecObject = "RequireSecObject",
7823
+ ReservedMask = "ReservedMask"
7824
+ }
7825
+ export declare enum MethodInfoMethodImplementationFlags {
7826
+ IL = "IL",
7827
+ Native = "Native",
7828
+ OPTIL = "OPTIL",
7829
+ CodeTypeMask = "CodeTypeMask",
7830
+ ManagedMask = "ManagedMask",
7831
+ NoInlining = "NoInlining",
7832
+ ForwardRef = "ForwardRef",
7833
+ Synchronized = "Synchronized",
7834
+ NoOptimization = "NoOptimization",
7835
+ PreserveSig = "PreserveSig",
7836
+ AggressiveInlining = "AggressiveInlining",
7837
+ AggressiveOptimization = "AggressiveOptimization",
7838
+ InternalCall = "InternalCall",
7839
+ MaxMethodImplVal = "MaxMethodImplVal"
7840
+ }
7841
+ export declare enum MethodInfoCallingConvention {
7842
+ Standard = "Standard",
7843
+ VarArgs = "VarArgs",
7844
+ Any = "Any",
7845
+ HasThis = "HasThis",
7846
+ ExplicitThis = "ExplicitThis"
7847
+ }
7848
+ export declare enum MethodInfoMemberType {
7849
+ Constructor = "Constructor",
7850
+ Event = "Event",
7851
+ Field = "Field",
7852
+ Method = "Method",
7853
+ Property = "Property",
7854
+ TypeInfo = "TypeInfo",
7855
+ Custom = "Custom",
7856
+ NestedType = "NestedType",
7857
+ All = "All"
7858
+ }
6467
7859
  export declare enum ModifyIndividualInvestorQualifiedStatus {
6468
7860
  QUALIFIED_PURCHASER = "QUALIFIED_PURCHASER",
6469
7861
  QUALIFIED_CLIENT = "QUALIFIED_CLIENT",
@@ -6489,6 +7881,19 @@ export declare enum MonarkStageTransitionStage {
6489
7881
  LIQUIDATION = "LIQUIDATION",
6490
7882
  DISSOLVED = "DISSOLVED"
6491
7883
  }
7884
+ export declare enum ParameterInfoAttributes {
7885
+ None = "None",
7886
+ In = "In",
7887
+ Out = "Out",
7888
+ Lcid = "Lcid",
7889
+ Retval = "Retval",
7890
+ Optional = "Optional",
7891
+ HasDefault = "HasDefault",
7892
+ HasFieldMarshal = "HasFieldMarshal",
7893
+ Reserved3 = "Reserved3",
7894
+ Reserved4 = "Reserved4",
7895
+ ReservedMask = "ReservedMask"
7896
+ }
6492
7897
  export declare enum PartnerType {
6493
7898
  BrokerageFirm = "BrokerageFirm",
6494
7899
  ThirdPartyManager = "ThirdPartyManager",
@@ -6574,6 +7979,90 @@ export declare enum PreIPOCompanySPVMonarkStage {
6574
7979
  LIQUIDATION = "LIQUIDATION",
6575
7980
  DISSOLVED = "DISSOLVED"
6576
7981
  }
7982
+ export declare enum PropertyInfoMemberType {
7983
+ Constructor = "Constructor",
7984
+ Event = "Event",
7985
+ Field = "Field",
7986
+ Method = "Method",
7987
+ Property = "Property",
7988
+ TypeInfo = "TypeInfo",
7989
+ Custom = "Custom",
7990
+ NestedType = "NestedType",
7991
+ All = "All"
7992
+ }
7993
+ export declare enum PropertyInfoAttributes {
7994
+ None = "None",
7995
+ SpecialName = "SpecialName",
7996
+ RTSpecialName = "RTSpecialName",
7997
+ HasDefault = "HasDefault",
7998
+ Reserved2 = "Reserved2",
7999
+ Reserved3 = "Reserved3",
8000
+ Reserved4 = "Reserved4",
8001
+ ReservedMask = "ReservedMask"
8002
+ }
8003
+ export declare enum QuestionnaireAnswerApiResponseStatusCode {
8004
+ Continue = "Continue",
8005
+ SwitchingProtocols = "SwitchingProtocols",
8006
+ Processing = "Processing",
8007
+ EarlyHints = "EarlyHints",
8008
+ OK = "OK",
8009
+ Created = "Created",
8010
+ Accepted = "Accepted",
8011
+ NonAuthoritativeInformation = "NonAuthoritativeInformation",
8012
+ NoContent = "NoContent",
8013
+ ResetContent = "ResetContent",
8014
+ PartialContent = "PartialContent",
8015
+ MultiStatus = "MultiStatus",
8016
+ AlreadyReported = "AlreadyReported",
8017
+ IMUsed = "IMUsed",
8018
+ MultipleChoices = "MultipleChoices",
8019
+ MovedPermanently = "MovedPermanently",
8020
+ Found = "Found",
8021
+ SeeOther = "SeeOther",
8022
+ NotModified = "NotModified",
8023
+ UseProxy = "UseProxy",
8024
+ Unused = "Unused",
8025
+ TemporaryRedirect = "TemporaryRedirect",
8026
+ PermanentRedirect = "PermanentRedirect",
8027
+ BadRequest = "BadRequest",
8028
+ Unauthorized = "Unauthorized",
8029
+ PaymentRequired = "PaymentRequired",
8030
+ Forbidden = "Forbidden",
8031
+ NotFound = "NotFound",
8032
+ MethodNotAllowed = "MethodNotAllowed",
8033
+ NotAcceptable = "NotAcceptable",
8034
+ ProxyAuthenticationRequired = "ProxyAuthenticationRequired",
8035
+ RequestTimeout = "RequestTimeout",
8036
+ Conflict = "Conflict",
8037
+ Gone = "Gone",
8038
+ LengthRequired = "LengthRequired",
8039
+ PreconditionFailed = "PreconditionFailed",
8040
+ RequestEntityTooLarge = "RequestEntityTooLarge",
8041
+ RequestUriTooLong = "RequestUriTooLong",
8042
+ UnsupportedMediaType = "UnsupportedMediaType",
8043
+ RequestedRangeNotSatisfiable = "RequestedRangeNotSatisfiable",
8044
+ ExpectationFailed = "ExpectationFailed",
8045
+ MisdirectedRequest = "MisdirectedRequest",
8046
+ UnprocessableEntity = "UnprocessableEntity",
8047
+ Locked = "Locked",
8048
+ FailedDependency = "FailedDependency",
8049
+ UpgradeRequired = "UpgradeRequired",
8050
+ PreconditionRequired = "PreconditionRequired",
8051
+ TooManyRequests = "TooManyRequests",
8052
+ RequestHeaderFieldsTooLarge = "RequestHeaderFieldsTooLarge",
8053
+ UnavailableForLegalReasons = "UnavailableForLegalReasons",
8054
+ InternalServerError = "InternalServerError",
8055
+ NotImplemented = "NotImplemented",
8056
+ BadGateway = "BadGateway",
8057
+ ServiceUnavailable = "ServiceUnavailable",
8058
+ GatewayTimeout = "GatewayTimeout",
8059
+ HttpVersionNotSupported = "HttpVersionNotSupported",
8060
+ VariantAlsoNegotiates = "VariantAlsoNegotiates",
8061
+ InsufficientStorage = "InsufficientStorage",
8062
+ LoopDetected = "LoopDetected",
8063
+ NotExtended = "NotExtended",
8064
+ NetworkAuthenticationRequired = "NetworkAuthenticationRequired"
8065
+ }
6577
8066
  export declare enum QuestionnaireQuestionStatus {
6578
8067
  DISABLED = "DISABLED",
6579
8068
  ACTIVE = "ACTIVE"
@@ -6653,6 +8142,109 @@ export declare enum RegisteredFundSubscriptionActionResponsibleParty {
6653
8142
  Investor = "Investor",
6654
8143
  Advisor = "Advisor"
6655
8144
  }
8145
+ export declare enum StructLayoutAttributeValue {
8146
+ Sequential = "Sequential",
8147
+ Explicit = "Explicit",
8148
+ Auto = "Auto"
8149
+ }
8150
+ export declare enum TypeMemberType {
8151
+ Constructor = "Constructor",
8152
+ Event = "Event",
8153
+ Field = "Field",
8154
+ Method = "Method",
8155
+ Property = "Property",
8156
+ TypeInfo = "TypeInfo",
8157
+ Custom = "Custom",
8158
+ NestedType = "NestedType",
8159
+ All = "All"
8160
+ }
8161
+ export declare enum TypeGenericParameterAttributes {
8162
+ None = "None",
8163
+ Covariant = "Covariant",
8164
+ Contravariant = "Contravariant",
8165
+ VarianceMask = "VarianceMask",
8166
+ ReferenceTypeConstraint = "ReferenceTypeConstraint",
8167
+ NotNullableValueTypeConstraint = "NotNullableValueTypeConstraint",
8168
+ DefaultConstructorConstraint = "DefaultConstructorConstraint",
8169
+ SpecialConstraintMask = "SpecialConstraintMask"
8170
+ }
8171
+ export declare enum TypeAttributes {
8172
+ NotPublic = "NotPublic",
8173
+ Public = "Public",
8174
+ NestedPublic = "NestedPublic",
8175
+ NestedPrivate = "NestedPrivate",
8176
+ NestedFamily = "NestedFamily",
8177
+ NestedAssembly = "NestedAssembly",
8178
+ NestedFamANDAssem = "NestedFamANDAssem",
8179
+ VisibilityMask = "VisibilityMask",
8180
+ SequentialLayout = "SequentialLayout",
8181
+ ExplicitLayout = "ExplicitLayout",
8182
+ LayoutMask = "LayoutMask",
8183
+ Interface = "Interface",
8184
+ Abstract = "Abstract",
8185
+ Sealed = "Sealed",
8186
+ SpecialName = "SpecialName",
8187
+ RTSpecialName = "RTSpecialName",
8188
+ Import = "Import",
8189
+ Serializable = "Serializable",
8190
+ WindowsRuntime = "WindowsRuntime",
8191
+ UnicodeClass = "UnicodeClass",
8192
+ AutoClass = "AutoClass",
8193
+ StringFormatMask = "StringFormatMask",
8194
+ HasSecurity = "HasSecurity",
8195
+ ReservedMask = "ReservedMask",
8196
+ BeforeFieldInit = "BeforeFieldInit",
8197
+ CustomFormatMask = "CustomFormatMask"
8198
+ }
8199
+ export declare enum TypeInfoMemberType {
8200
+ Constructor = "Constructor",
8201
+ Event = "Event",
8202
+ Field = "Field",
8203
+ Method = "Method",
8204
+ Property = "Property",
8205
+ TypeInfo = "TypeInfo",
8206
+ Custom = "Custom",
8207
+ NestedType = "NestedType",
8208
+ All = "All"
8209
+ }
8210
+ export declare enum TypeInfoGenericParameterAttributes {
8211
+ None = "None",
8212
+ Covariant = "Covariant",
8213
+ Contravariant = "Contravariant",
8214
+ VarianceMask = "VarianceMask",
8215
+ ReferenceTypeConstraint = "ReferenceTypeConstraint",
8216
+ NotNullableValueTypeConstraint = "NotNullableValueTypeConstraint",
8217
+ DefaultConstructorConstraint = "DefaultConstructorConstraint",
8218
+ SpecialConstraintMask = "SpecialConstraintMask"
8219
+ }
8220
+ export declare enum TypeInfoAttributes {
8221
+ NotPublic = "NotPublic",
8222
+ Public = "Public",
8223
+ NestedPublic = "NestedPublic",
8224
+ NestedPrivate = "NestedPrivate",
8225
+ NestedFamily = "NestedFamily",
8226
+ NestedAssembly = "NestedAssembly",
8227
+ NestedFamANDAssem = "NestedFamANDAssem",
8228
+ VisibilityMask = "VisibilityMask",
8229
+ SequentialLayout = "SequentialLayout",
8230
+ ExplicitLayout = "ExplicitLayout",
8231
+ LayoutMask = "LayoutMask",
8232
+ Interface = "Interface",
8233
+ Abstract = "Abstract",
8234
+ Sealed = "Sealed",
8235
+ SpecialName = "SpecialName",
8236
+ RTSpecialName = "RTSpecialName",
8237
+ Import = "Import",
8238
+ Serializable = "Serializable",
8239
+ WindowsRuntime = "WindowsRuntime",
8240
+ UnicodeClass = "UnicodeClass",
8241
+ AutoClass = "AutoClass",
8242
+ StringFormatMask = "StringFormatMask",
8243
+ HasSecurity = "HasSecurity",
8244
+ ReservedMask = "ReservedMask",
8245
+ BeforeFieldInit = "BeforeFieldInit",
8246
+ CustomFormatMask = "CustomFormatMask"
8247
+ }
6656
8248
  export declare enum UpdateEntityInvestorEntityType {
6657
8249
  SOLE_PROPRIETOR = "SOLE_PROPRIETOR",
6658
8250
  SINGLE_MEMBER_LLC = "SINGLE_MEMBER_LLC",