@monarkmarkets/api-client 1.2.5 → 1.2.7
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 +1479 -28
- package/dist/Client.js +2222 -16
- 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.
|
|
@@ -760,13 +770,24 @@ export declare class Client {
|
|
|
760
770
|
*/
|
|
761
771
|
questionnaireAnswerPOST(body: CreateQuestionnaireAnswer | undefined): Promise<QuestionnaireAnswer>;
|
|
762
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>;
|
|
763
784
|
/**
|
|
764
785
|
* Get a QuestionnaireAnswer by Id
|
|
765
786
|
* @param id ID of the QuestionnaireAnswer to find.
|
|
766
787
|
* @return Returns the QuestionnaireAnswer with the specified Id.
|
|
767
788
|
*/
|
|
768
|
-
|
|
769
|
-
protected
|
|
789
|
+
questionnaireAnswerGET2(id: string): Promise<QuestionnaireAnswer>;
|
|
790
|
+
protected processQuestionnaireAnswerGET2(response: Response): Promise<QuestionnaireAnswer>;
|
|
770
791
|
/**
|
|
771
792
|
* Get the RegisteredFund by the specified Id.
|
|
772
793
|
* @param id ID of the RegisteredFund to find.
|
|
@@ -783,7 +804,7 @@ export declare class Client {
|
|
|
783
804
|
* @param pageSize (optional) The maximum number of items to return in each page, defaults to 25.
|
|
784
805
|
* @return OK
|
|
785
806
|
*/
|
|
786
|
-
registeredFund2(searchTerm: string | undefined, sortOrder:
|
|
807
|
+
registeredFund2(searchTerm: string | undefined, sortOrder: SortOrder16 | undefined, page: number | undefined, pageSize: number | undefined): Promise<RegisteredFundApiResponse>;
|
|
787
808
|
protected processRegisteredFund2(response: Response): Promise<RegisteredFundApiResponse>;
|
|
788
809
|
/**
|
|
789
810
|
* Creates a new registered fund subscription.
|
|
@@ -801,7 +822,7 @@ export declare class Client {
|
|
|
801
822
|
* @param sortOrder (optional) Sort order for results (default: Descending).
|
|
802
823
|
* @return OK
|
|
803
824
|
*/
|
|
804
|
-
registeredFundSubscriptionGET(registeredFundId: string | undefined, investorId: string | undefined, pageNumber: number | undefined, pageSize: number | undefined, sortOrder:
|
|
825
|
+
registeredFundSubscriptionGET(registeredFundId: string | undefined, investorId: string | undefined, pageNumber: number | undefined, pageSize: number | undefined, sortOrder: SortOrder17 | undefined): Promise<RegisteredFundSubscriptionApiResponse>;
|
|
805
826
|
protected processRegisteredFundSubscriptionGET(response: Response): Promise<RegisteredFundSubscriptionApiResponse>;
|
|
806
827
|
/**
|
|
807
828
|
* Gets a subscription by ID.
|
|
@@ -883,7 +904,7 @@ export declare class Client {
|
|
|
883
904
|
* @param sortOrder (optional) Order of which to sort the webhooks by. Default is Descending
|
|
884
905
|
* @return Returns a list of Webhooks.
|
|
885
906
|
*/
|
|
886
|
-
webhookGET(page: number | undefined, pageSize: number | undefined, sortOrder:
|
|
907
|
+
webhookGET(page: number | undefined, pageSize: number | undefined, sortOrder: SortOrder18 | undefined): Promise<WebhookApiResponse>;
|
|
887
908
|
protected processWebhookGET(response: Response): Promise<WebhookApiResponse>;
|
|
888
909
|
/**
|
|
889
910
|
* Update a Webhook’s Information
|
|
@@ -918,7 +939,7 @@ export declare class Client {
|
|
|
918
939
|
* @param pageSize (optional)
|
|
919
940
|
* @return Returns a list of Webhook Events.
|
|
920
941
|
*/
|
|
921
|
-
events(id: string, from: Date, to: Date, sortOrder:
|
|
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>;
|
|
922
943
|
protected processEvents(response: Response): Promise<WebhookEventApiResponse>;
|
|
923
944
|
}
|
|
924
945
|
/** Represents the version information of the API */
|
|
@@ -935,6 +956,50 @@ export interface IApiVersion {
|
|
|
935
956
|
/** The version of the API */
|
|
936
957
|
version?: string | undefined;
|
|
937
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
|
+
}
|
|
938
1003
|
export declare class BulkPreIPOCompany implements IBulkPreIPOCompany {
|
|
939
1004
|
/** Unique ID associated with a PreIPOCompany. */
|
|
940
1005
|
id: string;
|
|
@@ -1130,8 +1195,6 @@ export declare class BulkPreIPOCompanySPV implements IBulkPreIPOCompanySPV {
|
|
|
1130
1195
|
description?: string | undefined;
|
|
1131
1196
|
/** A list of notable investors associated with an SPV. */
|
|
1132
1197
|
notableInvestors?: string[] | undefined;
|
|
1133
|
-
/** The name of the Master LLC. */
|
|
1134
|
-
masterLLCName?: string | undefined;
|
|
1135
1198
|
/** The one time, up front management fee charged by the SPV. */
|
|
1136
1199
|
managementFee?: number | undefined;
|
|
1137
1200
|
/** The number of years over which the management fee will be paid. SPVs offered through Monark will have this number set to 1, as the SPV will charge a one time up front management fee. */
|
|
@@ -1216,8 +1279,6 @@ export interface IBulkPreIPOCompanySPV {
|
|
|
1216
1279
|
description?: string | undefined;
|
|
1217
1280
|
/** A list of notable investors associated with an SPV. */
|
|
1218
1281
|
notableInvestors?: string[] | undefined;
|
|
1219
|
-
/** The name of the Master LLC. */
|
|
1220
|
-
masterLLCName?: string | undefined;
|
|
1221
1282
|
/** The one time, up front management fee charged by the SPV. */
|
|
1222
1283
|
managementFee?: number | undefined;
|
|
1223
1284
|
/** The number of years over which the management fee will be paid. SPVs offered through Monark will have this number set to 1, as the SPV will charge a one time up front management fee. */
|
|
@@ -1297,6 +1358,114 @@ export interface ICitation {
|
|
|
1297
1358
|
/** Updated at the specified date. */
|
|
1298
1359
|
updatedAt?: Date | undefined;
|
|
1299
1360
|
}
|
|
1361
|
+
export declare class ConstructorInfo implements IConstructorInfo {
|
|
1362
|
+
readonly name?: string | undefined;
|
|
1363
|
+
readonly declaringType?: Type | undefined;
|
|
1364
|
+
readonly reflectedType?: Type | undefined;
|
|
1365
|
+
readonly module?: Module | undefined;
|
|
1366
|
+
readonly customAttributes?: CustomAttributeData[] | undefined;
|
|
1367
|
+
readonly isCollectible?: boolean;
|
|
1368
|
+
readonly metadataToken?: number;
|
|
1369
|
+
readonly attributes?: ConstructorInfoAttributes;
|
|
1370
|
+
readonly methodImplementationFlags?: ConstructorInfoMethodImplementationFlags;
|
|
1371
|
+
readonly callingConvention?: ConstructorInfoCallingConvention;
|
|
1372
|
+
readonly isAbstract?: boolean;
|
|
1373
|
+
readonly isConstructor?: boolean;
|
|
1374
|
+
readonly isFinal?: boolean;
|
|
1375
|
+
readonly isHideBySig?: boolean;
|
|
1376
|
+
readonly isSpecialName?: boolean;
|
|
1377
|
+
readonly isStatic?: boolean;
|
|
1378
|
+
readonly isVirtual?: boolean;
|
|
1379
|
+
readonly isAssembly?: boolean;
|
|
1380
|
+
readonly isFamily?: boolean;
|
|
1381
|
+
readonly isFamilyAndAssembly?: boolean;
|
|
1382
|
+
readonly isFamilyOrAssembly?: boolean;
|
|
1383
|
+
readonly isPrivate?: boolean;
|
|
1384
|
+
readonly isPublic?: boolean;
|
|
1385
|
+
readonly isConstructedGenericMethod?: boolean;
|
|
1386
|
+
readonly isGenericMethod?: boolean;
|
|
1387
|
+
readonly isGenericMethodDefinition?: boolean;
|
|
1388
|
+
readonly containsGenericParameters?: boolean;
|
|
1389
|
+
readonly methodHandle?: RuntimeMethodHandle;
|
|
1390
|
+
readonly isSecurityCritical?: boolean;
|
|
1391
|
+
readonly isSecuritySafeCritical?: boolean;
|
|
1392
|
+
readonly isSecurityTransparent?: boolean;
|
|
1393
|
+
readonly memberType?: ConstructorInfoMemberType;
|
|
1394
|
+
constructor(data?: IConstructorInfo);
|
|
1395
|
+
init(_data?: any): void;
|
|
1396
|
+
static fromJS(data: any): ConstructorInfo;
|
|
1397
|
+
toJSON(data?: any): any;
|
|
1398
|
+
}
|
|
1399
|
+
export interface IConstructorInfo {
|
|
1400
|
+
name?: string | undefined;
|
|
1401
|
+
declaringType?: Type | undefined;
|
|
1402
|
+
reflectedType?: Type | undefined;
|
|
1403
|
+
module?: Module | undefined;
|
|
1404
|
+
customAttributes?: CustomAttributeData[] | undefined;
|
|
1405
|
+
isCollectible?: boolean;
|
|
1406
|
+
metadataToken?: number;
|
|
1407
|
+
attributes?: ConstructorInfoAttributes;
|
|
1408
|
+
methodImplementationFlags?: ConstructorInfoMethodImplementationFlags;
|
|
1409
|
+
callingConvention?: ConstructorInfoCallingConvention;
|
|
1410
|
+
isAbstract?: boolean;
|
|
1411
|
+
isConstructor?: boolean;
|
|
1412
|
+
isFinal?: boolean;
|
|
1413
|
+
isHideBySig?: boolean;
|
|
1414
|
+
isSpecialName?: boolean;
|
|
1415
|
+
isStatic?: boolean;
|
|
1416
|
+
isVirtual?: boolean;
|
|
1417
|
+
isAssembly?: boolean;
|
|
1418
|
+
isFamily?: boolean;
|
|
1419
|
+
isFamilyAndAssembly?: boolean;
|
|
1420
|
+
isFamilyOrAssembly?: boolean;
|
|
1421
|
+
isPrivate?: boolean;
|
|
1422
|
+
isPublic?: boolean;
|
|
1423
|
+
isConstructedGenericMethod?: boolean;
|
|
1424
|
+
isGenericMethod?: boolean;
|
|
1425
|
+
isGenericMethodDefinition?: boolean;
|
|
1426
|
+
containsGenericParameters?: boolean;
|
|
1427
|
+
methodHandle?: RuntimeMethodHandle;
|
|
1428
|
+
isSecurityCritical?: boolean;
|
|
1429
|
+
isSecuritySafeCritical?: boolean;
|
|
1430
|
+
isSecurityTransparent?: boolean;
|
|
1431
|
+
memberType?: ConstructorInfoMemberType;
|
|
1432
|
+
}
|
|
1433
|
+
export declare class Cookie implements ICookie {
|
|
1434
|
+
comment?: string | undefined;
|
|
1435
|
+
commentUri?: string | undefined;
|
|
1436
|
+
httpOnly?: boolean;
|
|
1437
|
+
discard?: boolean;
|
|
1438
|
+
domain?: string | undefined;
|
|
1439
|
+
expired?: boolean;
|
|
1440
|
+
expires?: Date;
|
|
1441
|
+
name?: string | undefined;
|
|
1442
|
+
path?: string | undefined;
|
|
1443
|
+
port?: string | undefined;
|
|
1444
|
+
secure?: boolean;
|
|
1445
|
+
readonly timeStamp?: Date;
|
|
1446
|
+
value?: string | undefined;
|
|
1447
|
+
version?: number;
|
|
1448
|
+
constructor(data?: ICookie);
|
|
1449
|
+
init(_data?: any): void;
|
|
1450
|
+
static fromJS(data: any): Cookie;
|
|
1451
|
+
toJSON(data?: any): any;
|
|
1452
|
+
}
|
|
1453
|
+
export interface ICookie {
|
|
1454
|
+
comment?: string | undefined;
|
|
1455
|
+
commentUri?: string | undefined;
|
|
1456
|
+
httpOnly?: boolean;
|
|
1457
|
+
discard?: boolean;
|
|
1458
|
+
domain?: string | undefined;
|
|
1459
|
+
expired?: boolean;
|
|
1460
|
+
expires?: Date;
|
|
1461
|
+
name?: string | undefined;
|
|
1462
|
+
path?: string | undefined;
|
|
1463
|
+
port?: string | undefined;
|
|
1464
|
+
secure?: boolean;
|
|
1465
|
+
timeStamp?: Date;
|
|
1466
|
+
value?: string | undefined;
|
|
1467
|
+
version?: number;
|
|
1468
|
+
}
|
|
1300
1469
|
export declare class CreateFinancialAdvisor implements ICreateFinancialAdvisor {
|
|
1301
1470
|
/** This is the unique identifier of the Institution that the Financial Advisor is attached to. */
|
|
1302
1471
|
financialInstitutionId?: string;
|
|
@@ -1633,6 +1802,50 @@ export interface ICreateWebhook {
|
|
|
1633
1802
|
/** Token value used to create a signature on webhook delivery. */
|
|
1634
1803
|
token: string;
|
|
1635
1804
|
}
|
|
1805
|
+
export declare class CustomAttributeData implements ICustomAttributeData {
|
|
1806
|
+
readonly attributeType?: Type | undefined;
|
|
1807
|
+
readonly constructor_?: ConstructorInfo | undefined;
|
|
1808
|
+
readonly constructorArguments?: CustomAttributeTypedArgument[] | undefined;
|
|
1809
|
+
readonly namedArguments?: CustomAttributeNamedArgument[] | undefined;
|
|
1810
|
+
constructor(data?: ICustomAttributeData);
|
|
1811
|
+
init(_data?: any): void;
|
|
1812
|
+
static fromJS(data: any): CustomAttributeData;
|
|
1813
|
+
toJSON(data?: any): any;
|
|
1814
|
+
}
|
|
1815
|
+
export interface ICustomAttributeData {
|
|
1816
|
+
attributeType?: Type | undefined;
|
|
1817
|
+
constructor_?: ConstructorInfo | undefined;
|
|
1818
|
+
constructorArguments?: CustomAttributeTypedArgument[] | undefined;
|
|
1819
|
+
namedArguments?: CustomAttributeNamedArgument[] | undefined;
|
|
1820
|
+
}
|
|
1821
|
+
export declare class CustomAttributeNamedArgument implements ICustomAttributeNamedArgument {
|
|
1822
|
+
memberInfo?: MemberInfo | undefined;
|
|
1823
|
+
readonly typedValue?: CustomAttributeTypedArgument;
|
|
1824
|
+
readonly memberName?: string | undefined;
|
|
1825
|
+
readonly isField?: boolean;
|
|
1826
|
+
constructor(data?: ICustomAttributeNamedArgument);
|
|
1827
|
+
init(_data?: any): void;
|
|
1828
|
+
static fromJS(data: any): CustomAttributeNamedArgument;
|
|
1829
|
+
toJSON(data?: any): any;
|
|
1830
|
+
}
|
|
1831
|
+
export interface ICustomAttributeNamedArgument {
|
|
1832
|
+
memberInfo?: MemberInfo | undefined;
|
|
1833
|
+
typedValue?: CustomAttributeTypedArgument;
|
|
1834
|
+
memberName?: string | undefined;
|
|
1835
|
+
isField?: boolean;
|
|
1836
|
+
}
|
|
1837
|
+
export declare class CustomAttributeTypedArgument implements ICustomAttributeTypedArgument {
|
|
1838
|
+
argumentType?: Type | undefined;
|
|
1839
|
+
value?: any | undefined;
|
|
1840
|
+
constructor(data?: ICustomAttributeTypedArgument);
|
|
1841
|
+
init(_data?: any): void;
|
|
1842
|
+
static fromJS(data: any): CustomAttributeTypedArgument;
|
|
1843
|
+
toJSON(data?: any): any;
|
|
1844
|
+
}
|
|
1845
|
+
export interface ICustomAttributeTypedArgument {
|
|
1846
|
+
argumentType?: Type | undefined;
|
|
1847
|
+
value?: any | undefined;
|
|
1848
|
+
}
|
|
1636
1849
|
/** Represents a document associated with the fund admin. */
|
|
1637
1850
|
export declare class Document implements IDocument {
|
|
1638
1851
|
/** Unique identifier for the document. */
|
|
@@ -1825,6 +2038,44 @@ https://github.com/country-regions/country-region-data/blob/master/data.json for
|
|
|
1825
2038
|
/** Trust type (nullable). */
|
|
1826
2039
|
trustType?: EntityInvestorTrustType | undefined;
|
|
1827
2040
|
}
|
|
2041
|
+
export declare class EventInfo implements IEventInfo {
|
|
2042
|
+
readonly name?: string | undefined;
|
|
2043
|
+
readonly declaringType?: Type | undefined;
|
|
2044
|
+
readonly reflectedType?: Type | undefined;
|
|
2045
|
+
readonly module?: Module | undefined;
|
|
2046
|
+
readonly customAttributes?: CustomAttributeData[] | undefined;
|
|
2047
|
+
readonly isCollectible?: boolean;
|
|
2048
|
+
readonly metadataToken?: number;
|
|
2049
|
+
readonly memberType?: EventInfoMemberType;
|
|
2050
|
+
readonly attributes?: EventInfoAttributes;
|
|
2051
|
+
readonly isSpecialName?: boolean;
|
|
2052
|
+
readonly addMethod?: MethodInfo | undefined;
|
|
2053
|
+
readonly removeMethod?: MethodInfo | undefined;
|
|
2054
|
+
readonly raiseMethod?: MethodInfo | undefined;
|
|
2055
|
+
readonly isMulticast?: boolean;
|
|
2056
|
+
readonly eventHandlerType?: Type | undefined;
|
|
2057
|
+
constructor(data?: IEventInfo);
|
|
2058
|
+
init(_data?: any): void;
|
|
2059
|
+
static fromJS(data: any): EventInfo;
|
|
2060
|
+
toJSON(data?: any): any;
|
|
2061
|
+
}
|
|
2062
|
+
export interface IEventInfo {
|
|
2063
|
+
name?: string | undefined;
|
|
2064
|
+
declaringType?: Type | undefined;
|
|
2065
|
+
reflectedType?: Type | undefined;
|
|
2066
|
+
module?: Module | undefined;
|
|
2067
|
+
customAttributes?: CustomAttributeData[] | undefined;
|
|
2068
|
+
isCollectible?: boolean;
|
|
2069
|
+
metadataToken?: number;
|
|
2070
|
+
memberType?: EventInfoMemberType;
|
|
2071
|
+
attributes?: EventInfoAttributes;
|
|
2072
|
+
isSpecialName?: boolean;
|
|
2073
|
+
addMethod?: MethodInfo | undefined;
|
|
2074
|
+
removeMethod?: MethodInfo | undefined;
|
|
2075
|
+
raiseMethod?: MethodInfo | undefined;
|
|
2076
|
+
isMulticast?: boolean;
|
|
2077
|
+
eventHandlerType?: Type | undefined;
|
|
2078
|
+
}
|
|
1828
2079
|
/** Represents a fee structure that can be associated with either a registered fund or a share class. */
|
|
1829
2080
|
export declare class FeeStructure implements IFeeStructure {
|
|
1830
2081
|
/** Unique ID of the fee structure. */
|
|
@@ -1859,6 +2110,66 @@ export interface IFeeStructure {
|
|
|
1859
2110
|
/** Text field used to describe the fee structure. */
|
|
1860
2111
|
description?: string | undefined;
|
|
1861
2112
|
}
|
|
2113
|
+
export declare class FieldInfo implements IFieldInfo {
|
|
2114
|
+
readonly name?: string | undefined;
|
|
2115
|
+
readonly declaringType?: Type | undefined;
|
|
2116
|
+
readonly reflectedType?: Type | undefined;
|
|
2117
|
+
readonly module?: Module | undefined;
|
|
2118
|
+
readonly customAttributes?: CustomAttributeData[] | undefined;
|
|
2119
|
+
readonly isCollectible?: boolean;
|
|
2120
|
+
readonly metadataToken?: number;
|
|
2121
|
+
readonly memberType?: FieldInfoMemberType;
|
|
2122
|
+
readonly attributes?: FieldInfoAttributes;
|
|
2123
|
+
readonly fieldType?: Type | undefined;
|
|
2124
|
+
readonly isInitOnly?: boolean;
|
|
2125
|
+
readonly isLiteral?: boolean;
|
|
2126
|
+
readonly isNotSerialized?: boolean;
|
|
2127
|
+
readonly isPinvokeImpl?: boolean;
|
|
2128
|
+
readonly isSpecialName?: boolean;
|
|
2129
|
+
readonly isStatic?: boolean;
|
|
2130
|
+
readonly isAssembly?: boolean;
|
|
2131
|
+
readonly isFamily?: boolean;
|
|
2132
|
+
readonly isFamilyAndAssembly?: boolean;
|
|
2133
|
+
readonly isFamilyOrAssembly?: boolean;
|
|
2134
|
+
readonly isPrivate?: boolean;
|
|
2135
|
+
readonly isPublic?: boolean;
|
|
2136
|
+
readonly isSecurityCritical?: boolean;
|
|
2137
|
+
readonly isSecuritySafeCritical?: boolean;
|
|
2138
|
+
readonly isSecurityTransparent?: boolean;
|
|
2139
|
+
readonly fieldHandle?: RuntimeFieldHandle;
|
|
2140
|
+
constructor(data?: IFieldInfo);
|
|
2141
|
+
init(_data?: any): void;
|
|
2142
|
+
static fromJS(data: any): FieldInfo;
|
|
2143
|
+
toJSON(data?: any): any;
|
|
2144
|
+
}
|
|
2145
|
+
export interface IFieldInfo {
|
|
2146
|
+
name?: string | undefined;
|
|
2147
|
+
declaringType?: Type | undefined;
|
|
2148
|
+
reflectedType?: Type | undefined;
|
|
2149
|
+
module?: Module | undefined;
|
|
2150
|
+
customAttributes?: CustomAttributeData[] | undefined;
|
|
2151
|
+
isCollectible?: boolean;
|
|
2152
|
+
metadataToken?: number;
|
|
2153
|
+
memberType?: FieldInfoMemberType;
|
|
2154
|
+
attributes?: FieldInfoAttributes;
|
|
2155
|
+
fieldType?: Type | undefined;
|
|
2156
|
+
isInitOnly?: boolean;
|
|
2157
|
+
isLiteral?: boolean;
|
|
2158
|
+
isNotSerialized?: boolean;
|
|
2159
|
+
isPinvokeImpl?: boolean;
|
|
2160
|
+
isSpecialName?: boolean;
|
|
2161
|
+
isStatic?: boolean;
|
|
2162
|
+
isAssembly?: boolean;
|
|
2163
|
+
isFamily?: boolean;
|
|
2164
|
+
isFamilyAndAssembly?: boolean;
|
|
2165
|
+
isFamilyOrAssembly?: boolean;
|
|
2166
|
+
isPrivate?: boolean;
|
|
2167
|
+
isPublic?: boolean;
|
|
2168
|
+
isSecurityCritical?: boolean;
|
|
2169
|
+
isSecuritySafeCritical?: boolean;
|
|
2170
|
+
isSecurityTransparent?: boolean;
|
|
2171
|
+
fieldHandle?: RuntimeFieldHandle;
|
|
2172
|
+
}
|
|
1862
2173
|
/** FinancialAdvisor represents the financial advisor information. */
|
|
1863
2174
|
export declare class FinancialAdvisor implements IFinancialAdvisor {
|
|
1864
2175
|
/** Gets or sets id represents the unique id of the Financial Advisor on the internal system. */
|
|
@@ -2085,6 +2396,14 @@ export interface IFundAdvisor {
|
|
|
2085
2396
|
/** Main office phone number of fund advisor */
|
|
2086
2397
|
phone?: string | undefined;
|
|
2087
2398
|
}
|
|
2399
|
+
export declare class ICustomAttributeProvider implements IICustomAttributeProvider {
|
|
2400
|
+
constructor(data?: IICustomAttributeProvider);
|
|
2401
|
+
init(_data?: any): void;
|
|
2402
|
+
static fromJS(data: any): ICustomAttributeProvider;
|
|
2403
|
+
toJSON(data?: any): any;
|
|
2404
|
+
}
|
|
2405
|
+
export interface IICustomAttributeProvider {
|
|
2406
|
+
}
|
|
2088
2407
|
/** IndicationOfInterest represents the primary offering information on the IoI. */
|
|
2089
2408
|
export declare class IndicationOfInterest implements IIndicationOfInterest {
|
|
2090
2409
|
/** Unique ID associated with an IOI. */
|
|
@@ -2565,6 +2884,14 @@ https://github.com/country-regions/country-region-data/blob/master/data.json for
|
|
|
2565
2884
|
/** Date that KYC expires. */
|
|
2566
2885
|
kycUpdatedAt?: Date | undefined;
|
|
2567
2886
|
}
|
|
2887
|
+
export declare class IntPtr implements IIntPtr {
|
|
2888
|
+
constructor(data?: IIntPtr);
|
|
2889
|
+
init(_data?: any): void;
|
|
2890
|
+
static fromJS(data: any): IntPtr;
|
|
2891
|
+
toJSON(data?: any): any;
|
|
2892
|
+
}
|
|
2893
|
+
export interface IIntPtr {
|
|
2894
|
+
}
|
|
2568
2895
|
/** Investor represents the primary offering information on the investor. */
|
|
2569
2896
|
export declare class Investor implements IInvestor {
|
|
2570
2897
|
/** Unique ID, provided by Monark, associated with an Investor. */
|
|
@@ -2849,6 +3176,180 @@ export interface IListing {
|
|
|
2849
3176
|
/** Date the company was delisted, if applicable. */
|
|
2850
3177
|
delistedAt?: Date | undefined;
|
|
2851
3178
|
}
|
|
3179
|
+
export declare class MemberInfo implements IMemberInfo {
|
|
3180
|
+
readonly memberType?: MemberInfoMemberType;
|
|
3181
|
+
readonly name?: string | undefined;
|
|
3182
|
+
readonly declaringType?: Type | undefined;
|
|
3183
|
+
readonly reflectedType?: Type | undefined;
|
|
3184
|
+
readonly module?: Module | undefined;
|
|
3185
|
+
readonly customAttributes?: CustomAttributeData[] | undefined;
|
|
3186
|
+
readonly isCollectible?: boolean;
|
|
3187
|
+
readonly metadataToken?: number;
|
|
3188
|
+
constructor(data?: IMemberInfo);
|
|
3189
|
+
init(_data?: any): void;
|
|
3190
|
+
static fromJS(data: any): MemberInfo;
|
|
3191
|
+
toJSON(data?: any): any;
|
|
3192
|
+
}
|
|
3193
|
+
export interface IMemberInfo {
|
|
3194
|
+
memberType?: MemberInfoMemberType;
|
|
3195
|
+
name?: string | undefined;
|
|
3196
|
+
declaringType?: Type | undefined;
|
|
3197
|
+
reflectedType?: Type | undefined;
|
|
3198
|
+
module?: Module | undefined;
|
|
3199
|
+
customAttributes?: CustomAttributeData[] | undefined;
|
|
3200
|
+
isCollectible?: boolean;
|
|
3201
|
+
metadataToken?: number;
|
|
3202
|
+
}
|
|
3203
|
+
export declare class MethodBase implements IMethodBase {
|
|
3204
|
+
readonly memberType?: MethodBaseMemberType;
|
|
3205
|
+
readonly name?: string | undefined;
|
|
3206
|
+
readonly declaringType?: Type | undefined;
|
|
3207
|
+
readonly reflectedType?: Type | undefined;
|
|
3208
|
+
readonly module?: Module | undefined;
|
|
3209
|
+
readonly customAttributes?: CustomAttributeData[] | undefined;
|
|
3210
|
+
readonly isCollectible?: boolean;
|
|
3211
|
+
readonly metadataToken?: number;
|
|
3212
|
+
readonly attributes?: MethodBaseAttributes;
|
|
3213
|
+
readonly methodImplementationFlags?: MethodBaseMethodImplementationFlags;
|
|
3214
|
+
readonly callingConvention?: MethodBaseCallingConvention;
|
|
3215
|
+
readonly isAbstract?: boolean;
|
|
3216
|
+
readonly isConstructor?: boolean;
|
|
3217
|
+
readonly isFinal?: boolean;
|
|
3218
|
+
readonly isHideBySig?: boolean;
|
|
3219
|
+
readonly isSpecialName?: boolean;
|
|
3220
|
+
readonly isStatic?: boolean;
|
|
3221
|
+
readonly isVirtual?: boolean;
|
|
3222
|
+
readonly isAssembly?: boolean;
|
|
3223
|
+
readonly isFamily?: boolean;
|
|
3224
|
+
readonly isFamilyAndAssembly?: boolean;
|
|
3225
|
+
readonly isFamilyOrAssembly?: boolean;
|
|
3226
|
+
readonly isPrivate?: boolean;
|
|
3227
|
+
readonly isPublic?: boolean;
|
|
3228
|
+
readonly isConstructedGenericMethod?: boolean;
|
|
3229
|
+
readonly isGenericMethod?: boolean;
|
|
3230
|
+
readonly isGenericMethodDefinition?: boolean;
|
|
3231
|
+
readonly containsGenericParameters?: boolean;
|
|
3232
|
+
readonly methodHandle?: RuntimeMethodHandle;
|
|
3233
|
+
readonly isSecurityCritical?: boolean;
|
|
3234
|
+
readonly isSecuritySafeCritical?: boolean;
|
|
3235
|
+
readonly isSecurityTransparent?: boolean;
|
|
3236
|
+
constructor(data?: IMethodBase);
|
|
3237
|
+
init(_data?: any): void;
|
|
3238
|
+
static fromJS(data: any): MethodBase;
|
|
3239
|
+
toJSON(data?: any): any;
|
|
3240
|
+
}
|
|
3241
|
+
export interface IMethodBase {
|
|
3242
|
+
memberType?: MethodBaseMemberType;
|
|
3243
|
+
name?: string | undefined;
|
|
3244
|
+
declaringType?: Type | undefined;
|
|
3245
|
+
reflectedType?: Type | undefined;
|
|
3246
|
+
module?: Module | undefined;
|
|
3247
|
+
customAttributes?: CustomAttributeData[] | undefined;
|
|
3248
|
+
isCollectible?: boolean;
|
|
3249
|
+
metadataToken?: number;
|
|
3250
|
+
attributes?: MethodBaseAttributes;
|
|
3251
|
+
methodImplementationFlags?: MethodBaseMethodImplementationFlags;
|
|
3252
|
+
callingConvention?: MethodBaseCallingConvention;
|
|
3253
|
+
isAbstract?: boolean;
|
|
3254
|
+
isConstructor?: boolean;
|
|
3255
|
+
isFinal?: boolean;
|
|
3256
|
+
isHideBySig?: boolean;
|
|
3257
|
+
isSpecialName?: boolean;
|
|
3258
|
+
isStatic?: boolean;
|
|
3259
|
+
isVirtual?: boolean;
|
|
3260
|
+
isAssembly?: boolean;
|
|
3261
|
+
isFamily?: boolean;
|
|
3262
|
+
isFamilyAndAssembly?: boolean;
|
|
3263
|
+
isFamilyOrAssembly?: boolean;
|
|
3264
|
+
isPrivate?: boolean;
|
|
3265
|
+
isPublic?: boolean;
|
|
3266
|
+
isConstructedGenericMethod?: boolean;
|
|
3267
|
+
isGenericMethod?: boolean;
|
|
3268
|
+
isGenericMethodDefinition?: boolean;
|
|
3269
|
+
containsGenericParameters?: boolean;
|
|
3270
|
+
methodHandle?: RuntimeMethodHandle;
|
|
3271
|
+
isSecurityCritical?: boolean;
|
|
3272
|
+
isSecuritySafeCritical?: boolean;
|
|
3273
|
+
isSecurityTransparent?: boolean;
|
|
3274
|
+
}
|
|
3275
|
+
export declare class MethodInfo implements IMethodInfo {
|
|
3276
|
+
readonly name?: string | undefined;
|
|
3277
|
+
readonly declaringType?: Type | undefined;
|
|
3278
|
+
readonly reflectedType?: Type | undefined;
|
|
3279
|
+
readonly module?: Module | undefined;
|
|
3280
|
+
readonly customAttributes?: CustomAttributeData[] | undefined;
|
|
3281
|
+
readonly isCollectible?: boolean;
|
|
3282
|
+
readonly metadataToken?: number;
|
|
3283
|
+
readonly attributes?: MethodInfoAttributes;
|
|
3284
|
+
readonly methodImplementationFlags?: MethodInfoMethodImplementationFlags;
|
|
3285
|
+
readonly callingConvention?: MethodInfoCallingConvention;
|
|
3286
|
+
readonly isAbstract?: boolean;
|
|
3287
|
+
readonly isConstructor?: boolean;
|
|
3288
|
+
readonly isFinal?: boolean;
|
|
3289
|
+
readonly isHideBySig?: boolean;
|
|
3290
|
+
readonly isSpecialName?: boolean;
|
|
3291
|
+
readonly isStatic?: boolean;
|
|
3292
|
+
readonly isVirtual?: boolean;
|
|
3293
|
+
readonly isAssembly?: boolean;
|
|
3294
|
+
readonly isFamily?: boolean;
|
|
3295
|
+
readonly isFamilyAndAssembly?: boolean;
|
|
3296
|
+
readonly isFamilyOrAssembly?: boolean;
|
|
3297
|
+
readonly isPrivate?: boolean;
|
|
3298
|
+
readonly isPublic?: boolean;
|
|
3299
|
+
readonly isConstructedGenericMethod?: boolean;
|
|
3300
|
+
readonly isGenericMethod?: boolean;
|
|
3301
|
+
readonly isGenericMethodDefinition?: boolean;
|
|
3302
|
+
readonly containsGenericParameters?: boolean;
|
|
3303
|
+
readonly methodHandle?: RuntimeMethodHandle;
|
|
3304
|
+
readonly isSecurityCritical?: boolean;
|
|
3305
|
+
readonly isSecuritySafeCritical?: boolean;
|
|
3306
|
+
readonly isSecurityTransparent?: boolean;
|
|
3307
|
+
readonly memberType?: MethodInfoMemberType;
|
|
3308
|
+
readonly returnParameter?: ParameterInfo | undefined;
|
|
3309
|
+
readonly returnType?: Type | undefined;
|
|
3310
|
+
readonly returnTypeCustomAttributes?: ICustomAttributeProvider | undefined;
|
|
3311
|
+
constructor(data?: IMethodInfo);
|
|
3312
|
+
init(_data?: any): void;
|
|
3313
|
+
static fromJS(data: any): MethodInfo;
|
|
3314
|
+
toJSON(data?: any): any;
|
|
3315
|
+
}
|
|
3316
|
+
export interface IMethodInfo {
|
|
3317
|
+
name?: string | undefined;
|
|
3318
|
+
declaringType?: Type | undefined;
|
|
3319
|
+
reflectedType?: Type | undefined;
|
|
3320
|
+
module?: Module | undefined;
|
|
3321
|
+
customAttributes?: CustomAttributeData[] | undefined;
|
|
3322
|
+
isCollectible?: boolean;
|
|
3323
|
+
metadataToken?: number;
|
|
3324
|
+
attributes?: MethodInfoAttributes;
|
|
3325
|
+
methodImplementationFlags?: MethodInfoMethodImplementationFlags;
|
|
3326
|
+
callingConvention?: MethodInfoCallingConvention;
|
|
3327
|
+
isAbstract?: boolean;
|
|
3328
|
+
isConstructor?: boolean;
|
|
3329
|
+
isFinal?: boolean;
|
|
3330
|
+
isHideBySig?: boolean;
|
|
3331
|
+
isSpecialName?: boolean;
|
|
3332
|
+
isStatic?: boolean;
|
|
3333
|
+
isVirtual?: boolean;
|
|
3334
|
+
isAssembly?: boolean;
|
|
3335
|
+
isFamily?: boolean;
|
|
3336
|
+
isFamilyAndAssembly?: boolean;
|
|
3337
|
+
isFamilyOrAssembly?: boolean;
|
|
3338
|
+
isPrivate?: boolean;
|
|
3339
|
+
isPublic?: boolean;
|
|
3340
|
+
isConstructedGenericMethod?: boolean;
|
|
3341
|
+
isGenericMethod?: boolean;
|
|
3342
|
+
isGenericMethodDefinition?: boolean;
|
|
3343
|
+
containsGenericParameters?: boolean;
|
|
3344
|
+
methodHandle?: RuntimeMethodHandle;
|
|
3345
|
+
isSecurityCritical?: boolean;
|
|
3346
|
+
isSecuritySafeCritical?: boolean;
|
|
3347
|
+
isSecurityTransparent?: boolean;
|
|
3348
|
+
memberType?: MethodInfoMemberType;
|
|
3349
|
+
returnParameter?: ParameterInfo | undefined;
|
|
3350
|
+
returnType?: Type | undefined;
|
|
3351
|
+
returnTypeCustomAttributes?: ICustomAttributeProvider | undefined;
|
|
3352
|
+
}
|
|
2852
3353
|
/** Represents a significant event or milestone in the company’s lifecycle. */
|
|
2853
3354
|
export declare class Milestone implements IMilestone {
|
|
2854
3355
|
/** ID for the milestone. */
|
|
@@ -3001,6 +3502,42 @@ https://github.com/country-regions/country-region-data/blob/master/data.json for
|
|
|
3001
3502
|
/** The qualification status of an Investor. */
|
|
3002
3503
|
qualifiedStatus?: ModifyIndividualInvestorQualifiedStatus | undefined;
|
|
3003
3504
|
}
|
|
3505
|
+
export declare class Module implements IModule {
|
|
3506
|
+
readonly assembly?: Assembly | undefined;
|
|
3507
|
+
readonly fullyQualifiedName?: string | undefined;
|
|
3508
|
+
readonly name?: string | undefined;
|
|
3509
|
+
readonly mdStreamVersion?: number;
|
|
3510
|
+
readonly moduleVersionId?: string;
|
|
3511
|
+
readonly scopeName?: string | undefined;
|
|
3512
|
+
readonly moduleHandle?: ModuleHandle;
|
|
3513
|
+
readonly customAttributes?: CustomAttributeData[] | undefined;
|
|
3514
|
+
readonly metadataToken?: number;
|
|
3515
|
+
constructor(data?: IModule);
|
|
3516
|
+
init(_data?: any): void;
|
|
3517
|
+
static fromJS(data: any): Module;
|
|
3518
|
+
toJSON(data?: any): any;
|
|
3519
|
+
}
|
|
3520
|
+
export interface IModule {
|
|
3521
|
+
assembly?: Assembly | undefined;
|
|
3522
|
+
fullyQualifiedName?: string | undefined;
|
|
3523
|
+
name?: string | undefined;
|
|
3524
|
+
mdStreamVersion?: number;
|
|
3525
|
+
moduleVersionId?: string;
|
|
3526
|
+
scopeName?: string | undefined;
|
|
3527
|
+
moduleHandle?: ModuleHandle;
|
|
3528
|
+
customAttributes?: CustomAttributeData[] | undefined;
|
|
3529
|
+
metadataToken?: number;
|
|
3530
|
+
}
|
|
3531
|
+
export declare class ModuleHandle implements IModuleHandle {
|
|
3532
|
+
readonly mdStreamVersion?: number;
|
|
3533
|
+
constructor(data?: IModuleHandle);
|
|
3534
|
+
init(_data?: any): void;
|
|
3535
|
+
static fromJS(data: any): ModuleHandle;
|
|
3536
|
+
toJSON(data?: any): any;
|
|
3537
|
+
}
|
|
3538
|
+
export interface IModuleHandle {
|
|
3539
|
+
mdStreamVersion?: number;
|
|
3540
|
+
}
|
|
3004
3541
|
/** Represents a transition of an SPV to a specific stage in its lifecycle. */
|
|
3005
3542
|
export declare class MonarkStageTransition implements IMonarkStageTransition {
|
|
3006
3543
|
/** The stage the SPV transitioned to. */
|
|
@@ -3677,6 +4214,44 @@ export interface IPagination {
|
|
|
3677
4214
|
totalPages?: number;
|
|
3678
4215
|
currentPage?: number;
|
|
3679
4216
|
}
|
|
4217
|
+
export declare class ParameterInfo implements IParameterInfo {
|
|
4218
|
+
readonly attributes?: ParameterInfoAttributes;
|
|
4219
|
+
readonly member?: MemberInfo | undefined;
|
|
4220
|
+
readonly name?: string | undefined;
|
|
4221
|
+
readonly parameterType?: Type | undefined;
|
|
4222
|
+
readonly position?: number;
|
|
4223
|
+
readonly isIn?: boolean;
|
|
4224
|
+
readonly isLcid?: boolean;
|
|
4225
|
+
readonly isOptional?: boolean;
|
|
4226
|
+
readonly isOut?: boolean;
|
|
4227
|
+
readonly isRetval?: boolean;
|
|
4228
|
+
readonly defaultValue?: any | undefined;
|
|
4229
|
+
readonly rawDefaultValue?: any | undefined;
|
|
4230
|
+
readonly hasDefaultValue?: boolean;
|
|
4231
|
+
readonly customAttributes?: CustomAttributeData[] | undefined;
|
|
4232
|
+
readonly metadataToken?: number;
|
|
4233
|
+
constructor(data?: IParameterInfo);
|
|
4234
|
+
init(_data?: any): void;
|
|
4235
|
+
static fromJS(data: any): ParameterInfo;
|
|
4236
|
+
toJSON(data?: any): any;
|
|
4237
|
+
}
|
|
4238
|
+
export interface IParameterInfo {
|
|
4239
|
+
attributes?: ParameterInfoAttributes;
|
|
4240
|
+
member?: MemberInfo | undefined;
|
|
4241
|
+
name?: string | undefined;
|
|
4242
|
+
parameterType?: Type | undefined;
|
|
4243
|
+
position?: number;
|
|
4244
|
+
isIn?: boolean;
|
|
4245
|
+
isLcid?: boolean;
|
|
4246
|
+
isOptional?: boolean;
|
|
4247
|
+
isOut?: boolean;
|
|
4248
|
+
isRetval?: boolean;
|
|
4249
|
+
defaultValue?: any | undefined;
|
|
4250
|
+
rawDefaultValue?: any | undefined;
|
|
4251
|
+
hasDefaultValue?: boolean;
|
|
4252
|
+
customAttributes?: CustomAttributeData[] | undefined;
|
|
4253
|
+
metadataToken?: number;
|
|
4254
|
+
}
|
|
3680
4255
|
/** Manager represents the entity responsible for making investment decisions on behalf of the SPV. */
|
|
3681
4256
|
export declare class Partner implements IPartner {
|
|
3682
4257
|
/** Unique ID, provided by Monark, associated with a Partner. */
|
|
@@ -4392,13 +4967,13 @@ export declare class PreIPOCompanyInvestment implements IPreIPOCompanyInvestment
|
|
|
4392
4967
|
shareType: string | undefined;
|
|
4393
4968
|
/** Share class of PreIPOCompany. Can be Series A, Series B, Series C, etc. */
|
|
4394
4969
|
shareClass: string | undefined;
|
|
4395
|
-
/**
|
|
4970
|
+
/** Estimated number of shares in the PreIPOCompany being purchased as part of this investment. */
|
|
4396
4971
|
numberOfShares?: number | undefined;
|
|
4397
|
-
/** The net amount of capital
|
|
4398
|
-
|
|
4399
|
-
/**
|
|
4400
|
-
|
|
4401
|
-
/**
|
|
4972
|
+
/** The net amount of capital to be paid by the SPV to acquire the stock. */
|
|
4973
|
+
amountPaidToAcquire?: number | undefined;
|
|
4974
|
+
/** The amount of capital sent to the target seller, minus any transaction fees. */
|
|
4975
|
+
amountToTarget?: number;
|
|
4976
|
+
/** 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. */
|
|
4402
4977
|
pricePerShare?: number | undefined;
|
|
4403
4978
|
/** 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. */
|
|
4404
4979
|
transactionType?: PreIPOCompanyInvestmentTransactionType;
|
|
@@ -4406,6 +4981,8 @@ export declare class PreIPOCompanyInvestment implements IPreIPOCompanyInvestment
|
|
|
4406
4981
|
layeredSPV?: LayeredSPV | undefined;
|
|
4407
4982
|
/** The name of the PreIPOCompany. */
|
|
4408
4983
|
companyName?: string | undefined;
|
|
4984
|
+
/** Broker fees, if any, associated with this transaction. */
|
|
4985
|
+
brokerFee?: number | undefined;
|
|
4409
4986
|
constructor(data?: IPreIPOCompanyInvestment);
|
|
4410
4987
|
init(_data?: any): void;
|
|
4411
4988
|
static fromJS(data: any): PreIPOCompanyInvestment;
|
|
@@ -4424,13 +5001,13 @@ export interface IPreIPOCompanyInvestment {
|
|
|
4424
5001
|
shareType: string | undefined;
|
|
4425
5002
|
/** Share class of PreIPOCompany. Can be Series A, Series B, Series C, etc. */
|
|
4426
5003
|
shareClass: string | undefined;
|
|
4427
|
-
/**
|
|
5004
|
+
/** Estimated number of shares in the PreIPOCompany being purchased as part of this investment. */
|
|
4428
5005
|
numberOfShares?: number | undefined;
|
|
4429
|
-
/** The net amount of capital
|
|
4430
|
-
|
|
4431
|
-
/**
|
|
4432
|
-
|
|
4433
|
-
/**
|
|
5006
|
+
/** The net amount of capital to be paid by the SPV to acquire the stock. */
|
|
5007
|
+
amountPaidToAcquire?: number | undefined;
|
|
5008
|
+
/** The amount of capital sent to the target seller, minus any transaction fees. */
|
|
5009
|
+
amountToTarget?: number;
|
|
5010
|
+
/** 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. */
|
|
4434
5011
|
pricePerShare?: number | undefined;
|
|
4435
5012
|
/** 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. */
|
|
4436
5013
|
transactionType?: PreIPOCompanyInvestmentTransactionType;
|
|
@@ -4438,6 +5015,8 @@ export interface IPreIPOCompanyInvestment {
|
|
|
4438
5015
|
layeredSPV?: LayeredSPV | undefined;
|
|
4439
5016
|
/** The name of the PreIPOCompany. */
|
|
4440
5017
|
companyName?: string | undefined;
|
|
5018
|
+
/** Broker fees, if any, associated with this transaction. */
|
|
5019
|
+
brokerFee?: number | undefined;
|
|
4441
5020
|
}
|
|
4442
5021
|
export declare class PreIPOCompanyInvestmentApiResponse implements IPreIPOCompanyInvestmentApiResponse {
|
|
4443
5022
|
items?: PreIPOCompanyInvestment[] | undefined;
|
|
@@ -4637,8 +5216,6 @@ export declare class PreIPOCompanySPV implements IPreIPOCompanySPV {
|
|
|
4637
5216
|
description?: string | undefined;
|
|
4638
5217
|
/** A list of notable investors associated with an SPV. */
|
|
4639
5218
|
notableInvestors?: string[] | undefined;
|
|
4640
|
-
/** The name of the Master LLC. */
|
|
4641
|
-
masterLLCName?: string | undefined;
|
|
4642
5219
|
/** The one time, up front management fee charged by the SPV. */
|
|
4643
5220
|
managementFee?: number | undefined;
|
|
4644
5221
|
/** The number of years over which the management fee will be paid. SPVs offered through Monark will have this number set to 1, as the SPV will charge a one time up front management fee. */
|
|
@@ -4722,8 +5299,6 @@ export interface IPreIPOCompanySPV {
|
|
|
4722
5299
|
description?: string | undefined;
|
|
4723
5300
|
/** A list of notable investors associated with an SPV. */
|
|
4724
5301
|
notableInvestors?: string[] | undefined;
|
|
4725
|
-
/** The name of the Master LLC. */
|
|
4726
|
-
masterLLCName?: string | undefined;
|
|
4727
5302
|
/** The one time, up front management fee charged by the SPV. */
|
|
4728
5303
|
managementFee?: number | undefined;
|
|
4729
5304
|
/** The number of years over which the management fee will be paid. SPVs offered through Monark will have this number set to 1, as the SPV will charge a one time up front management fee. */
|
|
@@ -4847,6 +5422,44 @@ export interface IProblemDetails {
|
|
|
4847
5422
|
instance?: string | undefined;
|
|
4848
5423
|
[key: string]: any;
|
|
4849
5424
|
}
|
|
5425
|
+
export declare class PropertyInfo implements IPropertyInfo {
|
|
5426
|
+
readonly name?: string | undefined;
|
|
5427
|
+
readonly declaringType?: Type | undefined;
|
|
5428
|
+
readonly reflectedType?: Type | undefined;
|
|
5429
|
+
readonly module?: Module | undefined;
|
|
5430
|
+
readonly customAttributes?: CustomAttributeData[] | undefined;
|
|
5431
|
+
readonly isCollectible?: boolean;
|
|
5432
|
+
readonly metadataToken?: number;
|
|
5433
|
+
readonly memberType?: PropertyInfoMemberType;
|
|
5434
|
+
readonly propertyType?: Type | undefined;
|
|
5435
|
+
readonly attributes?: PropertyInfoAttributes;
|
|
5436
|
+
readonly isSpecialName?: boolean;
|
|
5437
|
+
readonly canRead?: boolean;
|
|
5438
|
+
readonly canWrite?: boolean;
|
|
5439
|
+
readonly getMethod?: MethodInfo | undefined;
|
|
5440
|
+
readonly setMethod?: MethodInfo | undefined;
|
|
5441
|
+
constructor(data?: IPropertyInfo);
|
|
5442
|
+
init(_data?: any): void;
|
|
5443
|
+
static fromJS(data: any): PropertyInfo;
|
|
5444
|
+
toJSON(data?: any): any;
|
|
5445
|
+
}
|
|
5446
|
+
export interface IPropertyInfo {
|
|
5447
|
+
name?: string | undefined;
|
|
5448
|
+
declaringType?: Type | undefined;
|
|
5449
|
+
reflectedType?: Type | undefined;
|
|
5450
|
+
module?: Module | undefined;
|
|
5451
|
+
customAttributes?: CustomAttributeData[] | undefined;
|
|
5452
|
+
isCollectible?: boolean;
|
|
5453
|
+
metadataToken?: number;
|
|
5454
|
+
memberType?: PropertyInfoMemberType;
|
|
5455
|
+
propertyType?: Type | undefined;
|
|
5456
|
+
attributes?: PropertyInfoAttributes;
|
|
5457
|
+
isSpecialName?: boolean;
|
|
5458
|
+
canRead?: boolean;
|
|
5459
|
+
canWrite?: boolean;
|
|
5460
|
+
getMethod?: MethodInfo | undefined;
|
|
5461
|
+
setMethod?: MethodInfo | undefined;
|
|
5462
|
+
}
|
|
4850
5463
|
/** Questionnaire repesents the public information we provide for a Questionnaire in the Primary Offering. */
|
|
4851
5464
|
export declare class Questionnaire implements IQuestionnaire {
|
|
4852
5465
|
/** Unique ID associated with a Questionnaire. */
|
|
@@ -4917,6 +5530,34 @@ export interface IQuestionnaireAnswer {
|
|
|
4917
5530
|
/** Updated at the specified date. */
|
|
4918
5531
|
updatedAt?: Date;
|
|
4919
5532
|
}
|
|
5533
|
+
export declare class QuestionnaireAnswerApiResponse implements IQuestionnaireAnswerApiResponse {
|
|
5534
|
+
statusCode?: QuestionnaireAnswerApiResponseStatusCode;
|
|
5535
|
+
headers?: {
|
|
5536
|
+
[key: string]: string[];
|
|
5537
|
+
} | undefined;
|
|
5538
|
+
data?: QuestionnaireAnswer | undefined;
|
|
5539
|
+
errorText?: string | undefined;
|
|
5540
|
+
cookies?: Cookie[] | undefined;
|
|
5541
|
+
readonly responseType?: Type | undefined;
|
|
5542
|
+
readonly content?: any | undefined;
|
|
5543
|
+
rawContent?: string | undefined;
|
|
5544
|
+
constructor(data?: IQuestionnaireAnswerApiResponse);
|
|
5545
|
+
init(_data?: any): void;
|
|
5546
|
+
static fromJS(data: any): QuestionnaireAnswerApiResponse;
|
|
5547
|
+
toJSON(data?: any): any;
|
|
5548
|
+
}
|
|
5549
|
+
export interface IQuestionnaireAnswerApiResponse {
|
|
5550
|
+
statusCode?: QuestionnaireAnswerApiResponseStatusCode;
|
|
5551
|
+
headers?: {
|
|
5552
|
+
[key: string]: string[];
|
|
5553
|
+
} | undefined;
|
|
5554
|
+
data?: QuestionnaireAnswer | undefined;
|
|
5555
|
+
errorText?: string | undefined;
|
|
5556
|
+
cookies?: Cookie[] | undefined;
|
|
5557
|
+
responseType?: Type | undefined;
|
|
5558
|
+
content?: any | undefined;
|
|
5559
|
+
rawContent?: string | undefined;
|
|
5560
|
+
}
|
|
4920
5561
|
export declare class QuestionnaireApiResponse implements IQuestionnaireApiResponse {
|
|
4921
5562
|
items?: Questionnaire[] | undefined;
|
|
4922
5563
|
pagination?: Pagination | undefined;
|
|
@@ -5293,6 +5934,36 @@ export interface IRegisteredFundSubscriptionApiResponse {
|
|
|
5293
5934
|
items?: RegisteredFundSubscription[] | undefined;
|
|
5294
5935
|
pagination?: Pagination | undefined;
|
|
5295
5936
|
}
|
|
5937
|
+
export declare class RuntimeFieldHandle implements IRuntimeFieldHandle {
|
|
5938
|
+
readonly value?: IntPtr;
|
|
5939
|
+
constructor(data?: IRuntimeFieldHandle);
|
|
5940
|
+
init(_data?: any): void;
|
|
5941
|
+
static fromJS(data: any): RuntimeFieldHandle;
|
|
5942
|
+
toJSON(data?: any): any;
|
|
5943
|
+
}
|
|
5944
|
+
export interface IRuntimeFieldHandle {
|
|
5945
|
+
value?: IntPtr;
|
|
5946
|
+
}
|
|
5947
|
+
export declare class RuntimeMethodHandle implements IRuntimeMethodHandle {
|
|
5948
|
+
readonly value?: IntPtr;
|
|
5949
|
+
constructor(data?: IRuntimeMethodHandle);
|
|
5950
|
+
init(_data?: any): void;
|
|
5951
|
+
static fromJS(data: any): RuntimeMethodHandle;
|
|
5952
|
+
toJSON(data?: any): any;
|
|
5953
|
+
}
|
|
5954
|
+
export interface IRuntimeMethodHandle {
|
|
5955
|
+
value?: IntPtr;
|
|
5956
|
+
}
|
|
5957
|
+
export declare class RuntimeTypeHandle implements IRuntimeTypeHandle {
|
|
5958
|
+
readonly value?: IntPtr;
|
|
5959
|
+
constructor(data?: IRuntimeTypeHandle);
|
|
5960
|
+
init(_data?: any): void;
|
|
5961
|
+
static fromJS(data: any): RuntimeTypeHandle;
|
|
5962
|
+
toJSON(data?: any): any;
|
|
5963
|
+
}
|
|
5964
|
+
export interface IRuntimeTypeHandle {
|
|
5965
|
+
value?: IntPtr;
|
|
5966
|
+
}
|
|
5296
5967
|
/** Represents a share class of a registered fund. */
|
|
5297
5968
|
export declare class ShareClass implements IShareClass {
|
|
5298
5969
|
/** Unique ID for share class */
|
|
@@ -5407,6 +6078,344 @@ export interface ISignatureRequest {
|
|
|
5407
6078
|
/** The name to place as the signature on the document. */
|
|
5408
6079
|
signatureName: string;
|
|
5409
6080
|
}
|
|
6081
|
+
export declare class StructLayoutAttribute implements IStructLayoutAttribute {
|
|
6082
|
+
readonly typeId?: any | undefined;
|
|
6083
|
+
readonly value?: StructLayoutAttributeValue;
|
|
6084
|
+
constructor(data?: IStructLayoutAttribute);
|
|
6085
|
+
init(_data?: any): void;
|
|
6086
|
+
static fromJS(data: any): StructLayoutAttribute;
|
|
6087
|
+
toJSON(data?: any): any;
|
|
6088
|
+
}
|
|
6089
|
+
export interface IStructLayoutAttribute {
|
|
6090
|
+
typeId?: any | undefined;
|
|
6091
|
+
value?: StructLayoutAttributeValue;
|
|
6092
|
+
}
|
|
6093
|
+
export declare class Type implements IType {
|
|
6094
|
+
readonly name?: string | undefined;
|
|
6095
|
+
readonly customAttributes?: CustomAttributeData[] | undefined;
|
|
6096
|
+
readonly isCollectible?: boolean;
|
|
6097
|
+
readonly metadataToken?: number;
|
|
6098
|
+
readonly isInterface?: boolean;
|
|
6099
|
+
readonly memberType?: TypeMemberType;
|
|
6100
|
+
readonly namespace?: string | undefined;
|
|
6101
|
+
readonly assemblyQualifiedName?: string | undefined;
|
|
6102
|
+
readonly fullName?: string | undefined;
|
|
6103
|
+
readonly assembly?: Assembly | undefined;
|
|
6104
|
+
readonly module?: Module | undefined;
|
|
6105
|
+
readonly isNested?: boolean;
|
|
6106
|
+
readonly declaringType?: Type | undefined;
|
|
6107
|
+
readonly declaringMethod?: MethodBase | undefined;
|
|
6108
|
+
readonly reflectedType?: Type | undefined;
|
|
6109
|
+
readonly underlyingSystemType?: Type | undefined;
|
|
6110
|
+
readonly isTypeDefinition?: boolean;
|
|
6111
|
+
readonly isArray?: boolean;
|
|
6112
|
+
readonly isByRef?: boolean;
|
|
6113
|
+
readonly isPointer?: boolean;
|
|
6114
|
+
readonly isConstructedGenericType?: boolean;
|
|
6115
|
+
readonly isGenericParameter?: boolean;
|
|
6116
|
+
readonly isGenericTypeParameter?: boolean;
|
|
6117
|
+
readonly isGenericMethodParameter?: boolean;
|
|
6118
|
+
readonly isGenericType?: boolean;
|
|
6119
|
+
readonly isGenericTypeDefinition?: boolean;
|
|
6120
|
+
readonly isSZArray?: boolean;
|
|
6121
|
+
readonly isVariableBoundArray?: boolean;
|
|
6122
|
+
readonly isByRefLike?: boolean;
|
|
6123
|
+
readonly isFunctionPointer?: boolean;
|
|
6124
|
+
readonly isUnmanagedFunctionPointer?: boolean;
|
|
6125
|
+
readonly hasElementType?: boolean;
|
|
6126
|
+
readonly genericTypeArguments?: Type[] | undefined;
|
|
6127
|
+
readonly genericParameterPosition?: number;
|
|
6128
|
+
readonly genericParameterAttributes?: TypeGenericParameterAttributes;
|
|
6129
|
+
readonly attributes?: TypeAttributes;
|
|
6130
|
+
readonly isAbstract?: boolean;
|
|
6131
|
+
readonly isImport?: boolean;
|
|
6132
|
+
readonly isSealed?: boolean;
|
|
6133
|
+
readonly isSpecialName?: boolean;
|
|
6134
|
+
readonly isClass?: boolean;
|
|
6135
|
+
readonly isNestedAssembly?: boolean;
|
|
6136
|
+
readonly isNestedFamANDAssem?: boolean;
|
|
6137
|
+
readonly isNestedFamily?: boolean;
|
|
6138
|
+
readonly isNestedFamORAssem?: boolean;
|
|
6139
|
+
readonly isNestedPrivate?: boolean;
|
|
6140
|
+
readonly isNestedPublic?: boolean;
|
|
6141
|
+
readonly isNotPublic?: boolean;
|
|
6142
|
+
readonly isPublic?: boolean;
|
|
6143
|
+
readonly isAutoLayout?: boolean;
|
|
6144
|
+
readonly isExplicitLayout?: boolean;
|
|
6145
|
+
readonly isLayoutSequential?: boolean;
|
|
6146
|
+
readonly isAnsiClass?: boolean;
|
|
6147
|
+
readonly isAutoClass?: boolean;
|
|
6148
|
+
readonly isUnicodeClass?: boolean;
|
|
6149
|
+
readonly isCOMObject?: boolean;
|
|
6150
|
+
readonly isContextful?: boolean;
|
|
6151
|
+
readonly isEnum?: boolean;
|
|
6152
|
+
readonly isMarshalByRef?: boolean;
|
|
6153
|
+
readonly isPrimitive?: boolean;
|
|
6154
|
+
readonly isValueType?: boolean;
|
|
6155
|
+
readonly isSignatureType?: boolean;
|
|
6156
|
+
readonly isSecurityCritical?: boolean;
|
|
6157
|
+
readonly isSecuritySafeCritical?: boolean;
|
|
6158
|
+
readonly isSecurityTransparent?: boolean;
|
|
6159
|
+
readonly structLayoutAttribute?: StructLayoutAttribute | undefined;
|
|
6160
|
+
readonly typeInitializer?: ConstructorInfo | undefined;
|
|
6161
|
+
readonly typeHandle?: RuntimeTypeHandle;
|
|
6162
|
+
readonly guid?: string;
|
|
6163
|
+
readonly baseType?: Type | undefined;
|
|
6164
|
+
readonly isSerializable?: boolean;
|
|
6165
|
+
readonly containsGenericParameters?: boolean;
|
|
6166
|
+
readonly isVisible?: boolean;
|
|
6167
|
+
constructor(data?: IType);
|
|
6168
|
+
init(_data?: any): void;
|
|
6169
|
+
static fromJS(data: any): Type;
|
|
6170
|
+
toJSON(data?: any): any;
|
|
6171
|
+
}
|
|
6172
|
+
export interface IType {
|
|
6173
|
+
name?: string | undefined;
|
|
6174
|
+
customAttributes?: CustomAttributeData[] | undefined;
|
|
6175
|
+
isCollectible?: boolean;
|
|
6176
|
+
metadataToken?: number;
|
|
6177
|
+
isInterface?: boolean;
|
|
6178
|
+
memberType?: TypeMemberType;
|
|
6179
|
+
namespace?: string | undefined;
|
|
6180
|
+
assemblyQualifiedName?: string | undefined;
|
|
6181
|
+
fullName?: string | undefined;
|
|
6182
|
+
assembly?: Assembly | undefined;
|
|
6183
|
+
module?: Module | undefined;
|
|
6184
|
+
isNested?: boolean;
|
|
6185
|
+
declaringType?: Type | undefined;
|
|
6186
|
+
declaringMethod?: MethodBase | undefined;
|
|
6187
|
+
reflectedType?: Type | undefined;
|
|
6188
|
+
underlyingSystemType?: Type | undefined;
|
|
6189
|
+
isTypeDefinition?: boolean;
|
|
6190
|
+
isArray?: boolean;
|
|
6191
|
+
isByRef?: boolean;
|
|
6192
|
+
isPointer?: boolean;
|
|
6193
|
+
isConstructedGenericType?: boolean;
|
|
6194
|
+
isGenericParameter?: boolean;
|
|
6195
|
+
isGenericTypeParameter?: boolean;
|
|
6196
|
+
isGenericMethodParameter?: boolean;
|
|
6197
|
+
isGenericType?: boolean;
|
|
6198
|
+
isGenericTypeDefinition?: boolean;
|
|
6199
|
+
isSZArray?: boolean;
|
|
6200
|
+
isVariableBoundArray?: boolean;
|
|
6201
|
+
isByRefLike?: boolean;
|
|
6202
|
+
isFunctionPointer?: boolean;
|
|
6203
|
+
isUnmanagedFunctionPointer?: boolean;
|
|
6204
|
+
hasElementType?: boolean;
|
|
6205
|
+
genericTypeArguments?: Type[] | undefined;
|
|
6206
|
+
genericParameterPosition?: number;
|
|
6207
|
+
genericParameterAttributes?: TypeGenericParameterAttributes;
|
|
6208
|
+
attributes?: TypeAttributes;
|
|
6209
|
+
isAbstract?: boolean;
|
|
6210
|
+
isImport?: boolean;
|
|
6211
|
+
isSealed?: boolean;
|
|
6212
|
+
isSpecialName?: boolean;
|
|
6213
|
+
isClass?: boolean;
|
|
6214
|
+
isNestedAssembly?: boolean;
|
|
6215
|
+
isNestedFamANDAssem?: boolean;
|
|
6216
|
+
isNestedFamily?: boolean;
|
|
6217
|
+
isNestedFamORAssem?: boolean;
|
|
6218
|
+
isNestedPrivate?: boolean;
|
|
6219
|
+
isNestedPublic?: boolean;
|
|
6220
|
+
isNotPublic?: boolean;
|
|
6221
|
+
isPublic?: boolean;
|
|
6222
|
+
isAutoLayout?: boolean;
|
|
6223
|
+
isExplicitLayout?: boolean;
|
|
6224
|
+
isLayoutSequential?: boolean;
|
|
6225
|
+
isAnsiClass?: boolean;
|
|
6226
|
+
isAutoClass?: boolean;
|
|
6227
|
+
isUnicodeClass?: boolean;
|
|
6228
|
+
isCOMObject?: boolean;
|
|
6229
|
+
isContextful?: boolean;
|
|
6230
|
+
isEnum?: boolean;
|
|
6231
|
+
isMarshalByRef?: boolean;
|
|
6232
|
+
isPrimitive?: boolean;
|
|
6233
|
+
isValueType?: boolean;
|
|
6234
|
+
isSignatureType?: boolean;
|
|
6235
|
+
isSecurityCritical?: boolean;
|
|
6236
|
+
isSecuritySafeCritical?: boolean;
|
|
6237
|
+
isSecurityTransparent?: boolean;
|
|
6238
|
+
structLayoutAttribute?: StructLayoutAttribute | undefined;
|
|
6239
|
+
typeInitializer?: ConstructorInfo | undefined;
|
|
6240
|
+
typeHandle?: RuntimeTypeHandle;
|
|
6241
|
+
guid?: string;
|
|
6242
|
+
baseType?: Type | undefined;
|
|
6243
|
+
isSerializable?: boolean;
|
|
6244
|
+
containsGenericParameters?: boolean;
|
|
6245
|
+
isVisible?: boolean;
|
|
6246
|
+
}
|
|
6247
|
+
export declare class TypeInfo implements ITypeInfo {
|
|
6248
|
+
readonly name?: string | undefined;
|
|
6249
|
+
readonly customAttributes?: CustomAttributeData[] | undefined;
|
|
6250
|
+
readonly isCollectible?: boolean;
|
|
6251
|
+
readonly metadataToken?: number;
|
|
6252
|
+
readonly isInterface?: boolean;
|
|
6253
|
+
readonly memberType?: TypeInfoMemberType;
|
|
6254
|
+
readonly namespace?: string | undefined;
|
|
6255
|
+
readonly assemblyQualifiedName?: string | undefined;
|
|
6256
|
+
readonly fullName?: string | undefined;
|
|
6257
|
+
readonly assembly?: Assembly | undefined;
|
|
6258
|
+
readonly module?: Module | undefined;
|
|
6259
|
+
readonly isNested?: boolean;
|
|
6260
|
+
readonly declaringType?: Type | undefined;
|
|
6261
|
+
readonly declaringMethod?: MethodBase | undefined;
|
|
6262
|
+
readonly reflectedType?: Type | undefined;
|
|
6263
|
+
readonly underlyingSystemType?: Type | undefined;
|
|
6264
|
+
readonly isTypeDefinition?: boolean;
|
|
6265
|
+
readonly isArray?: boolean;
|
|
6266
|
+
readonly isByRef?: boolean;
|
|
6267
|
+
readonly isPointer?: boolean;
|
|
6268
|
+
readonly isConstructedGenericType?: boolean;
|
|
6269
|
+
readonly isGenericParameter?: boolean;
|
|
6270
|
+
readonly isGenericTypeParameter?: boolean;
|
|
6271
|
+
readonly isGenericMethodParameter?: boolean;
|
|
6272
|
+
readonly isGenericType?: boolean;
|
|
6273
|
+
readonly isGenericTypeDefinition?: boolean;
|
|
6274
|
+
readonly isSZArray?: boolean;
|
|
6275
|
+
readonly isVariableBoundArray?: boolean;
|
|
6276
|
+
readonly isByRefLike?: boolean;
|
|
6277
|
+
readonly isFunctionPointer?: boolean;
|
|
6278
|
+
readonly isUnmanagedFunctionPointer?: boolean;
|
|
6279
|
+
readonly hasElementType?: boolean;
|
|
6280
|
+
readonly genericTypeArguments?: Type[] | undefined;
|
|
6281
|
+
readonly genericParameterPosition?: number;
|
|
6282
|
+
readonly genericParameterAttributes?: TypeInfoGenericParameterAttributes;
|
|
6283
|
+
readonly attributes?: TypeInfoAttributes;
|
|
6284
|
+
readonly isAbstract?: boolean;
|
|
6285
|
+
readonly isImport?: boolean;
|
|
6286
|
+
readonly isSealed?: boolean;
|
|
6287
|
+
readonly isSpecialName?: boolean;
|
|
6288
|
+
readonly isClass?: boolean;
|
|
6289
|
+
readonly isNestedAssembly?: boolean;
|
|
6290
|
+
readonly isNestedFamANDAssem?: boolean;
|
|
6291
|
+
readonly isNestedFamily?: boolean;
|
|
6292
|
+
readonly isNestedFamORAssem?: boolean;
|
|
6293
|
+
readonly isNestedPrivate?: boolean;
|
|
6294
|
+
readonly isNestedPublic?: boolean;
|
|
6295
|
+
readonly isNotPublic?: boolean;
|
|
6296
|
+
readonly isPublic?: boolean;
|
|
6297
|
+
readonly isAutoLayout?: boolean;
|
|
6298
|
+
readonly isExplicitLayout?: boolean;
|
|
6299
|
+
readonly isLayoutSequential?: boolean;
|
|
6300
|
+
readonly isAnsiClass?: boolean;
|
|
6301
|
+
readonly isAutoClass?: boolean;
|
|
6302
|
+
readonly isUnicodeClass?: boolean;
|
|
6303
|
+
readonly isCOMObject?: boolean;
|
|
6304
|
+
readonly isContextful?: boolean;
|
|
6305
|
+
readonly isEnum?: boolean;
|
|
6306
|
+
readonly isMarshalByRef?: boolean;
|
|
6307
|
+
readonly isPrimitive?: boolean;
|
|
6308
|
+
readonly isValueType?: boolean;
|
|
6309
|
+
readonly isSignatureType?: boolean;
|
|
6310
|
+
readonly isSecurityCritical?: boolean;
|
|
6311
|
+
readonly isSecuritySafeCritical?: boolean;
|
|
6312
|
+
readonly isSecurityTransparent?: boolean;
|
|
6313
|
+
readonly structLayoutAttribute?: StructLayoutAttribute | undefined;
|
|
6314
|
+
readonly typeInitializer?: ConstructorInfo | undefined;
|
|
6315
|
+
readonly typeHandle?: RuntimeTypeHandle;
|
|
6316
|
+
readonly guid?: string;
|
|
6317
|
+
readonly baseType?: Type | undefined;
|
|
6318
|
+
readonly isSerializable?: boolean;
|
|
6319
|
+
readonly containsGenericParameters?: boolean;
|
|
6320
|
+
readonly isVisible?: boolean;
|
|
6321
|
+
readonly genericTypeParameters?: Type[] | undefined;
|
|
6322
|
+
readonly declaredConstructors?: ConstructorInfo[] | undefined;
|
|
6323
|
+
readonly declaredEvents?: EventInfo[] | undefined;
|
|
6324
|
+
readonly declaredFields?: FieldInfo[] | undefined;
|
|
6325
|
+
readonly declaredMembers?: MemberInfo[] | undefined;
|
|
6326
|
+
readonly declaredMethods?: MethodInfo[] | undefined;
|
|
6327
|
+
readonly declaredNestedTypes?: TypeInfo[] | undefined;
|
|
6328
|
+
readonly declaredProperties?: PropertyInfo[] | undefined;
|
|
6329
|
+
readonly implementedInterfaces?: Type[] | undefined;
|
|
6330
|
+
constructor(data?: ITypeInfo);
|
|
6331
|
+
init(_data?: any): void;
|
|
6332
|
+
static fromJS(data: any): TypeInfo;
|
|
6333
|
+
toJSON(data?: any): any;
|
|
6334
|
+
}
|
|
6335
|
+
export interface ITypeInfo {
|
|
6336
|
+
name?: string | undefined;
|
|
6337
|
+
customAttributes?: CustomAttributeData[] | undefined;
|
|
6338
|
+
isCollectible?: boolean;
|
|
6339
|
+
metadataToken?: number;
|
|
6340
|
+
isInterface?: boolean;
|
|
6341
|
+
memberType?: TypeInfoMemberType;
|
|
6342
|
+
namespace?: string | undefined;
|
|
6343
|
+
assemblyQualifiedName?: string | undefined;
|
|
6344
|
+
fullName?: string | undefined;
|
|
6345
|
+
assembly?: Assembly | undefined;
|
|
6346
|
+
module?: Module | undefined;
|
|
6347
|
+
isNested?: boolean;
|
|
6348
|
+
declaringType?: Type | undefined;
|
|
6349
|
+
declaringMethod?: MethodBase | undefined;
|
|
6350
|
+
reflectedType?: Type | undefined;
|
|
6351
|
+
underlyingSystemType?: Type | undefined;
|
|
6352
|
+
isTypeDefinition?: boolean;
|
|
6353
|
+
isArray?: boolean;
|
|
6354
|
+
isByRef?: boolean;
|
|
6355
|
+
isPointer?: boolean;
|
|
6356
|
+
isConstructedGenericType?: boolean;
|
|
6357
|
+
isGenericParameter?: boolean;
|
|
6358
|
+
isGenericTypeParameter?: boolean;
|
|
6359
|
+
isGenericMethodParameter?: boolean;
|
|
6360
|
+
isGenericType?: boolean;
|
|
6361
|
+
isGenericTypeDefinition?: boolean;
|
|
6362
|
+
isSZArray?: boolean;
|
|
6363
|
+
isVariableBoundArray?: boolean;
|
|
6364
|
+
isByRefLike?: boolean;
|
|
6365
|
+
isFunctionPointer?: boolean;
|
|
6366
|
+
isUnmanagedFunctionPointer?: boolean;
|
|
6367
|
+
hasElementType?: boolean;
|
|
6368
|
+
genericTypeArguments?: Type[] | undefined;
|
|
6369
|
+
genericParameterPosition?: number;
|
|
6370
|
+
genericParameterAttributes?: TypeInfoGenericParameterAttributes;
|
|
6371
|
+
attributes?: TypeInfoAttributes;
|
|
6372
|
+
isAbstract?: boolean;
|
|
6373
|
+
isImport?: boolean;
|
|
6374
|
+
isSealed?: boolean;
|
|
6375
|
+
isSpecialName?: boolean;
|
|
6376
|
+
isClass?: boolean;
|
|
6377
|
+
isNestedAssembly?: boolean;
|
|
6378
|
+
isNestedFamANDAssem?: boolean;
|
|
6379
|
+
isNestedFamily?: boolean;
|
|
6380
|
+
isNestedFamORAssem?: boolean;
|
|
6381
|
+
isNestedPrivate?: boolean;
|
|
6382
|
+
isNestedPublic?: boolean;
|
|
6383
|
+
isNotPublic?: boolean;
|
|
6384
|
+
isPublic?: boolean;
|
|
6385
|
+
isAutoLayout?: boolean;
|
|
6386
|
+
isExplicitLayout?: boolean;
|
|
6387
|
+
isLayoutSequential?: boolean;
|
|
6388
|
+
isAnsiClass?: boolean;
|
|
6389
|
+
isAutoClass?: boolean;
|
|
6390
|
+
isUnicodeClass?: boolean;
|
|
6391
|
+
isCOMObject?: boolean;
|
|
6392
|
+
isContextful?: boolean;
|
|
6393
|
+
isEnum?: boolean;
|
|
6394
|
+
isMarshalByRef?: boolean;
|
|
6395
|
+
isPrimitive?: boolean;
|
|
6396
|
+
isValueType?: boolean;
|
|
6397
|
+
isSignatureType?: boolean;
|
|
6398
|
+
isSecurityCritical?: boolean;
|
|
6399
|
+
isSecuritySafeCritical?: boolean;
|
|
6400
|
+
isSecurityTransparent?: boolean;
|
|
6401
|
+
structLayoutAttribute?: StructLayoutAttribute | undefined;
|
|
6402
|
+
typeInitializer?: ConstructorInfo | undefined;
|
|
6403
|
+
typeHandle?: RuntimeTypeHandle;
|
|
6404
|
+
guid?: string;
|
|
6405
|
+
baseType?: Type | undefined;
|
|
6406
|
+
isSerializable?: boolean;
|
|
6407
|
+
containsGenericParameters?: boolean;
|
|
6408
|
+
isVisible?: boolean;
|
|
6409
|
+
genericTypeParameters?: Type[] | undefined;
|
|
6410
|
+
declaredConstructors?: ConstructorInfo[] | undefined;
|
|
6411
|
+
declaredEvents?: EventInfo[] | undefined;
|
|
6412
|
+
declaredFields?: FieldInfo[] | undefined;
|
|
6413
|
+
declaredMembers?: MemberInfo[] | undefined;
|
|
6414
|
+
declaredMethods?: MethodInfo[] | undefined;
|
|
6415
|
+
declaredNestedTypes?: TypeInfo[] | undefined;
|
|
6416
|
+
declaredProperties?: PropertyInfo[] | undefined;
|
|
6417
|
+
implementedInterfaces?: Type[] | undefined;
|
|
6418
|
+
}
|
|
5410
6419
|
export declare class UpdateEntityInvestor implements IUpdateEntityInvestor {
|
|
5411
6420
|
/** Legal name of the entity. */
|
|
5412
6421
|
legalName: string;
|
|
@@ -6293,17 +7302,21 @@ export declare enum SortOrder16 {
|
|
|
6293
7302
|
Ascending = "Ascending",
|
|
6294
7303
|
Descending = "Descending"
|
|
6295
7304
|
}
|
|
7305
|
+
export declare enum SortOrder17 {
|
|
7306
|
+
Ascending = "Ascending",
|
|
7307
|
+
Descending = "Descending"
|
|
7308
|
+
}
|
|
6296
7309
|
export declare enum ResponsibleParty {
|
|
6297
7310
|
Partner = "Partner",
|
|
6298
7311
|
Monark = "Monark",
|
|
6299
7312
|
Investor = "Investor",
|
|
6300
7313
|
Advisor = "Advisor"
|
|
6301
7314
|
}
|
|
6302
|
-
export declare enum
|
|
7315
|
+
export declare enum SortOrder18 {
|
|
6303
7316
|
Ascending = "Ascending",
|
|
6304
7317
|
Descending = "Descending"
|
|
6305
7318
|
}
|
|
6306
|
-
export declare enum
|
|
7319
|
+
export declare enum SortOrder19 {
|
|
6307
7320
|
Ascending = "Ascending",
|
|
6308
7321
|
Descending = "Descending"
|
|
6309
7322
|
}
|
|
@@ -6322,6 +7335,11 @@ export declare enum DeliveryStatus {
|
|
|
6322
7335
|
Delivered = "Delivered",
|
|
6323
7336
|
Failed = "Failed"
|
|
6324
7337
|
}
|
|
7338
|
+
export declare enum AssemblySecurityRuleSet {
|
|
7339
|
+
None = "None",
|
|
7340
|
+
Level1 = "Level1",
|
|
7341
|
+
Level2 = "Level2"
|
|
7342
|
+
}
|
|
6325
7343
|
export declare enum BulkPreIPOCompanyType {
|
|
6326
7344
|
SOLE_PROPRIETOR = "SOLE_PROPRIETOR",
|
|
6327
7345
|
SINGLE_MEMBER_LLC = "SINGLE_MEMBER_LLC",
|
|
@@ -6379,6 +7397,64 @@ export declare enum BulkPreIPOCompanySPVMonarkStage {
|
|
|
6379
7397
|
LIQUIDATION = "LIQUIDATION",
|
|
6380
7398
|
DISSOLVED = "DISSOLVED"
|
|
6381
7399
|
}
|
|
7400
|
+
export declare enum ConstructorInfoAttributes {
|
|
7401
|
+
PrivateScope = "PrivateScope",
|
|
7402
|
+
Private = "Private",
|
|
7403
|
+
FamANDAssem = "FamANDAssem",
|
|
7404
|
+
Assembly = "Assembly",
|
|
7405
|
+
Family = "Family",
|
|
7406
|
+
FamORAssem = "FamORAssem",
|
|
7407
|
+
Public = "Public",
|
|
7408
|
+
MemberAccessMask = "MemberAccessMask",
|
|
7409
|
+
UnmanagedExport = "UnmanagedExport",
|
|
7410
|
+
Static = "Static",
|
|
7411
|
+
Final = "Final",
|
|
7412
|
+
Virtual = "Virtual",
|
|
7413
|
+
HideBySig = "HideBySig",
|
|
7414
|
+
NewSlot = "NewSlot",
|
|
7415
|
+
CheckAccessOnOverride = "CheckAccessOnOverride",
|
|
7416
|
+
Abstract = "Abstract",
|
|
7417
|
+
SpecialName = "SpecialName",
|
|
7418
|
+
RTSpecialName = "RTSpecialName",
|
|
7419
|
+
PinvokeImpl = "PinvokeImpl",
|
|
7420
|
+
HasSecurity = "HasSecurity",
|
|
7421
|
+
RequireSecObject = "RequireSecObject",
|
|
7422
|
+
ReservedMask = "ReservedMask"
|
|
7423
|
+
}
|
|
7424
|
+
export declare enum ConstructorInfoMethodImplementationFlags {
|
|
7425
|
+
IL = "IL",
|
|
7426
|
+
Native = "Native",
|
|
7427
|
+
OPTIL = "OPTIL",
|
|
7428
|
+
CodeTypeMask = "CodeTypeMask",
|
|
7429
|
+
ManagedMask = "ManagedMask",
|
|
7430
|
+
NoInlining = "NoInlining",
|
|
7431
|
+
ForwardRef = "ForwardRef",
|
|
7432
|
+
Synchronized = "Synchronized",
|
|
7433
|
+
NoOptimization = "NoOptimization",
|
|
7434
|
+
PreserveSig = "PreserveSig",
|
|
7435
|
+
AggressiveInlining = "AggressiveInlining",
|
|
7436
|
+
AggressiveOptimization = "AggressiveOptimization",
|
|
7437
|
+
InternalCall = "InternalCall",
|
|
7438
|
+
MaxMethodImplVal = "MaxMethodImplVal"
|
|
7439
|
+
}
|
|
7440
|
+
export declare enum ConstructorInfoCallingConvention {
|
|
7441
|
+
Standard = "Standard",
|
|
7442
|
+
VarArgs = "VarArgs",
|
|
7443
|
+
Any = "Any",
|
|
7444
|
+
HasThis = "HasThis",
|
|
7445
|
+
ExplicitThis = "ExplicitThis"
|
|
7446
|
+
}
|
|
7447
|
+
export declare enum ConstructorInfoMemberType {
|
|
7448
|
+
Constructor = "Constructor",
|
|
7449
|
+
Event = "Event",
|
|
7450
|
+
Field = "Field",
|
|
7451
|
+
Method = "Method",
|
|
7452
|
+
Property = "Property",
|
|
7453
|
+
TypeInfo = "TypeInfo",
|
|
7454
|
+
Custom = "Custom",
|
|
7455
|
+
NestedType = "NestedType",
|
|
7456
|
+
All = "All"
|
|
7457
|
+
}
|
|
6382
7458
|
export declare enum CreateInvestorType {
|
|
6383
7459
|
IndividualInvestor = "IndividualInvestor",
|
|
6384
7460
|
EntityInvestor = "EntityInvestor"
|
|
@@ -6485,6 +7561,22 @@ export declare enum EntityInvestorTrustType {
|
|
|
6485
7561
|
REVOCABLE_TRUST = "REVOCABLE_TRUST",
|
|
6486
7562
|
IRREVOCABLE_TRUST = "IRREVOCABLE_TRUST"
|
|
6487
7563
|
}
|
|
7564
|
+
export declare enum EventInfoMemberType {
|
|
7565
|
+
Constructor = "Constructor",
|
|
7566
|
+
Event = "Event",
|
|
7567
|
+
Field = "Field",
|
|
7568
|
+
Method = "Method",
|
|
7569
|
+
Property = "Property",
|
|
7570
|
+
TypeInfo = "TypeInfo",
|
|
7571
|
+
Custom = "Custom",
|
|
7572
|
+
NestedType = "NestedType",
|
|
7573
|
+
All = "All"
|
|
7574
|
+
}
|
|
7575
|
+
export declare enum EventInfoAttributes {
|
|
7576
|
+
None = "None",
|
|
7577
|
+
SpecialName = "SpecialName",
|
|
7578
|
+
RTSpecialName = "RTSpecialName"
|
|
7579
|
+
}
|
|
6488
7580
|
export declare enum FeeStructureFeeType {
|
|
6489
7581
|
MANAGEMENT_FEE = "MANAGEMENT_FEE",
|
|
6490
7582
|
PERFORMANCE_FEE = "PERFORMANCE_FEE",
|
|
@@ -6492,6 +7584,38 @@ export declare enum FeeStructureFeeType {
|
|
|
6492
7584
|
SALES_LOAD = "SALES_LOAD",
|
|
6493
7585
|
EARLY_REDEMPTION_FEE = "EARLY_REDEMPTION_FEE"
|
|
6494
7586
|
}
|
|
7587
|
+
export declare enum FieldInfoMemberType {
|
|
7588
|
+
Constructor = "Constructor",
|
|
7589
|
+
Event = "Event",
|
|
7590
|
+
Field = "Field",
|
|
7591
|
+
Method = "Method",
|
|
7592
|
+
Property = "Property",
|
|
7593
|
+
TypeInfo = "TypeInfo",
|
|
7594
|
+
Custom = "Custom",
|
|
7595
|
+
NestedType = "NestedType",
|
|
7596
|
+
All = "All"
|
|
7597
|
+
}
|
|
7598
|
+
export declare enum FieldInfoAttributes {
|
|
7599
|
+
PrivateScope = "PrivateScope",
|
|
7600
|
+
Private = "Private",
|
|
7601
|
+
FamANDAssem = "FamANDAssem",
|
|
7602
|
+
Assembly = "Assembly",
|
|
7603
|
+
Family = "Family",
|
|
7604
|
+
FamORAssem = "FamORAssem",
|
|
7605
|
+
Public = "Public",
|
|
7606
|
+
FieldAccessMask = "FieldAccessMask",
|
|
7607
|
+
Static = "Static",
|
|
7608
|
+
InitOnly = "InitOnly",
|
|
7609
|
+
Literal = "Literal",
|
|
7610
|
+
NotSerialized = "NotSerialized",
|
|
7611
|
+
HasFieldRVA = "HasFieldRVA",
|
|
7612
|
+
SpecialName = "SpecialName",
|
|
7613
|
+
RTSpecialName = "RTSpecialName",
|
|
7614
|
+
HasFieldMarshal = "HasFieldMarshal",
|
|
7615
|
+
PinvokeImpl = "PinvokeImpl",
|
|
7616
|
+
HasDefault = "HasDefault",
|
|
7617
|
+
ReservedMask = "ReservedMask"
|
|
7618
|
+
}
|
|
6495
7619
|
export declare enum FinancialInstitutionType {
|
|
6496
7620
|
IntroducingBrokerDealer = "IntroducingBrokerDealer",
|
|
6497
7621
|
SelfClearingBrokerDealer = "SelfClearingBrokerDealer",
|
|
@@ -6597,6 +7721,133 @@ export declare enum LayeredSPVFundStructure {
|
|
|
6597
7721
|
ThreeCOne = "ThreeCOne",
|
|
6598
7722
|
ThreeCSeven = "ThreeCSeven"
|
|
6599
7723
|
}
|
|
7724
|
+
export declare enum MemberInfoMemberType {
|
|
7725
|
+
Constructor = "Constructor",
|
|
7726
|
+
Event = "Event",
|
|
7727
|
+
Field = "Field",
|
|
7728
|
+
Method = "Method",
|
|
7729
|
+
Property = "Property",
|
|
7730
|
+
TypeInfo = "TypeInfo",
|
|
7731
|
+
Custom = "Custom",
|
|
7732
|
+
NestedType = "NestedType",
|
|
7733
|
+
All = "All"
|
|
7734
|
+
}
|
|
7735
|
+
export declare enum MethodBaseMemberType {
|
|
7736
|
+
Constructor = "Constructor",
|
|
7737
|
+
Event = "Event",
|
|
7738
|
+
Field = "Field",
|
|
7739
|
+
Method = "Method",
|
|
7740
|
+
Property = "Property",
|
|
7741
|
+
TypeInfo = "TypeInfo",
|
|
7742
|
+
Custom = "Custom",
|
|
7743
|
+
NestedType = "NestedType",
|
|
7744
|
+
All = "All"
|
|
7745
|
+
}
|
|
7746
|
+
export declare enum MethodBaseAttributes {
|
|
7747
|
+
PrivateScope = "PrivateScope",
|
|
7748
|
+
Private = "Private",
|
|
7749
|
+
FamANDAssem = "FamANDAssem",
|
|
7750
|
+
Assembly = "Assembly",
|
|
7751
|
+
Family = "Family",
|
|
7752
|
+
FamORAssem = "FamORAssem",
|
|
7753
|
+
Public = "Public",
|
|
7754
|
+
MemberAccessMask = "MemberAccessMask",
|
|
7755
|
+
UnmanagedExport = "UnmanagedExport",
|
|
7756
|
+
Static = "Static",
|
|
7757
|
+
Final = "Final",
|
|
7758
|
+
Virtual = "Virtual",
|
|
7759
|
+
HideBySig = "HideBySig",
|
|
7760
|
+
NewSlot = "NewSlot",
|
|
7761
|
+
CheckAccessOnOverride = "CheckAccessOnOverride",
|
|
7762
|
+
Abstract = "Abstract",
|
|
7763
|
+
SpecialName = "SpecialName",
|
|
7764
|
+
RTSpecialName = "RTSpecialName",
|
|
7765
|
+
PinvokeImpl = "PinvokeImpl",
|
|
7766
|
+
HasSecurity = "HasSecurity",
|
|
7767
|
+
RequireSecObject = "RequireSecObject",
|
|
7768
|
+
ReservedMask = "ReservedMask"
|
|
7769
|
+
}
|
|
7770
|
+
export declare enum MethodBaseMethodImplementationFlags {
|
|
7771
|
+
IL = "IL",
|
|
7772
|
+
Native = "Native",
|
|
7773
|
+
OPTIL = "OPTIL",
|
|
7774
|
+
CodeTypeMask = "CodeTypeMask",
|
|
7775
|
+
ManagedMask = "ManagedMask",
|
|
7776
|
+
NoInlining = "NoInlining",
|
|
7777
|
+
ForwardRef = "ForwardRef",
|
|
7778
|
+
Synchronized = "Synchronized",
|
|
7779
|
+
NoOptimization = "NoOptimization",
|
|
7780
|
+
PreserveSig = "PreserveSig",
|
|
7781
|
+
AggressiveInlining = "AggressiveInlining",
|
|
7782
|
+
AggressiveOptimization = "AggressiveOptimization",
|
|
7783
|
+
InternalCall = "InternalCall",
|
|
7784
|
+
MaxMethodImplVal = "MaxMethodImplVal"
|
|
7785
|
+
}
|
|
7786
|
+
export declare enum MethodBaseCallingConvention {
|
|
7787
|
+
Standard = "Standard",
|
|
7788
|
+
VarArgs = "VarArgs",
|
|
7789
|
+
Any = "Any",
|
|
7790
|
+
HasThis = "HasThis",
|
|
7791
|
+
ExplicitThis = "ExplicitThis"
|
|
7792
|
+
}
|
|
7793
|
+
export declare enum MethodInfoAttributes {
|
|
7794
|
+
PrivateScope = "PrivateScope",
|
|
7795
|
+
Private = "Private",
|
|
7796
|
+
FamANDAssem = "FamANDAssem",
|
|
7797
|
+
Assembly = "Assembly",
|
|
7798
|
+
Family = "Family",
|
|
7799
|
+
FamORAssem = "FamORAssem",
|
|
7800
|
+
Public = "Public",
|
|
7801
|
+
MemberAccessMask = "MemberAccessMask",
|
|
7802
|
+
UnmanagedExport = "UnmanagedExport",
|
|
7803
|
+
Static = "Static",
|
|
7804
|
+
Final = "Final",
|
|
7805
|
+
Virtual = "Virtual",
|
|
7806
|
+
HideBySig = "HideBySig",
|
|
7807
|
+
NewSlot = "NewSlot",
|
|
7808
|
+
CheckAccessOnOverride = "CheckAccessOnOverride",
|
|
7809
|
+
Abstract = "Abstract",
|
|
7810
|
+
SpecialName = "SpecialName",
|
|
7811
|
+
RTSpecialName = "RTSpecialName",
|
|
7812
|
+
PinvokeImpl = "PinvokeImpl",
|
|
7813
|
+
HasSecurity = "HasSecurity",
|
|
7814
|
+
RequireSecObject = "RequireSecObject",
|
|
7815
|
+
ReservedMask = "ReservedMask"
|
|
7816
|
+
}
|
|
7817
|
+
export declare enum MethodInfoMethodImplementationFlags {
|
|
7818
|
+
IL = "IL",
|
|
7819
|
+
Native = "Native",
|
|
7820
|
+
OPTIL = "OPTIL",
|
|
7821
|
+
CodeTypeMask = "CodeTypeMask",
|
|
7822
|
+
ManagedMask = "ManagedMask",
|
|
7823
|
+
NoInlining = "NoInlining",
|
|
7824
|
+
ForwardRef = "ForwardRef",
|
|
7825
|
+
Synchronized = "Synchronized",
|
|
7826
|
+
NoOptimization = "NoOptimization",
|
|
7827
|
+
PreserveSig = "PreserveSig",
|
|
7828
|
+
AggressiveInlining = "AggressiveInlining",
|
|
7829
|
+
AggressiveOptimization = "AggressiveOptimization",
|
|
7830
|
+
InternalCall = "InternalCall",
|
|
7831
|
+
MaxMethodImplVal = "MaxMethodImplVal"
|
|
7832
|
+
}
|
|
7833
|
+
export declare enum MethodInfoCallingConvention {
|
|
7834
|
+
Standard = "Standard",
|
|
7835
|
+
VarArgs = "VarArgs",
|
|
7836
|
+
Any = "Any",
|
|
7837
|
+
HasThis = "HasThis",
|
|
7838
|
+
ExplicitThis = "ExplicitThis"
|
|
7839
|
+
}
|
|
7840
|
+
export declare enum MethodInfoMemberType {
|
|
7841
|
+
Constructor = "Constructor",
|
|
7842
|
+
Event = "Event",
|
|
7843
|
+
Field = "Field",
|
|
7844
|
+
Method = "Method",
|
|
7845
|
+
Property = "Property",
|
|
7846
|
+
TypeInfo = "TypeInfo",
|
|
7847
|
+
Custom = "Custom",
|
|
7848
|
+
NestedType = "NestedType",
|
|
7849
|
+
All = "All"
|
|
7850
|
+
}
|
|
6600
7851
|
export declare enum ModifyIndividualInvestorQualifiedStatus {
|
|
6601
7852
|
QUALIFIED_PURCHASER = "QUALIFIED_PURCHASER",
|
|
6602
7853
|
QUALIFIED_CLIENT = "QUALIFIED_CLIENT",
|
|
@@ -6622,6 +7873,19 @@ export declare enum MonarkStageTransitionStage {
|
|
|
6622
7873
|
LIQUIDATION = "LIQUIDATION",
|
|
6623
7874
|
DISSOLVED = "DISSOLVED"
|
|
6624
7875
|
}
|
|
7876
|
+
export declare enum ParameterInfoAttributes {
|
|
7877
|
+
None = "None",
|
|
7878
|
+
In = "In",
|
|
7879
|
+
Out = "Out",
|
|
7880
|
+
Lcid = "Lcid",
|
|
7881
|
+
Retval = "Retval",
|
|
7882
|
+
Optional = "Optional",
|
|
7883
|
+
HasDefault = "HasDefault",
|
|
7884
|
+
HasFieldMarshal = "HasFieldMarshal",
|
|
7885
|
+
Reserved3 = "Reserved3",
|
|
7886
|
+
Reserved4 = "Reserved4",
|
|
7887
|
+
ReservedMask = "ReservedMask"
|
|
7888
|
+
}
|
|
6625
7889
|
export declare enum PartnerType {
|
|
6626
7890
|
BrokerageFirm = "BrokerageFirm",
|
|
6627
7891
|
ThirdPartyManager = "ThirdPartyManager",
|
|
@@ -6707,6 +7971,90 @@ export declare enum PreIPOCompanySPVMonarkStage {
|
|
|
6707
7971
|
LIQUIDATION = "LIQUIDATION",
|
|
6708
7972
|
DISSOLVED = "DISSOLVED"
|
|
6709
7973
|
}
|
|
7974
|
+
export declare enum PropertyInfoMemberType {
|
|
7975
|
+
Constructor = "Constructor",
|
|
7976
|
+
Event = "Event",
|
|
7977
|
+
Field = "Field",
|
|
7978
|
+
Method = "Method",
|
|
7979
|
+
Property = "Property",
|
|
7980
|
+
TypeInfo = "TypeInfo",
|
|
7981
|
+
Custom = "Custom",
|
|
7982
|
+
NestedType = "NestedType",
|
|
7983
|
+
All = "All"
|
|
7984
|
+
}
|
|
7985
|
+
export declare enum PropertyInfoAttributes {
|
|
7986
|
+
None = "None",
|
|
7987
|
+
SpecialName = "SpecialName",
|
|
7988
|
+
RTSpecialName = "RTSpecialName",
|
|
7989
|
+
HasDefault = "HasDefault",
|
|
7990
|
+
Reserved2 = "Reserved2",
|
|
7991
|
+
Reserved3 = "Reserved3",
|
|
7992
|
+
Reserved4 = "Reserved4",
|
|
7993
|
+
ReservedMask = "ReservedMask"
|
|
7994
|
+
}
|
|
7995
|
+
export declare enum QuestionnaireAnswerApiResponseStatusCode {
|
|
7996
|
+
Continue = "Continue",
|
|
7997
|
+
SwitchingProtocols = "SwitchingProtocols",
|
|
7998
|
+
Processing = "Processing",
|
|
7999
|
+
EarlyHints = "EarlyHints",
|
|
8000
|
+
OK = "OK",
|
|
8001
|
+
Created = "Created",
|
|
8002
|
+
Accepted = "Accepted",
|
|
8003
|
+
NonAuthoritativeInformation = "NonAuthoritativeInformation",
|
|
8004
|
+
NoContent = "NoContent",
|
|
8005
|
+
ResetContent = "ResetContent",
|
|
8006
|
+
PartialContent = "PartialContent",
|
|
8007
|
+
MultiStatus = "MultiStatus",
|
|
8008
|
+
AlreadyReported = "AlreadyReported",
|
|
8009
|
+
IMUsed = "IMUsed",
|
|
8010
|
+
MultipleChoices = "MultipleChoices",
|
|
8011
|
+
MovedPermanently = "MovedPermanently",
|
|
8012
|
+
Found = "Found",
|
|
8013
|
+
SeeOther = "SeeOther",
|
|
8014
|
+
NotModified = "NotModified",
|
|
8015
|
+
UseProxy = "UseProxy",
|
|
8016
|
+
Unused = "Unused",
|
|
8017
|
+
TemporaryRedirect = "TemporaryRedirect",
|
|
8018
|
+
PermanentRedirect = "PermanentRedirect",
|
|
8019
|
+
BadRequest = "BadRequest",
|
|
8020
|
+
Unauthorized = "Unauthorized",
|
|
8021
|
+
PaymentRequired = "PaymentRequired",
|
|
8022
|
+
Forbidden = "Forbidden",
|
|
8023
|
+
NotFound = "NotFound",
|
|
8024
|
+
MethodNotAllowed = "MethodNotAllowed",
|
|
8025
|
+
NotAcceptable = "NotAcceptable",
|
|
8026
|
+
ProxyAuthenticationRequired = "ProxyAuthenticationRequired",
|
|
8027
|
+
RequestTimeout = "RequestTimeout",
|
|
8028
|
+
Conflict = "Conflict",
|
|
8029
|
+
Gone = "Gone",
|
|
8030
|
+
LengthRequired = "LengthRequired",
|
|
8031
|
+
PreconditionFailed = "PreconditionFailed",
|
|
8032
|
+
RequestEntityTooLarge = "RequestEntityTooLarge",
|
|
8033
|
+
RequestUriTooLong = "RequestUriTooLong",
|
|
8034
|
+
UnsupportedMediaType = "UnsupportedMediaType",
|
|
8035
|
+
RequestedRangeNotSatisfiable = "RequestedRangeNotSatisfiable",
|
|
8036
|
+
ExpectationFailed = "ExpectationFailed",
|
|
8037
|
+
MisdirectedRequest = "MisdirectedRequest",
|
|
8038
|
+
UnprocessableEntity = "UnprocessableEntity",
|
|
8039
|
+
Locked = "Locked",
|
|
8040
|
+
FailedDependency = "FailedDependency",
|
|
8041
|
+
UpgradeRequired = "UpgradeRequired",
|
|
8042
|
+
PreconditionRequired = "PreconditionRequired",
|
|
8043
|
+
TooManyRequests = "TooManyRequests",
|
|
8044
|
+
RequestHeaderFieldsTooLarge = "RequestHeaderFieldsTooLarge",
|
|
8045
|
+
UnavailableForLegalReasons = "UnavailableForLegalReasons",
|
|
8046
|
+
InternalServerError = "InternalServerError",
|
|
8047
|
+
NotImplemented = "NotImplemented",
|
|
8048
|
+
BadGateway = "BadGateway",
|
|
8049
|
+
ServiceUnavailable = "ServiceUnavailable",
|
|
8050
|
+
GatewayTimeout = "GatewayTimeout",
|
|
8051
|
+
HttpVersionNotSupported = "HttpVersionNotSupported",
|
|
8052
|
+
VariantAlsoNegotiates = "VariantAlsoNegotiates",
|
|
8053
|
+
InsufficientStorage = "InsufficientStorage",
|
|
8054
|
+
LoopDetected = "LoopDetected",
|
|
8055
|
+
NotExtended = "NotExtended",
|
|
8056
|
+
NetworkAuthenticationRequired = "NetworkAuthenticationRequired"
|
|
8057
|
+
}
|
|
6710
8058
|
export declare enum QuestionnaireQuestionStatus {
|
|
6711
8059
|
DISABLED = "DISABLED",
|
|
6712
8060
|
ACTIVE = "ACTIVE"
|
|
@@ -6786,6 +8134,109 @@ export declare enum RegisteredFundSubscriptionActionResponsibleParty {
|
|
|
6786
8134
|
Investor = "Investor",
|
|
6787
8135
|
Advisor = "Advisor"
|
|
6788
8136
|
}
|
|
8137
|
+
export declare enum StructLayoutAttributeValue {
|
|
8138
|
+
Sequential = "Sequential",
|
|
8139
|
+
Explicit = "Explicit",
|
|
8140
|
+
Auto = "Auto"
|
|
8141
|
+
}
|
|
8142
|
+
export declare enum TypeMemberType {
|
|
8143
|
+
Constructor = "Constructor",
|
|
8144
|
+
Event = "Event",
|
|
8145
|
+
Field = "Field",
|
|
8146
|
+
Method = "Method",
|
|
8147
|
+
Property = "Property",
|
|
8148
|
+
TypeInfo = "TypeInfo",
|
|
8149
|
+
Custom = "Custom",
|
|
8150
|
+
NestedType = "NestedType",
|
|
8151
|
+
All = "All"
|
|
8152
|
+
}
|
|
8153
|
+
export declare enum TypeGenericParameterAttributes {
|
|
8154
|
+
None = "None",
|
|
8155
|
+
Covariant = "Covariant",
|
|
8156
|
+
Contravariant = "Contravariant",
|
|
8157
|
+
VarianceMask = "VarianceMask",
|
|
8158
|
+
ReferenceTypeConstraint = "ReferenceTypeConstraint",
|
|
8159
|
+
NotNullableValueTypeConstraint = "NotNullableValueTypeConstraint",
|
|
8160
|
+
DefaultConstructorConstraint = "DefaultConstructorConstraint",
|
|
8161
|
+
SpecialConstraintMask = "SpecialConstraintMask"
|
|
8162
|
+
}
|
|
8163
|
+
export declare enum TypeAttributes {
|
|
8164
|
+
NotPublic = "NotPublic",
|
|
8165
|
+
Public = "Public",
|
|
8166
|
+
NestedPublic = "NestedPublic",
|
|
8167
|
+
NestedPrivate = "NestedPrivate",
|
|
8168
|
+
NestedFamily = "NestedFamily",
|
|
8169
|
+
NestedAssembly = "NestedAssembly",
|
|
8170
|
+
NestedFamANDAssem = "NestedFamANDAssem",
|
|
8171
|
+
VisibilityMask = "VisibilityMask",
|
|
8172
|
+
SequentialLayout = "SequentialLayout",
|
|
8173
|
+
ExplicitLayout = "ExplicitLayout",
|
|
8174
|
+
LayoutMask = "LayoutMask",
|
|
8175
|
+
Interface = "Interface",
|
|
8176
|
+
Abstract = "Abstract",
|
|
8177
|
+
Sealed = "Sealed",
|
|
8178
|
+
SpecialName = "SpecialName",
|
|
8179
|
+
RTSpecialName = "RTSpecialName",
|
|
8180
|
+
Import = "Import",
|
|
8181
|
+
Serializable = "Serializable",
|
|
8182
|
+
WindowsRuntime = "WindowsRuntime",
|
|
8183
|
+
UnicodeClass = "UnicodeClass",
|
|
8184
|
+
AutoClass = "AutoClass",
|
|
8185
|
+
StringFormatMask = "StringFormatMask",
|
|
8186
|
+
HasSecurity = "HasSecurity",
|
|
8187
|
+
ReservedMask = "ReservedMask",
|
|
8188
|
+
BeforeFieldInit = "BeforeFieldInit",
|
|
8189
|
+
CustomFormatMask = "CustomFormatMask"
|
|
8190
|
+
}
|
|
8191
|
+
export declare enum TypeInfoMemberType {
|
|
8192
|
+
Constructor = "Constructor",
|
|
8193
|
+
Event = "Event",
|
|
8194
|
+
Field = "Field",
|
|
8195
|
+
Method = "Method",
|
|
8196
|
+
Property = "Property",
|
|
8197
|
+
TypeInfo = "TypeInfo",
|
|
8198
|
+
Custom = "Custom",
|
|
8199
|
+
NestedType = "NestedType",
|
|
8200
|
+
All = "All"
|
|
8201
|
+
}
|
|
8202
|
+
export declare enum TypeInfoGenericParameterAttributes {
|
|
8203
|
+
None = "None",
|
|
8204
|
+
Covariant = "Covariant",
|
|
8205
|
+
Contravariant = "Contravariant",
|
|
8206
|
+
VarianceMask = "VarianceMask",
|
|
8207
|
+
ReferenceTypeConstraint = "ReferenceTypeConstraint",
|
|
8208
|
+
NotNullableValueTypeConstraint = "NotNullableValueTypeConstraint",
|
|
8209
|
+
DefaultConstructorConstraint = "DefaultConstructorConstraint",
|
|
8210
|
+
SpecialConstraintMask = "SpecialConstraintMask"
|
|
8211
|
+
}
|
|
8212
|
+
export declare enum TypeInfoAttributes {
|
|
8213
|
+
NotPublic = "NotPublic",
|
|
8214
|
+
Public = "Public",
|
|
8215
|
+
NestedPublic = "NestedPublic",
|
|
8216
|
+
NestedPrivate = "NestedPrivate",
|
|
8217
|
+
NestedFamily = "NestedFamily",
|
|
8218
|
+
NestedAssembly = "NestedAssembly",
|
|
8219
|
+
NestedFamANDAssem = "NestedFamANDAssem",
|
|
8220
|
+
VisibilityMask = "VisibilityMask",
|
|
8221
|
+
SequentialLayout = "SequentialLayout",
|
|
8222
|
+
ExplicitLayout = "ExplicitLayout",
|
|
8223
|
+
LayoutMask = "LayoutMask",
|
|
8224
|
+
Interface = "Interface",
|
|
8225
|
+
Abstract = "Abstract",
|
|
8226
|
+
Sealed = "Sealed",
|
|
8227
|
+
SpecialName = "SpecialName",
|
|
8228
|
+
RTSpecialName = "RTSpecialName",
|
|
8229
|
+
Import = "Import",
|
|
8230
|
+
Serializable = "Serializable",
|
|
8231
|
+
WindowsRuntime = "WindowsRuntime",
|
|
8232
|
+
UnicodeClass = "UnicodeClass",
|
|
8233
|
+
AutoClass = "AutoClass",
|
|
8234
|
+
StringFormatMask = "StringFormatMask",
|
|
8235
|
+
HasSecurity = "HasSecurity",
|
|
8236
|
+
ReservedMask = "ReservedMask",
|
|
8237
|
+
BeforeFieldInit = "BeforeFieldInit",
|
|
8238
|
+
CustomFormatMask = "CustomFormatMask"
|
|
8239
|
+
}
|
|
6789
8240
|
export declare enum UpdateEntityInvestorEntityType {
|
|
6790
8241
|
SOLE_PROPRIETOR = "SOLE_PROPRIETOR",
|
|
6791
8242
|
SINGLE_MEMBER_LLC = "SINGLE_MEMBER_LLC",
|