@monarkmarkets/api-client 1.2.5 → 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.
- package/dist/Client.d.ts +1479 -20
- package/dist/Client.js +2222 -12
- 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;
|
|
@@ -1297,6 +1362,114 @@ export interface ICitation {
|
|
|
1297
1362
|
/** Updated at the specified date. */
|
|
1298
1363
|
updatedAt?: Date | undefined;
|
|
1299
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
|
+
}
|
|
1300
1473
|
export declare class CreateFinancialAdvisor implements ICreateFinancialAdvisor {
|
|
1301
1474
|
/** This is the unique identifier of the Institution that the Financial Advisor is attached to. */
|
|
1302
1475
|
financialInstitutionId?: string;
|
|
@@ -1633,6 +1806,50 @@ export interface ICreateWebhook {
|
|
|
1633
1806
|
/** Token value used to create a signature on webhook delivery. */
|
|
1634
1807
|
token: string;
|
|
1635
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
|
+
}
|
|
1636
1853
|
/** Represents a document associated with the fund admin. */
|
|
1637
1854
|
export declare class Document implements IDocument {
|
|
1638
1855
|
/** Unique identifier for the document. */
|
|
@@ -1825,6 +2042,44 @@ https://github.com/country-regions/country-region-data/blob/master/data.json for
|
|
|
1825
2042
|
/** Trust type (nullable). */
|
|
1826
2043
|
trustType?: EntityInvestorTrustType | undefined;
|
|
1827
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
|
+
}
|
|
1828
2083
|
/** Represents a fee structure that can be associated with either a registered fund or a share class. */
|
|
1829
2084
|
export declare class FeeStructure implements IFeeStructure {
|
|
1830
2085
|
/** Unique ID of the fee structure. */
|
|
@@ -1859,6 +2114,66 @@ export interface IFeeStructure {
|
|
|
1859
2114
|
/** Text field used to describe the fee structure. */
|
|
1860
2115
|
description?: string | undefined;
|
|
1861
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
|
+
}
|
|
1862
2177
|
/** FinancialAdvisor represents the financial advisor information. */
|
|
1863
2178
|
export declare class FinancialAdvisor implements IFinancialAdvisor {
|
|
1864
2179
|
/** Gets or sets id represents the unique id of the Financial Advisor on the internal system. */
|
|
@@ -2085,6 +2400,14 @@ export interface IFundAdvisor {
|
|
|
2085
2400
|
/** Main office phone number of fund advisor */
|
|
2086
2401
|
phone?: string | undefined;
|
|
2087
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
|
+
}
|
|
2088
2411
|
/** IndicationOfInterest represents the primary offering information on the IoI. */
|
|
2089
2412
|
export declare class IndicationOfInterest implements IIndicationOfInterest {
|
|
2090
2413
|
/** Unique ID associated with an IOI. */
|
|
@@ -2565,6 +2888,14 @@ https://github.com/country-regions/country-region-data/blob/master/data.json for
|
|
|
2565
2888
|
/** Date that KYC expires. */
|
|
2566
2889
|
kycUpdatedAt?: Date | undefined;
|
|
2567
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
|
+
}
|
|
2568
2899
|
/** Investor represents the primary offering information on the investor. */
|
|
2569
2900
|
export declare class Investor implements IInvestor {
|
|
2570
2901
|
/** Unique ID, provided by Monark, associated with an Investor. */
|
|
@@ -2849,6 +3180,180 @@ export interface IListing {
|
|
|
2849
3180
|
/** Date the company was delisted, if applicable. */
|
|
2850
3181
|
delistedAt?: Date | undefined;
|
|
2851
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
|
+
}
|
|
2852
3357
|
/** Represents a significant event or milestone in the company’s lifecycle. */
|
|
2853
3358
|
export declare class Milestone implements IMilestone {
|
|
2854
3359
|
/** ID for the milestone. */
|
|
@@ -3001,6 +3506,42 @@ https://github.com/country-regions/country-region-data/blob/master/data.json for
|
|
|
3001
3506
|
/** The qualification status of an Investor. */
|
|
3002
3507
|
qualifiedStatus?: ModifyIndividualInvestorQualifiedStatus | undefined;
|
|
3003
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
|
+
}
|
|
3004
3545
|
/** Represents a transition of an SPV to a specific stage in its lifecycle. */
|
|
3005
3546
|
export declare class MonarkStageTransition implements IMonarkStageTransition {
|
|
3006
3547
|
/** The stage the SPV transitioned to. */
|
|
@@ -3677,6 +4218,44 @@ export interface IPagination {
|
|
|
3677
4218
|
totalPages?: number;
|
|
3678
4219
|
currentPage?: number;
|
|
3679
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
|
+
}
|
|
3680
4259
|
/** Manager represents the entity responsible for making investment decisions on behalf of the SPV. */
|
|
3681
4260
|
export declare class Partner implements IPartner {
|
|
3682
4261
|
/** Unique ID, provided by Monark, associated with a Partner. */
|
|
@@ -4392,13 +4971,13 @@ export declare class PreIPOCompanyInvestment implements IPreIPOCompanyInvestment
|
|
|
4392
4971
|
shareType: string | undefined;
|
|
4393
4972
|
/** Share class of PreIPOCompany. Can be Series A, Series B, Series C, etc. */
|
|
4394
4973
|
shareClass: string | undefined;
|
|
4395
|
-
/**
|
|
4974
|
+
/** Estimated number of shares in the PreIPOCompany being purchased as part of this investment. */
|
|
4396
4975
|
numberOfShares?: number | undefined;
|
|
4397
|
-
/** The net amount of capital
|
|
4398
|
-
|
|
4399
|
-
/**
|
|
4400
|
-
|
|
4401
|
-
/**
|
|
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. */
|
|
4402
4981
|
pricePerShare?: number | undefined;
|
|
4403
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. */
|
|
4404
4983
|
transactionType?: PreIPOCompanyInvestmentTransactionType;
|
|
@@ -4406,6 +4985,8 @@ export declare class PreIPOCompanyInvestment implements IPreIPOCompanyInvestment
|
|
|
4406
4985
|
layeredSPV?: LayeredSPV | undefined;
|
|
4407
4986
|
/** The name of the PreIPOCompany. */
|
|
4408
4987
|
companyName?: string | undefined;
|
|
4988
|
+
/** Broker fees, if any, associated with this transaction. */
|
|
4989
|
+
brokerFee?: number | undefined;
|
|
4409
4990
|
constructor(data?: IPreIPOCompanyInvestment);
|
|
4410
4991
|
init(_data?: any): void;
|
|
4411
4992
|
static fromJS(data: any): PreIPOCompanyInvestment;
|
|
@@ -4424,13 +5005,13 @@ export interface IPreIPOCompanyInvestment {
|
|
|
4424
5005
|
shareType: string | undefined;
|
|
4425
5006
|
/** Share class of PreIPOCompany. Can be Series A, Series B, Series C, etc. */
|
|
4426
5007
|
shareClass: string | undefined;
|
|
4427
|
-
/**
|
|
5008
|
+
/** Estimated number of shares in the PreIPOCompany being purchased as part of this investment. */
|
|
4428
5009
|
numberOfShares?: number | undefined;
|
|
4429
|
-
/** The net amount of capital
|
|
4430
|
-
|
|
4431
|
-
/**
|
|
4432
|
-
|
|
4433
|
-
/**
|
|
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. */
|
|
4434
5015
|
pricePerShare?: number | undefined;
|
|
4435
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. */
|
|
4436
5017
|
transactionType?: PreIPOCompanyInvestmentTransactionType;
|
|
@@ -4438,6 +5019,8 @@ export interface IPreIPOCompanyInvestment {
|
|
|
4438
5019
|
layeredSPV?: LayeredSPV | undefined;
|
|
4439
5020
|
/** The name of the PreIPOCompany. */
|
|
4440
5021
|
companyName?: string | undefined;
|
|
5022
|
+
/** Broker fees, if any, associated with this transaction. */
|
|
5023
|
+
brokerFee?: number | undefined;
|
|
4441
5024
|
}
|
|
4442
5025
|
export declare class PreIPOCompanyInvestmentApiResponse implements IPreIPOCompanyInvestmentApiResponse {
|
|
4443
5026
|
items?: PreIPOCompanyInvestment[] | undefined;
|
|
@@ -4847,6 +5430,44 @@ export interface IProblemDetails {
|
|
|
4847
5430
|
instance?: string | undefined;
|
|
4848
5431
|
[key: string]: any;
|
|
4849
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
|
+
}
|
|
4850
5471
|
/** Questionnaire repesents the public information we provide for a Questionnaire in the Primary Offering. */
|
|
4851
5472
|
export declare class Questionnaire implements IQuestionnaire {
|
|
4852
5473
|
/** Unique ID associated with a Questionnaire. */
|
|
@@ -4917,6 +5538,34 @@ export interface IQuestionnaireAnswer {
|
|
|
4917
5538
|
/** Updated at the specified date. */
|
|
4918
5539
|
updatedAt?: Date;
|
|
4919
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
|
+
}
|
|
4920
5569
|
export declare class QuestionnaireApiResponse implements IQuestionnaireApiResponse {
|
|
4921
5570
|
items?: Questionnaire[] | undefined;
|
|
4922
5571
|
pagination?: Pagination | undefined;
|
|
@@ -5293,6 +5942,36 @@ export interface IRegisteredFundSubscriptionApiResponse {
|
|
|
5293
5942
|
items?: RegisteredFundSubscription[] | undefined;
|
|
5294
5943
|
pagination?: Pagination | undefined;
|
|
5295
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
|
+
}
|
|
5296
5975
|
/** Represents a share class of a registered fund. */
|
|
5297
5976
|
export declare class ShareClass implements IShareClass {
|
|
5298
5977
|
/** Unique ID for share class */
|
|
@@ -5407,6 +6086,344 @@ export interface ISignatureRequest {
|
|
|
5407
6086
|
/** The name to place as the signature on the document. */
|
|
5408
6087
|
signatureName: string;
|
|
5409
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
|
+
}
|
|
5410
6427
|
export declare class UpdateEntityInvestor implements IUpdateEntityInvestor {
|
|
5411
6428
|
/** Legal name of the entity. */
|
|
5412
6429
|
legalName: string;
|
|
@@ -6293,17 +7310,21 @@ export declare enum SortOrder16 {
|
|
|
6293
7310
|
Ascending = "Ascending",
|
|
6294
7311
|
Descending = "Descending"
|
|
6295
7312
|
}
|
|
7313
|
+
export declare enum SortOrder17 {
|
|
7314
|
+
Ascending = "Ascending",
|
|
7315
|
+
Descending = "Descending"
|
|
7316
|
+
}
|
|
6296
7317
|
export declare enum ResponsibleParty {
|
|
6297
7318
|
Partner = "Partner",
|
|
6298
7319
|
Monark = "Monark",
|
|
6299
7320
|
Investor = "Investor",
|
|
6300
7321
|
Advisor = "Advisor"
|
|
6301
7322
|
}
|
|
6302
|
-
export declare enum
|
|
7323
|
+
export declare enum SortOrder18 {
|
|
6303
7324
|
Ascending = "Ascending",
|
|
6304
7325
|
Descending = "Descending"
|
|
6305
7326
|
}
|
|
6306
|
-
export declare enum
|
|
7327
|
+
export declare enum SortOrder19 {
|
|
6307
7328
|
Ascending = "Ascending",
|
|
6308
7329
|
Descending = "Descending"
|
|
6309
7330
|
}
|
|
@@ -6322,6 +7343,11 @@ export declare enum DeliveryStatus {
|
|
|
6322
7343
|
Delivered = "Delivered",
|
|
6323
7344
|
Failed = "Failed"
|
|
6324
7345
|
}
|
|
7346
|
+
export declare enum AssemblySecurityRuleSet {
|
|
7347
|
+
None = "None",
|
|
7348
|
+
Level1 = "Level1",
|
|
7349
|
+
Level2 = "Level2"
|
|
7350
|
+
}
|
|
6325
7351
|
export declare enum BulkPreIPOCompanyType {
|
|
6326
7352
|
SOLE_PROPRIETOR = "SOLE_PROPRIETOR",
|
|
6327
7353
|
SINGLE_MEMBER_LLC = "SINGLE_MEMBER_LLC",
|
|
@@ -6379,6 +7405,64 @@ export declare enum BulkPreIPOCompanySPVMonarkStage {
|
|
|
6379
7405
|
LIQUIDATION = "LIQUIDATION",
|
|
6380
7406
|
DISSOLVED = "DISSOLVED"
|
|
6381
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
|
+
}
|
|
6382
7466
|
export declare enum CreateInvestorType {
|
|
6383
7467
|
IndividualInvestor = "IndividualInvestor",
|
|
6384
7468
|
EntityInvestor = "EntityInvestor"
|
|
@@ -6485,6 +7569,22 @@ export declare enum EntityInvestorTrustType {
|
|
|
6485
7569
|
REVOCABLE_TRUST = "REVOCABLE_TRUST",
|
|
6486
7570
|
IRREVOCABLE_TRUST = "IRREVOCABLE_TRUST"
|
|
6487
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
|
+
}
|
|
6488
7588
|
export declare enum FeeStructureFeeType {
|
|
6489
7589
|
MANAGEMENT_FEE = "MANAGEMENT_FEE",
|
|
6490
7590
|
PERFORMANCE_FEE = "PERFORMANCE_FEE",
|
|
@@ -6492,6 +7592,38 @@ export declare enum FeeStructureFeeType {
|
|
|
6492
7592
|
SALES_LOAD = "SALES_LOAD",
|
|
6493
7593
|
EARLY_REDEMPTION_FEE = "EARLY_REDEMPTION_FEE"
|
|
6494
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
|
+
}
|
|
6495
7627
|
export declare enum FinancialInstitutionType {
|
|
6496
7628
|
IntroducingBrokerDealer = "IntroducingBrokerDealer",
|
|
6497
7629
|
SelfClearingBrokerDealer = "SelfClearingBrokerDealer",
|
|
@@ -6597,6 +7729,133 @@ export declare enum LayeredSPVFundStructure {
|
|
|
6597
7729
|
ThreeCOne = "ThreeCOne",
|
|
6598
7730
|
ThreeCSeven = "ThreeCSeven"
|
|
6599
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
|
+
}
|
|
6600
7859
|
export declare enum ModifyIndividualInvestorQualifiedStatus {
|
|
6601
7860
|
QUALIFIED_PURCHASER = "QUALIFIED_PURCHASER",
|
|
6602
7861
|
QUALIFIED_CLIENT = "QUALIFIED_CLIENT",
|
|
@@ -6622,6 +7881,19 @@ export declare enum MonarkStageTransitionStage {
|
|
|
6622
7881
|
LIQUIDATION = "LIQUIDATION",
|
|
6623
7882
|
DISSOLVED = "DISSOLVED"
|
|
6624
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
|
+
}
|
|
6625
7897
|
export declare enum PartnerType {
|
|
6626
7898
|
BrokerageFirm = "BrokerageFirm",
|
|
6627
7899
|
ThirdPartyManager = "ThirdPartyManager",
|
|
@@ -6707,6 +7979,90 @@ export declare enum PreIPOCompanySPVMonarkStage {
|
|
|
6707
7979
|
LIQUIDATION = "LIQUIDATION",
|
|
6708
7980
|
DISSOLVED = "DISSOLVED"
|
|
6709
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
|
+
}
|
|
6710
8066
|
export declare enum QuestionnaireQuestionStatus {
|
|
6711
8067
|
DISABLED = "DISABLED",
|
|
6712
8068
|
ACTIVE = "ACTIVE"
|
|
@@ -6786,6 +8142,109 @@ export declare enum RegisteredFundSubscriptionActionResponsibleParty {
|
|
|
6786
8142
|
Investor = "Investor",
|
|
6787
8143
|
Advisor = "Advisor"
|
|
6788
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
|
+
}
|
|
6789
8248
|
export declare enum UpdateEntityInvestorEntityType {
|
|
6790
8249
|
SOLE_PROPRIETOR = "SOLE_PROPRIETOR",
|
|
6791
8250
|
SINGLE_MEMBER_LLC = "SINGLE_MEMBER_LLC",
|