@monarkmarkets/api-client 1.3.2 → 1.3.4
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 +250 -20
- package/dist/Client.js +216 -0
- package/package.json +1 -1
package/dist/Client.d.ts
CHANGED
|
@@ -2275,15 +2275,15 @@ export declare class EvergreenFund implements IEvergreenFund {
|
|
|
2275
2275
|
/** Official name of the Evergreen Fund */
|
|
2276
2276
|
fundName: string | undefined;
|
|
2277
2277
|
/** Manager of the Evergreen Fund */
|
|
2278
|
-
manager
|
|
2278
|
+
manager?: string | undefined;
|
|
2279
2279
|
/** Year of inception for the Evergreen Fund */
|
|
2280
|
-
inception?: number;
|
|
2280
|
+
inception?: number | undefined;
|
|
2281
2281
|
/** Deal type focus of the Evergreen Fund */
|
|
2282
2282
|
dealTypeFocus?: string | undefined;
|
|
2283
2283
|
/** Strategy focus of the Evergreen Fund */
|
|
2284
2284
|
strategyFocus?: string | undefined;
|
|
2285
2285
|
/** Management fee charged by the Evergreen Fund */
|
|
2286
|
-
managementFee?: number;
|
|
2286
|
+
managementFee?: number | undefined;
|
|
2287
2287
|
/** Type of the Evergreen Fund */
|
|
2288
2288
|
fundType?: string | undefined;
|
|
2289
2289
|
/** Registration status of the Evergreen Fund */
|
|
@@ -2304,15 +2304,15 @@ export interface IEvergreenFund {
|
|
|
2304
2304
|
/** Official name of the Evergreen Fund */
|
|
2305
2305
|
fundName: string | undefined;
|
|
2306
2306
|
/** Manager of the Evergreen Fund */
|
|
2307
|
-
manager
|
|
2307
|
+
manager?: string | undefined;
|
|
2308
2308
|
/** Year of inception for the Evergreen Fund */
|
|
2309
|
-
inception?: number;
|
|
2309
|
+
inception?: number | undefined;
|
|
2310
2310
|
/** Deal type focus of the Evergreen Fund */
|
|
2311
2311
|
dealTypeFocus?: string | undefined;
|
|
2312
2312
|
/** Strategy focus of the Evergreen Fund */
|
|
2313
2313
|
strategyFocus?: string | undefined;
|
|
2314
2314
|
/** Management fee charged by the Evergreen Fund */
|
|
2315
|
-
managementFee?: number;
|
|
2315
|
+
managementFee?: number | undefined;
|
|
2316
2316
|
/** Type of the Evergreen Fund */
|
|
2317
2317
|
fundType?: string | undefined;
|
|
2318
2318
|
/** Registration status of the Evergreen Fund */
|
|
@@ -2397,9 +2397,9 @@ export declare class EvergreenReturns implements IEvergreenReturns {
|
|
|
2397
2397
|
/** Name of the fund */
|
|
2398
2398
|
fundName: string | undefined;
|
|
2399
2399
|
/** Returns since inception (as percentage) */
|
|
2400
|
-
sinceInception?: number;
|
|
2400
|
+
sinceInception?: number | undefined;
|
|
2401
2401
|
/** One year returns (as percentage) */
|
|
2402
|
-
oneYear?: number;
|
|
2402
|
+
oneYear?: number | undefined;
|
|
2403
2403
|
constructor(data?: IEvergreenReturns);
|
|
2404
2404
|
init(_data?: any): void;
|
|
2405
2405
|
static fromJS(data: any): EvergreenReturns;
|
|
@@ -2414,9 +2414,9 @@ export interface IEvergreenReturns {
|
|
|
2414
2414
|
/** Name of the fund */
|
|
2415
2415
|
fundName: string | undefined;
|
|
2416
2416
|
/** Returns since inception (as percentage) */
|
|
2417
|
-
sinceInception?: number;
|
|
2417
|
+
sinceInception?: number | undefined;
|
|
2418
2418
|
/** One year returns (as percentage) */
|
|
2419
|
-
oneYear?: number;
|
|
2419
|
+
oneYear?: number | undefined;
|
|
2420
2420
|
}
|
|
2421
2421
|
export declare class EvergreenReturnsApiResponse implements IEvergreenReturnsApiResponse {
|
|
2422
2422
|
items?: EvergreenReturns[] | undefined;
|
|
@@ -2441,15 +2441,15 @@ export declare class EvergreenShareClasses implements IEvergreenShareClasses {
|
|
|
2441
2441
|
/** Share class ticker symbol */
|
|
2442
2442
|
shareClassTicker: string | undefined;
|
|
2443
2443
|
/** Minimum initial investment size */
|
|
2444
|
-
minInvestmentSize?: number;
|
|
2444
|
+
minInvestmentSize?: number | undefined;
|
|
2445
2445
|
/** Minimum subsequent investment amount */
|
|
2446
|
-
minSubsequentInvestment?: number;
|
|
2446
|
+
minSubsequentInvestment?: number | undefined;
|
|
2447
2447
|
/** Sales load percentage or amount */
|
|
2448
|
-
salesLoad?: number;
|
|
2448
|
+
salesLoad?: number | undefined;
|
|
2449
2449
|
/** Distribution and servicing fee (12b-1 fee) */
|
|
2450
|
-
distributionAndServicingFee?: number;
|
|
2450
|
+
distributionAndServicingFee?: number | undefined;
|
|
2451
2451
|
/** Early repurchase or redemption fee */
|
|
2452
|
-
earlyRepurchaseOrRedemptionFee?: number;
|
|
2452
|
+
earlyRepurchaseOrRedemptionFee?: number | undefined;
|
|
2453
2453
|
/** Status of the share class (e.g., Active, Inactive, Closed) */
|
|
2454
2454
|
status: string | undefined;
|
|
2455
2455
|
constructor(data?: IEvergreenShareClasses);
|
|
@@ -2468,15 +2468,15 @@ export interface IEvergreenShareClasses {
|
|
|
2468
2468
|
/** Share class ticker symbol */
|
|
2469
2469
|
shareClassTicker: string | undefined;
|
|
2470
2470
|
/** Minimum initial investment size */
|
|
2471
|
-
minInvestmentSize?: number;
|
|
2471
|
+
minInvestmentSize?: number | undefined;
|
|
2472
2472
|
/** Minimum subsequent investment amount */
|
|
2473
|
-
minSubsequentInvestment?: number;
|
|
2473
|
+
minSubsequentInvestment?: number | undefined;
|
|
2474
2474
|
/** Sales load percentage or amount */
|
|
2475
|
-
salesLoad?: number;
|
|
2475
|
+
salesLoad?: number | undefined;
|
|
2476
2476
|
/** Distribution and servicing fee (12b-1 fee) */
|
|
2477
|
-
distributionAndServicingFee?: number;
|
|
2477
|
+
distributionAndServicingFee?: number | undefined;
|
|
2478
2478
|
/** Early repurchase or redemption fee */
|
|
2479
|
-
earlyRepurchaseOrRedemptionFee?: number;
|
|
2479
|
+
earlyRepurchaseOrRedemptionFee?: number | undefined;
|
|
2480
2480
|
/** Status of the share class (e.g., Active, Inactive, Closed) */
|
|
2481
2481
|
status: string | undefined;
|
|
2482
2482
|
}
|
|
@@ -6526,6 +6526,92 @@ export interface ISignatureRequest {
|
|
|
6526
6526
|
/** The name to place as the signature on the document. */
|
|
6527
6527
|
signatureName: string;
|
|
6528
6528
|
}
|
|
6529
|
+
export declare class SpvAipData implements ISpvAipData {
|
|
6530
|
+
/** Optional override for the Security Identifier. */
|
|
6531
|
+
securityIdentifier?: SpvAipDataSecurityIdentifier;
|
|
6532
|
+
/** Optional override for the Security Issue ID for Custom Values. */
|
|
6533
|
+
overridenSecurityIssueId?: string | undefined;
|
|
6534
|
+
/** The given AIP fund number. */
|
|
6535
|
+
fundNumber: string;
|
|
6536
|
+
/** Indicates if the Fund is Unitized or Capital Balance. */
|
|
6537
|
+
unitizedIndicator?: SpvAipDataUnitizedIndicator;
|
|
6538
|
+
/** Registered Indicator – Registered implies the instrument is 33 Act Registered
|
|
6539
|
+
Unregistered implies the instrument is not 33 Act Registered */
|
|
6540
|
+
registeredIndicator?: SpvAipDataRegisteredIndicator;
|
|
6541
|
+
/** The security type represented by the Fund. */
|
|
6542
|
+
aipSecurityType?: SpvAipDataAipSecurityType;
|
|
6543
|
+
/** The legal ownership structure of the Fund. */
|
|
6544
|
+
ownershipStructure?: SpvAipDataOwnershipStructure;
|
|
6545
|
+
/** See DTCC AIP for more info. */
|
|
6546
|
+
acceptedNoLienIndicator: boolean;
|
|
6547
|
+
/** Series is a group of shares issued each time the Fund receives new or additional subscription.
|
|
6548
|
+
All subscriptions that occur at the same time belong to the same series.
|
|
6549
|
+
All shareholders in the same series pay performance fee on those shares at the same time. */
|
|
6550
|
+
seriesEligibilityIndicator?: SpvAipDataSeriesEligibilityIndicator;
|
|
6551
|
+
/** Indicates how the Fund processes purchase/subscription Orders. */
|
|
6552
|
+
purchaseOrderProcessIndicator?: SpvAipDataPurchaseOrderProcessIndicator;
|
|
6553
|
+
/** The load type indicator for the SPV. */
|
|
6554
|
+
loadTypeIndicator?: SpvAipDataLoadTypeIndicator;
|
|
6555
|
+
/** The maximum percentage of commission charged on the security. */
|
|
6556
|
+
commissionPercentageHigh?: number;
|
|
6557
|
+
/** The minimum percentage of commission charged on the security. */
|
|
6558
|
+
commissionPercentageLow?: number;
|
|
6559
|
+
/** How often the fund allows transfers. */
|
|
6560
|
+
transferFrequency?: SpvAipDataTransferFrequency;
|
|
6561
|
+
/** The AIP security contact type for the SPV. */
|
|
6562
|
+
securityContactType?: SpvAipDataSecurityContactType;
|
|
6563
|
+
/** The address for the AIP security contact. */
|
|
6564
|
+
addressLine1: string;
|
|
6565
|
+
/** Will valuations be estimated or actual. */
|
|
6566
|
+
valuationBasis?: SpvAipDataValuationBasis;
|
|
6567
|
+
/** The methodology used to determine the primary value. */
|
|
6568
|
+
valuationMethod?: SpvAipDataValuationMethod;
|
|
6569
|
+
constructor(data?: ISpvAipData);
|
|
6570
|
+
init(_data?: any): void;
|
|
6571
|
+
static fromJS(data: any): SpvAipData;
|
|
6572
|
+
toJSON(data?: any): any;
|
|
6573
|
+
}
|
|
6574
|
+
export interface ISpvAipData {
|
|
6575
|
+
/** Optional override for the Security Identifier. */
|
|
6576
|
+
securityIdentifier?: SpvAipDataSecurityIdentifier;
|
|
6577
|
+
/** Optional override for the Security Issue ID for Custom Values. */
|
|
6578
|
+
overridenSecurityIssueId?: string | undefined;
|
|
6579
|
+
/** The given AIP fund number. */
|
|
6580
|
+
fundNumber: string;
|
|
6581
|
+
/** Indicates if the Fund is Unitized or Capital Balance. */
|
|
6582
|
+
unitizedIndicator?: SpvAipDataUnitizedIndicator;
|
|
6583
|
+
/** Registered Indicator – Registered implies the instrument is 33 Act Registered
|
|
6584
|
+
Unregistered implies the instrument is not 33 Act Registered */
|
|
6585
|
+
registeredIndicator?: SpvAipDataRegisteredIndicator;
|
|
6586
|
+
/** The security type represented by the Fund. */
|
|
6587
|
+
aipSecurityType?: SpvAipDataAipSecurityType;
|
|
6588
|
+
/** The legal ownership structure of the Fund. */
|
|
6589
|
+
ownershipStructure?: SpvAipDataOwnershipStructure;
|
|
6590
|
+
/** See DTCC AIP for more info. */
|
|
6591
|
+
acceptedNoLienIndicator: boolean;
|
|
6592
|
+
/** Series is a group of shares issued each time the Fund receives new or additional subscription.
|
|
6593
|
+
All subscriptions that occur at the same time belong to the same series.
|
|
6594
|
+
All shareholders in the same series pay performance fee on those shares at the same time. */
|
|
6595
|
+
seriesEligibilityIndicator?: SpvAipDataSeriesEligibilityIndicator;
|
|
6596
|
+
/** Indicates how the Fund processes purchase/subscription Orders. */
|
|
6597
|
+
purchaseOrderProcessIndicator?: SpvAipDataPurchaseOrderProcessIndicator;
|
|
6598
|
+
/** The load type indicator for the SPV. */
|
|
6599
|
+
loadTypeIndicator?: SpvAipDataLoadTypeIndicator;
|
|
6600
|
+
/** The maximum percentage of commission charged on the security. */
|
|
6601
|
+
commissionPercentageHigh?: number;
|
|
6602
|
+
/** The minimum percentage of commission charged on the security. */
|
|
6603
|
+
commissionPercentageLow?: number;
|
|
6604
|
+
/** How often the fund allows transfers. */
|
|
6605
|
+
transferFrequency?: SpvAipDataTransferFrequency;
|
|
6606
|
+
/** The AIP security contact type for the SPV. */
|
|
6607
|
+
securityContactType?: SpvAipDataSecurityContactType;
|
|
6608
|
+
/** The address for the AIP security contact. */
|
|
6609
|
+
addressLine1: string;
|
|
6610
|
+
/** Will valuations be estimated or actual. */
|
|
6611
|
+
valuationBasis?: SpvAipDataValuationBasis;
|
|
6612
|
+
/** The methodology used to determine the primary value. */
|
|
6613
|
+
valuationMethod?: SpvAipDataValuationMethod;
|
|
6614
|
+
}
|
|
6529
6615
|
export declare class StructLayoutAttribute implements IStructLayoutAttribute {
|
|
6530
6616
|
readonly typeId?: any | undefined;
|
|
6531
6617
|
readonly value?: StructLayoutAttributeValue;
|
|
@@ -8593,6 +8679,150 @@ export declare enum RegisteredFundSubscriptionActionResponsibleParty {
|
|
|
8593
8679
|
Investor = "Investor",
|
|
8594
8680
|
Advisor = "Advisor"
|
|
8595
8681
|
}
|
|
8682
|
+
export declare enum SpvAipDataSecurityIdentifier {
|
|
8683
|
+
Isin = "Isin",
|
|
8684
|
+
Sedol = "Sedol",
|
|
8685
|
+
Cusip = "Cusip",
|
|
8686
|
+
Custom = "Custom"
|
|
8687
|
+
}
|
|
8688
|
+
export declare enum SpvAipDataUnitizedIndicator {
|
|
8689
|
+
Unitized = "Unitized",
|
|
8690
|
+
CapitalBalance = "CapitalBalance"
|
|
8691
|
+
}
|
|
8692
|
+
export declare enum SpvAipDataRegisteredIndicator {
|
|
8693
|
+
Registered = "Registered",
|
|
8694
|
+
Unregistered = "Unregistered"
|
|
8695
|
+
}
|
|
8696
|
+
export declare enum SpvAipDataAipSecurityType {
|
|
8697
|
+
HedgeFund = "HedgeFund",
|
|
8698
|
+
FundOfFunds = "FundOfFunds",
|
|
8699
|
+
PrivateEquityFund = "PrivateEquityFund",
|
|
8700
|
+
ManagedDebtFund = "ManagedDebtFund",
|
|
8701
|
+
PrivateDebtFund = "PrivateDebtFund",
|
|
8702
|
+
ManagedCurrencyFund = "ManagedCurrencyFund",
|
|
8703
|
+
CommodityPoolFund = "CommodityPoolFund",
|
|
8704
|
+
REIT = "REIT",
|
|
8705
|
+
ManagedFutureFund = "ManagedFutureFund",
|
|
8706
|
+
Other = "Other",
|
|
8707
|
+
BusinessDevelopmentCorporation = "BusinessDevelopmentCorporation",
|
|
8708
|
+
RegisteredHedgeFund = "RegisteredHedgeFund",
|
|
8709
|
+
OilAndGasPublic = "OilAndGasPublic",
|
|
8710
|
+
OilAndGasPrivate = "OilAndGasPrivate",
|
|
8711
|
+
EquipmentLeasingPublic = "EquipmentLeasingPublic",
|
|
8712
|
+
EquipmentLeasingPrivate = "EquipmentLeasingPrivate",
|
|
8713
|
+
FuturesPublic = "FuturesPublic",
|
|
8714
|
+
FuturesPrivate = "FuturesPrivate",
|
|
8715
|
+
NotesPublic = "NotesPublic",
|
|
8716
|
+
NotesPrivate = "NotesPrivate",
|
|
8717
|
+
RealEstatePublic = "RealEstatePublic",
|
|
8718
|
+
RealEstatePrivate = "RealEstatePrivate",
|
|
8719
|
+
ClosedEndManagementInvestmentCompany = "ClosedEndManagementInvestmentCompany"
|
|
8720
|
+
}
|
|
8721
|
+
export declare enum SpvAipDataOwnershipStructure {
|
|
8722
|
+
LimitedPartnership = "LimitedPartnership",
|
|
8723
|
+
USLimitedLiabilityCompany = "USLimitedLiabilityCompany",
|
|
8724
|
+
USSCorp = "USSCorp",
|
|
8725
|
+
USCCorp = "USCCorp",
|
|
8726
|
+
CaymanOrdinaryResidentCompany = "CaymanOrdinaryResidentCompany",
|
|
8727
|
+
CaymanExemptedCompany = "CaymanExemptedCompany",
|
|
8728
|
+
CaymanOrdinaryNonresidentCompany = "CaymanOrdinaryNonresidentCompany",
|
|
8729
|
+
CaymanLimitedDurationExemptedCompany = "CaymanLimitedDurationExemptedCompany",
|
|
8730
|
+
CaymanForeignCompany = "CaymanForeignCompany",
|
|
8731
|
+
CaymanTrust = "CaymanTrust",
|
|
8732
|
+
BVICompanyLimitedByGuaranteeNoShares = "BVICompanyLimitedByGuaranteeNoShares",
|
|
8733
|
+
BVICompanyLimitedByGuaranteeMayIssueShares = "BVICompanyLimitedByGuaranteeMayIssueShares",
|
|
8734
|
+
BVIUnlimitedCompanyNoShares = "BVIUnlimitedCompanyNoShares",
|
|
8735
|
+
BVIUnlimitedCompanyMayIssueShares = "BVIUnlimitedCompanyMayIssueShares",
|
|
8736
|
+
BermudaCompanyLimitedByShares = "BermudaCompanyLimitedByShares",
|
|
8737
|
+
BermudaCompanyLimitedByGuarantee = "BermudaCompanyLimitedByGuarantee",
|
|
8738
|
+
BermudaUnlimitedLiabilityCompany = "BermudaUnlimitedLiabilityCompany",
|
|
8739
|
+
LuxembourgPublicLimitedCompany = "LuxembourgPublicLimitedCompany",
|
|
8740
|
+
LuxembourgPrivateLimitedCompany = "LuxembourgPrivateLimitedCompany",
|
|
8741
|
+
LuxembourgPartnership = "LuxembourgPartnership",
|
|
8742
|
+
LuxembourgLimitedPartnership = "LuxembourgLimitedPartnership",
|
|
8743
|
+
LuxembourgCooperativeCompany = "LuxembourgCooperativeCompany",
|
|
8744
|
+
IrishPrivateLimitedCompany = "IrishPrivateLimitedCompany",
|
|
8745
|
+
IrishPublicLimitedCompany = "IrishPublicLimitedCompany",
|
|
8746
|
+
IrishCompanyLimitedByGuarantee = "IrishCompanyLimitedByGuarantee",
|
|
8747
|
+
JerseyLimitedLiabilityPartnerships = "JerseyLimitedLiabilityPartnerships",
|
|
8748
|
+
JerseyPublicCompany = "JerseyPublicCompany",
|
|
8749
|
+
JerseyPrivateCompany = "JerseyPrivateCompany",
|
|
8750
|
+
IsleOfManLimitedLiabilityCompany = "IsleOfManLimitedLiabilityCompany",
|
|
8751
|
+
IsleOfManTrust = "IsleOfManTrust",
|
|
8752
|
+
MauritiusDomesticCompany = "MauritiusDomesticCompany",
|
|
8753
|
+
MauritiusCompanyCategoryIGlobalBusinessLicense = "MauritiusCompanyCategoryIGlobalBusinessLicense",
|
|
8754
|
+
MauritiusCompanyCategoryIIGlobalBusinessLicense = "MauritiusCompanyCategoryIIGlobalBusinessLicense",
|
|
8755
|
+
MauritiusSocieteCommerciale = "MauritiusSocieteCommerciale",
|
|
8756
|
+
MauritiusSocieteEnNomCollectifEtEnCommandite = "MauritiusSocieteEnNomCollectifEtEnCommandite",
|
|
8757
|
+
MauritiusSocieteCivile = "MauritiusSocieteCivile",
|
|
8758
|
+
Other = "Other",
|
|
8759
|
+
DelawareBusinessTrust = "DelawareBusinessTrust",
|
|
8760
|
+
MassachusettsBusinessTrust = "MassachusettsBusinessTrust",
|
|
8761
|
+
MarylandRealEstateInvestmentTrust = "MarylandRealEstateInvestmentTrust",
|
|
8762
|
+
CaymanExemptLimitedPartnership = "CaymanExemptLimitedPartnership",
|
|
8763
|
+
BVICompanyLimitedByShares = "BVICompanyLimitedByShares",
|
|
8764
|
+
DelawareStatutoryTrust = "DelawareStatutoryTrust"
|
|
8765
|
+
}
|
|
8766
|
+
export declare enum SpvAipDataSeriesEligibilityIndicator {
|
|
8767
|
+
No = "No",
|
|
8768
|
+
Yes = "Yes",
|
|
8769
|
+
NotAvailable = "NotAvailable"
|
|
8770
|
+
}
|
|
8771
|
+
export declare enum SpvAipDataPurchaseOrderProcessIndicator {
|
|
8772
|
+
SettlementPostNavCalculation = "SettlementPostNavCalculation",
|
|
8773
|
+
SettlementPreNavCalculation = "SettlementPreNavCalculation",
|
|
8774
|
+
EscrowTrade = "EscrowTrade",
|
|
8775
|
+
CommitmentCallDrawdown = "CommitmentCallDrawdown"
|
|
8776
|
+
}
|
|
8777
|
+
export declare enum SpvAipDataLoadTypeIndicator {
|
|
8778
|
+
LevelLoad = "LevelLoad",
|
|
8779
|
+
BackEndLoad = "BackEndLoad",
|
|
8780
|
+
FrontEndLoad = "FrontEndLoad",
|
|
8781
|
+
FindersFee = "FindersFee",
|
|
8782
|
+
Other = "Other",
|
|
8783
|
+
Negotiated = "Negotiated",
|
|
8784
|
+
Hybrid = "Hybrid",
|
|
8785
|
+
NA = "NA",
|
|
8786
|
+
PlacementFee = "PlacementFee"
|
|
8787
|
+
}
|
|
8788
|
+
export declare enum SpvAipDataTransferFrequency {
|
|
8789
|
+
Daily = "Daily",
|
|
8790
|
+
Weekly = "Weekly",
|
|
8791
|
+
BiWeekly = "BiWeekly",
|
|
8792
|
+
Monthly = "Monthly",
|
|
8793
|
+
Quarterly = "Quarterly",
|
|
8794
|
+
BiAnnually = "BiAnnually",
|
|
8795
|
+
Annually = "Annually"
|
|
8796
|
+
}
|
|
8797
|
+
export declare enum SpvAipDataSecurityContactType {
|
|
8798
|
+
Administrator = "Administrator",
|
|
8799
|
+
MainFundOrderDesk = "MainFundOrderDesk",
|
|
8800
|
+
MarketingSales = "MarketingSales",
|
|
8801
|
+
FundManagementCompany = "FundManagementCompany",
|
|
8802
|
+
LocalFundOrderDesk = "LocalFundOrderDesk",
|
|
8803
|
+
Commission = "Commission",
|
|
8804
|
+
Exchange = "Exchange",
|
|
8805
|
+
Transfers = "Transfers",
|
|
8806
|
+
Settlement = "Settlement",
|
|
8807
|
+
Other = "Other",
|
|
8808
|
+
Auditor = "Auditor",
|
|
8809
|
+
PcoabAuditor = "PcoabAuditor"
|
|
8810
|
+
}
|
|
8811
|
+
export declare enum SpvAipDataValuationBasis {
|
|
8812
|
+
Actual = "Actual",
|
|
8813
|
+
Estimated = "Estimated"
|
|
8814
|
+
}
|
|
8815
|
+
export declare enum SpvAipDataValuationMethod {
|
|
8816
|
+
IndependentValuationFirm = "IndependentValuationFirm",
|
|
8817
|
+
ProgramManagerEstimateNav = "ProgramManagerEstimateNav",
|
|
8818
|
+
BookValue = "BookValue",
|
|
8819
|
+
RepurchasePrices = "RepurchasePrices",
|
|
8820
|
+
InformalSecondaryMarketPrices = "InformalSecondaryMarketPrices",
|
|
8821
|
+
NetInvestmentMethodology = "NetInvestmentMethodology",
|
|
8822
|
+
NotPriced = "NotPriced",
|
|
8823
|
+
CommissionBasedPop = "CommissionBasedPop",
|
|
8824
|
+
FeeBasedPop = "FeeBasedPop"
|
|
8825
|
+
}
|
|
8596
8826
|
export declare enum StructLayoutAttributeValue {
|
|
8597
8827
|
Sequential = "Sequential",
|
|
8598
8828
|
Explicit = "Explicit",
|
package/dist/Client.js
CHANGED
|
@@ -13796,6 +13796,66 @@ export class SignatureRequest {
|
|
|
13796
13796
|
return data;
|
|
13797
13797
|
}
|
|
13798
13798
|
}
|
|
13799
|
+
export class SpvAipData {
|
|
13800
|
+
constructor(data) {
|
|
13801
|
+
if (data) {
|
|
13802
|
+
for (var property in data) {
|
|
13803
|
+
if (data.hasOwnProperty(property))
|
|
13804
|
+
this[property] = data[property];
|
|
13805
|
+
}
|
|
13806
|
+
}
|
|
13807
|
+
}
|
|
13808
|
+
init(_data) {
|
|
13809
|
+
if (_data) {
|
|
13810
|
+
this.securityIdentifier = _data["securityIdentifier"];
|
|
13811
|
+
this.overridenSecurityIssueId = _data["overridenSecurityIssueId"];
|
|
13812
|
+
this.fundNumber = _data["fundNumber"];
|
|
13813
|
+
this.unitizedIndicator = _data["unitizedIndicator"];
|
|
13814
|
+
this.registeredIndicator = _data["registeredIndicator"];
|
|
13815
|
+
this.aipSecurityType = _data["aipSecurityType"];
|
|
13816
|
+
this.ownershipStructure = _data["ownershipStructure"];
|
|
13817
|
+
this.acceptedNoLienIndicator = _data["acceptedNoLienIndicator"];
|
|
13818
|
+
this.seriesEligibilityIndicator = _data["seriesEligibilityIndicator"];
|
|
13819
|
+
this.purchaseOrderProcessIndicator = _data["purchaseOrderProcessIndicator"];
|
|
13820
|
+
this.loadTypeIndicator = _data["loadTypeIndicator"];
|
|
13821
|
+
this.commissionPercentageHigh = _data["commissionPercentageHigh"];
|
|
13822
|
+
this.commissionPercentageLow = _data["commissionPercentageLow"];
|
|
13823
|
+
this.transferFrequency = _data["transferFrequency"];
|
|
13824
|
+
this.securityContactType = _data["securityContactType"];
|
|
13825
|
+
this.addressLine1 = _data["addressLine1"];
|
|
13826
|
+
this.valuationBasis = _data["valuationBasis"];
|
|
13827
|
+
this.valuationMethod = _data["valuationMethod"];
|
|
13828
|
+
}
|
|
13829
|
+
}
|
|
13830
|
+
static fromJS(data) {
|
|
13831
|
+
data = typeof data === 'object' ? data : {};
|
|
13832
|
+
let result = new SpvAipData();
|
|
13833
|
+
result.init(data);
|
|
13834
|
+
return result;
|
|
13835
|
+
}
|
|
13836
|
+
toJSON(data) {
|
|
13837
|
+
data = typeof data === 'object' ? data : {};
|
|
13838
|
+
data["securityIdentifier"] = this.securityIdentifier;
|
|
13839
|
+
data["overridenSecurityIssueId"] = this.overridenSecurityIssueId;
|
|
13840
|
+
data["fundNumber"] = this.fundNumber;
|
|
13841
|
+
data["unitizedIndicator"] = this.unitizedIndicator;
|
|
13842
|
+
data["registeredIndicator"] = this.registeredIndicator;
|
|
13843
|
+
data["aipSecurityType"] = this.aipSecurityType;
|
|
13844
|
+
data["ownershipStructure"] = this.ownershipStructure;
|
|
13845
|
+
data["acceptedNoLienIndicator"] = this.acceptedNoLienIndicator;
|
|
13846
|
+
data["seriesEligibilityIndicator"] = this.seriesEligibilityIndicator;
|
|
13847
|
+
data["purchaseOrderProcessIndicator"] = this.purchaseOrderProcessIndicator;
|
|
13848
|
+
data["loadTypeIndicator"] = this.loadTypeIndicator;
|
|
13849
|
+
data["commissionPercentageHigh"] = this.commissionPercentageHigh;
|
|
13850
|
+
data["commissionPercentageLow"] = this.commissionPercentageLow;
|
|
13851
|
+
data["transferFrequency"] = this.transferFrequency;
|
|
13852
|
+
data["securityContactType"] = this.securityContactType;
|
|
13853
|
+
data["addressLine1"] = this.addressLine1;
|
|
13854
|
+
data["valuationBasis"] = this.valuationBasis;
|
|
13855
|
+
data["valuationMethod"] = this.valuationMethod;
|
|
13856
|
+
return data;
|
|
13857
|
+
}
|
|
13858
|
+
}
|
|
13799
13859
|
export class StructLayoutAttribute {
|
|
13800
13860
|
constructor(data) {
|
|
13801
13861
|
if (data) {
|
|
@@ -16148,6 +16208,162 @@ export var RegisteredFundSubscriptionActionResponsibleParty;
|
|
|
16148
16208
|
RegisteredFundSubscriptionActionResponsibleParty["Investor"] = "Investor";
|
|
16149
16209
|
RegisteredFundSubscriptionActionResponsibleParty["Advisor"] = "Advisor";
|
|
16150
16210
|
})(RegisteredFundSubscriptionActionResponsibleParty || (RegisteredFundSubscriptionActionResponsibleParty = {}));
|
|
16211
|
+
export var SpvAipDataSecurityIdentifier;
|
|
16212
|
+
(function (SpvAipDataSecurityIdentifier) {
|
|
16213
|
+
SpvAipDataSecurityIdentifier["Isin"] = "Isin";
|
|
16214
|
+
SpvAipDataSecurityIdentifier["Sedol"] = "Sedol";
|
|
16215
|
+
SpvAipDataSecurityIdentifier["Cusip"] = "Cusip";
|
|
16216
|
+
SpvAipDataSecurityIdentifier["Custom"] = "Custom";
|
|
16217
|
+
})(SpvAipDataSecurityIdentifier || (SpvAipDataSecurityIdentifier = {}));
|
|
16218
|
+
export var SpvAipDataUnitizedIndicator;
|
|
16219
|
+
(function (SpvAipDataUnitizedIndicator) {
|
|
16220
|
+
SpvAipDataUnitizedIndicator["Unitized"] = "Unitized";
|
|
16221
|
+
SpvAipDataUnitizedIndicator["CapitalBalance"] = "CapitalBalance";
|
|
16222
|
+
})(SpvAipDataUnitizedIndicator || (SpvAipDataUnitizedIndicator = {}));
|
|
16223
|
+
export var SpvAipDataRegisteredIndicator;
|
|
16224
|
+
(function (SpvAipDataRegisteredIndicator) {
|
|
16225
|
+
SpvAipDataRegisteredIndicator["Registered"] = "Registered";
|
|
16226
|
+
SpvAipDataRegisteredIndicator["Unregistered"] = "Unregistered";
|
|
16227
|
+
})(SpvAipDataRegisteredIndicator || (SpvAipDataRegisteredIndicator = {}));
|
|
16228
|
+
export var SpvAipDataAipSecurityType;
|
|
16229
|
+
(function (SpvAipDataAipSecurityType) {
|
|
16230
|
+
SpvAipDataAipSecurityType["HedgeFund"] = "HedgeFund";
|
|
16231
|
+
SpvAipDataAipSecurityType["FundOfFunds"] = "FundOfFunds";
|
|
16232
|
+
SpvAipDataAipSecurityType["PrivateEquityFund"] = "PrivateEquityFund";
|
|
16233
|
+
SpvAipDataAipSecurityType["ManagedDebtFund"] = "ManagedDebtFund";
|
|
16234
|
+
SpvAipDataAipSecurityType["PrivateDebtFund"] = "PrivateDebtFund";
|
|
16235
|
+
SpvAipDataAipSecurityType["ManagedCurrencyFund"] = "ManagedCurrencyFund";
|
|
16236
|
+
SpvAipDataAipSecurityType["CommodityPoolFund"] = "CommodityPoolFund";
|
|
16237
|
+
SpvAipDataAipSecurityType["REIT"] = "REIT";
|
|
16238
|
+
SpvAipDataAipSecurityType["ManagedFutureFund"] = "ManagedFutureFund";
|
|
16239
|
+
SpvAipDataAipSecurityType["Other"] = "Other";
|
|
16240
|
+
SpvAipDataAipSecurityType["BusinessDevelopmentCorporation"] = "BusinessDevelopmentCorporation";
|
|
16241
|
+
SpvAipDataAipSecurityType["RegisteredHedgeFund"] = "RegisteredHedgeFund";
|
|
16242
|
+
SpvAipDataAipSecurityType["OilAndGasPublic"] = "OilAndGasPublic";
|
|
16243
|
+
SpvAipDataAipSecurityType["OilAndGasPrivate"] = "OilAndGasPrivate";
|
|
16244
|
+
SpvAipDataAipSecurityType["EquipmentLeasingPublic"] = "EquipmentLeasingPublic";
|
|
16245
|
+
SpvAipDataAipSecurityType["EquipmentLeasingPrivate"] = "EquipmentLeasingPrivate";
|
|
16246
|
+
SpvAipDataAipSecurityType["FuturesPublic"] = "FuturesPublic";
|
|
16247
|
+
SpvAipDataAipSecurityType["FuturesPrivate"] = "FuturesPrivate";
|
|
16248
|
+
SpvAipDataAipSecurityType["NotesPublic"] = "NotesPublic";
|
|
16249
|
+
SpvAipDataAipSecurityType["NotesPrivate"] = "NotesPrivate";
|
|
16250
|
+
SpvAipDataAipSecurityType["RealEstatePublic"] = "RealEstatePublic";
|
|
16251
|
+
SpvAipDataAipSecurityType["RealEstatePrivate"] = "RealEstatePrivate";
|
|
16252
|
+
SpvAipDataAipSecurityType["ClosedEndManagementInvestmentCompany"] = "ClosedEndManagementInvestmentCompany";
|
|
16253
|
+
})(SpvAipDataAipSecurityType || (SpvAipDataAipSecurityType = {}));
|
|
16254
|
+
export var SpvAipDataOwnershipStructure;
|
|
16255
|
+
(function (SpvAipDataOwnershipStructure) {
|
|
16256
|
+
SpvAipDataOwnershipStructure["LimitedPartnership"] = "LimitedPartnership";
|
|
16257
|
+
SpvAipDataOwnershipStructure["USLimitedLiabilityCompany"] = "USLimitedLiabilityCompany";
|
|
16258
|
+
SpvAipDataOwnershipStructure["USSCorp"] = "USSCorp";
|
|
16259
|
+
SpvAipDataOwnershipStructure["USCCorp"] = "USCCorp";
|
|
16260
|
+
SpvAipDataOwnershipStructure["CaymanOrdinaryResidentCompany"] = "CaymanOrdinaryResidentCompany";
|
|
16261
|
+
SpvAipDataOwnershipStructure["CaymanExemptedCompany"] = "CaymanExemptedCompany";
|
|
16262
|
+
SpvAipDataOwnershipStructure["CaymanOrdinaryNonresidentCompany"] = "CaymanOrdinaryNonresidentCompany";
|
|
16263
|
+
SpvAipDataOwnershipStructure["CaymanLimitedDurationExemptedCompany"] = "CaymanLimitedDurationExemptedCompany";
|
|
16264
|
+
SpvAipDataOwnershipStructure["CaymanForeignCompany"] = "CaymanForeignCompany";
|
|
16265
|
+
SpvAipDataOwnershipStructure["CaymanTrust"] = "CaymanTrust";
|
|
16266
|
+
SpvAipDataOwnershipStructure["BVICompanyLimitedByGuaranteeNoShares"] = "BVICompanyLimitedByGuaranteeNoShares";
|
|
16267
|
+
SpvAipDataOwnershipStructure["BVICompanyLimitedByGuaranteeMayIssueShares"] = "BVICompanyLimitedByGuaranteeMayIssueShares";
|
|
16268
|
+
SpvAipDataOwnershipStructure["BVIUnlimitedCompanyNoShares"] = "BVIUnlimitedCompanyNoShares";
|
|
16269
|
+
SpvAipDataOwnershipStructure["BVIUnlimitedCompanyMayIssueShares"] = "BVIUnlimitedCompanyMayIssueShares";
|
|
16270
|
+
SpvAipDataOwnershipStructure["BermudaCompanyLimitedByShares"] = "BermudaCompanyLimitedByShares";
|
|
16271
|
+
SpvAipDataOwnershipStructure["BermudaCompanyLimitedByGuarantee"] = "BermudaCompanyLimitedByGuarantee";
|
|
16272
|
+
SpvAipDataOwnershipStructure["BermudaUnlimitedLiabilityCompany"] = "BermudaUnlimitedLiabilityCompany";
|
|
16273
|
+
SpvAipDataOwnershipStructure["LuxembourgPublicLimitedCompany"] = "LuxembourgPublicLimitedCompany";
|
|
16274
|
+
SpvAipDataOwnershipStructure["LuxembourgPrivateLimitedCompany"] = "LuxembourgPrivateLimitedCompany";
|
|
16275
|
+
SpvAipDataOwnershipStructure["LuxembourgPartnership"] = "LuxembourgPartnership";
|
|
16276
|
+
SpvAipDataOwnershipStructure["LuxembourgLimitedPartnership"] = "LuxembourgLimitedPartnership";
|
|
16277
|
+
SpvAipDataOwnershipStructure["LuxembourgCooperativeCompany"] = "LuxembourgCooperativeCompany";
|
|
16278
|
+
SpvAipDataOwnershipStructure["IrishPrivateLimitedCompany"] = "IrishPrivateLimitedCompany";
|
|
16279
|
+
SpvAipDataOwnershipStructure["IrishPublicLimitedCompany"] = "IrishPublicLimitedCompany";
|
|
16280
|
+
SpvAipDataOwnershipStructure["IrishCompanyLimitedByGuarantee"] = "IrishCompanyLimitedByGuarantee";
|
|
16281
|
+
SpvAipDataOwnershipStructure["JerseyLimitedLiabilityPartnerships"] = "JerseyLimitedLiabilityPartnerships";
|
|
16282
|
+
SpvAipDataOwnershipStructure["JerseyPublicCompany"] = "JerseyPublicCompany";
|
|
16283
|
+
SpvAipDataOwnershipStructure["JerseyPrivateCompany"] = "JerseyPrivateCompany";
|
|
16284
|
+
SpvAipDataOwnershipStructure["IsleOfManLimitedLiabilityCompany"] = "IsleOfManLimitedLiabilityCompany";
|
|
16285
|
+
SpvAipDataOwnershipStructure["IsleOfManTrust"] = "IsleOfManTrust";
|
|
16286
|
+
SpvAipDataOwnershipStructure["MauritiusDomesticCompany"] = "MauritiusDomesticCompany";
|
|
16287
|
+
SpvAipDataOwnershipStructure["MauritiusCompanyCategoryIGlobalBusinessLicense"] = "MauritiusCompanyCategoryIGlobalBusinessLicense";
|
|
16288
|
+
SpvAipDataOwnershipStructure["MauritiusCompanyCategoryIIGlobalBusinessLicense"] = "MauritiusCompanyCategoryIIGlobalBusinessLicense";
|
|
16289
|
+
SpvAipDataOwnershipStructure["MauritiusSocieteCommerciale"] = "MauritiusSocieteCommerciale";
|
|
16290
|
+
SpvAipDataOwnershipStructure["MauritiusSocieteEnNomCollectifEtEnCommandite"] = "MauritiusSocieteEnNomCollectifEtEnCommandite";
|
|
16291
|
+
SpvAipDataOwnershipStructure["MauritiusSocieteCivile"] = "MauritiusSocieteCivile";
|
|
16292
|
+
SpvAipDataOwnershipStructure["Other"] = "Other";
|
|
16293
|
+
SpvAipDataOwnershipStructure["DelawareBusinessTrust"] = "DelawareBusinessTrust";
|
|
16294
|
+
SpvAipDataOwnershipStructure["MassachusettsBusinessTrust"] = "MassachusettsBusinessTrust";
|
|
16295
|
+
SpvAipDataOwnershipStructure["MarylandRealEstateInvestmentTrust"] = "MarylandRealEstateInvestmentTrust";
|
|
16296
|
+
SpvAipDataOwnershipStructure["CaymanExemptLimitedPartnership"] = "CaymanExemptLimitedPartnership";
|
|
16297
|
+
SpvAipDataOwnershipStructure["BVICompanyLimitedByShares"] = "BVICompanyLimitedByShares";
|
|
16298
|
+
SpvAipDataOwnershipStructure["DelawareStatutoryTrust"] = "DelawareStatutoryTrust";
|
|
16299
|
+
})(SpvAipDataOwnershipStructure || (SpvAipDataOwnershipStructure = {}));
|
|
16300
|
+
export var SpvAipDataSeriesEligibilityIndicator;
|
|
16301
|
+
(function (SpvAipDataSeriesEligibilityIndicator) {
|
|
16302
|
+
SpvAipDataSeriesEligibilityIndicator["No"] = "No";
|
|
16303
|
+
SpvAipDataSeriesEligibilityIndicator["Yes"] = "Yes";
|
|
16304
|
+
SpvAipDataSeriesEligibilityIndicator["NotAvailable"] = "NotAvailable";
|
|
16305
|
+
})(SpvAipDataSeriesEligibilityIndicator || (SpvAipDataSeriesEligibilityIndicator = {}));
|
|
16306
|
+
export var SpvAipDataPurchaseOrderProcessIndicator;
|
|
16307
|
+
(function (SpvAipDataPurchaseOrderProcessIndicator) {
|
|
16308
|
+
SpvAipDataPurchaseOrderProcessIndicator["SettlementPostNavCalculation"] = "SettlementPostNavCalculation";
|
|
16309
|
+
SpvAipDataPurchaseOrderProcessIndicator["SettlementPreNavCalculation"] = "SettlementPreNavCalculation";
|
|
16310
|
+
SpvAipDataPurchaseOrderProcessIndicator["EscrowTrade"] = "EscrowTrade";
|
|
16311
|
+
SpvAipDataPurchaseOrderProcessIndicator["CommitmentCallDrawdown"] = "CommitmentCallDrawdown";
|
|
16312
|
+
})(SpvAipDataPurchaseOrderProcessIndicator || (SpvAipDataPurchaseOrderProcessIndicator = {}));
|
|
16313
|
+
export var SpvAipDataLoadTypeIndicator;
|
|
16314
|
+
(function (SpvAipDataLoadTypeIndicator) {
|
|
16315
|
+
SpvAipDataLoadTypeIndicator["LevelLoad"] = "LevelLoad";
|
|
16316
|
+
SpvAipDataLoadTypeIndicator["BackEndLoad"] = "BackEndLoad";
|
|
16317
|
+
SpvAipDataLoadTypeIndicator["FrontEndLoad"] = "FrontEndLoad";
|
|
16318
|
+
SpvAipDataLoadTypeIndicator["FindersFee"] = "FindersFee";
|
|
16319
|
+
SpvAipDataLoadTypeIndicator["Other"] = "Other";
|
|
16320
|
+
SpvAipDataLoadTypeIndicator["Negotiated"] = "Negotiated";
|
|
16321
|
+
SpvAipDataLoadTypeIndicator["Hybrid"] = "Hybrid";
|
|
16322
|
+
SpvAipDataLoadTypeIndicator["NA"] = "NA";
|
|
16323
|
+
SpvAipDataLoadTypeIndicator["PlacementFee"] = "PlacementFee";
|
|
16324
|
+
})(SpvAipDataLoadTypeIndicator || (SpvAipDataLoadTypeIndicator = {}));
|
|
16325
|
+
export var SpvAipDataTransferFrequency;
|
|
16326
|
+
(function (SpvAipDataTransferFrequency) {
|
|
16327
|
+
SpvAipDataTransferFrequency["Daily"] = "Daily";
|
|
16328
|
+
SpvAipDataTransferFrequency["Weekly"] = "Weekly";
|
|
16329
|
+
SpvAipDataTransferFrequency["BiWeekly"] = "BiWeekly";
|
|
16330
|
+
SpvAipDataTransferFrequency["Monthly"] = "Monthly";
|
|
16331
|
+
SpvAipDataTransferFrequency["Quarterly"] = "Quarterly";
|
|
16332
|
+
SpvAipDataTransferFrequency["BiAnnually"] = "BiAnnually";
|
|
16333
|
+
SpvAipDataTransferFrequency["Annually"] = "Annually";
|
|
16334
|
+
})(SpvAipDataTransferFrequency || (SpvAipDataTransferFrequency = {}));
|
|
16335
|
+
export var SpvAipDataSecurityContactType;
|
|
16336
|
+
(function (SpvAipDataSecurityContactType) {
|
|
16337
|
+
SpvAipDataSecurityContactType["Administrator"] = "Administrator";
|
|
16338
|
+
SpvAipDataSecurityContactType["MainFundOrderDesk"] = "MainFundOrderDesk";
|
|
16339
|
+
SpvAipDataSecurityContactType["MarketingSales"] = "MarketingSales";
|
|
16340
|
+
SpvAipDataSecurityContactType["FundManagementCompany"] = "FundManagementCompany";
|
|
16341
|
+
SpvAipDataSecurityContactType["LocalFundOrderDesk"] = "LocalFundOrderDesk";
|
|
16342
|
+
SpvAipDataSecurityContactType["Commission"] = "Commission";
|
|
16343
|
+
SpvAipDataSecurityContactType["Exchange"] = "Exchange";
|
|
16344
|
+
SpvAipDataSecurityContactType["Transfers"] = "Transfers";
|
|
16345
|
+
SpvAipDataSecurityContactType["Settlement"] = "Settlement";
|
|
16346
|
+
SpvAipDataSecurityContactType["Other"] = "Other";
|
|
16347
|
+
SpvAipDataSecurityContactType["Auditor"] = "Auditor";
|
|
16348
|
+
SpvAipDataSecurityContactType["PcoabAuditor"] = "PcoabAuditor";
|
|
16349
|
+
})(SpvAipDataSecurityContactType || (SpvAipDataSecurityContactType = {}));
|
|
16350
|
+
export var SpvAipDataValuationBasis;
|
|
16351
|
+
(function (SpvAipDataValuationBasis) {
|
|
16352
|
+
SpvAipDataValuationBasis["Actual"] = "Actual";
|
|
16353
|
+
SpvAipDataValuationBasis["Estimated"] = "Estimated";
|
|
16354
|
+
})(SpvAipDataValuationBasis || (SpvAipDataValuationBasis = {}));
|
|
16355
|
+
export var SpvAipDataValuationMethod;
|
|
16356
|
+
(function (SpvAipDataValuationMethod) {
|
|
16357
|
+
SpvAipDataValuationMethod["IndependentValuationFirm"] = "IndependentValuationFirm";
|
|
16358
|
+
SpvAipDataValuationMethod["ProgramManagerEstimateNav"] = "ProgramManagerEstimateNav";
|
|
16359
|
+
SpvAipDataValuationMethod["BookValue"] = "BookValue";
|
|
16360
|
+
SpvAipDataValuationMethod["RepurchasePrices"] = "RepurchasePrices";
|
|
16361
|
+
SpvAipDataValuationMethod["InformalSecondaryMarketPrices"] = "InformalSecondaryMarketPrices";
|
|
16362
|
+
SpvAipDataValuationMethod["NetInvestmentMethodology"] = "NetInvestmentMethodology";
|
|
16363
|
+
SpvAipDataValuationMethod["NotPriced"] = "NotPriced";
|
|
16364
|
+
SpvAipDataValuationMethod["CommissionBasedPop"] = "CommissionBasedPop";
|
|
16365
|
+
SpvAipDataValuationMethod["FeeBasedPop"] = "FeeBasedPop";
|
|
16366
|
+
})(SpvAipDataValuationMethod || (SpvAipDataValuationMethod = {}));
|
|
16151
16367
|
export var StructLayoutAttributeValue;
|
|
16152
16368
|
(function (StructLayoutAttributeValue) {
|
|
16153
16369
|
StructLayoutAttributeValue["Sequential"] = "Sequential";
|