@centrifuge/sdk 0.0.0-alpha.50 → 0.0.0-alpha.51
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/Centrifuge.d.ts +2 -1
- package/dist/Centrifuge.d.ts.map +1 -1
- package/dist/Centrifuge.js +3 -3
- package/dist/Centrifuge.js.map +1 -1
- package/dist/entities/MerkleProofManager.d.ts +30 -0
- package/dist/entities/MerkleProofManager.d.ts.map +1 -0
- package/dist/entities/MerkleProofManager.js +140 -0
- package/dist/entities/MerkleProofManager.js.map +1 -0
- package/dist/entities/MerkleProofManager.test.d.ts +2 -0
- package/dist/entities/MerkleProofManager.test.d.ts.map +1 -0
- package/dist/entities/MerkleProofManager.test.js +27 -0
- package/dist/entities/MerkleProofManager.test.js.map +1 -0
- package/dist/entities/Pool.d.ts +2 -2
- package/dist/entities/Pool.d.ts.map +1 -1
- package/dist/entities/Pool.js +2 -2
- package/dist/entities/Pool.js.map +1 -1
- package/dist/entities/Reports/PoolReports.d.ts +8 -0
- package/dist/entities/Reports/PoolReports.d.ts.map +1 -0
- package/dist/entities/Reports/PoolReports.js +14 -0
- package/dist/entities/Reports/PoolReports.js.map +1 -0
- package/dist/entities/Reports/PoolSharePricesReport.d.ts +25 -0
- package/dist/entities/Reports/PoolSharePricesReport.d.ts.map +1 -0
- package/dist/entities/Reports/PoolSharePricesReport.js +64 -0
- package/dist/entities/Reports/PoolSharePricesReport.js.map +1 -0
- package/dist/entities/Reports/PoolSharePricesReport.test.d.ts +2 -0
- package/dist/entities/Reports/PoolSharePricesReport.test.d.ts.map +1 -0
- package/dist/entities/Reports/PoolSharePricesReport.test.js +35 -0
- package/dist/entities/Reports/PoolSharePricesReport.test.js.map +1 -0
- package/dist/entities/Reports/types.d.ts +9 -0
- package/dist/entities/Reports/types.d.ts.map +1 -0
- package/dist/entities/Reports/types.js +2 -0
- package/dist/entities/Reports/types.js.map +1 -0
- package/dist/entities/Reports/utils.d.ts +20 -0
- package/dist/entities/Reports/utils.d.ts.map +1 -0
- package/dist/entities/Reports/utils.js +47 -0
- package/dist/entities/Reports/utils.js.map +1 -0
- package/dist/index.d.ts +1 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/indexer.d.ts +4189 -0
- package/dist/types/indexer.d.ts.map +1 -0
- package/dist/types/indexer.js +56 -0
- package/dist/types/indexer.js.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
export var VaultKind;
|
|
2
|
+
(function (VaultKind) {
|
|
3
|
+
VaultKind["Async"] = "Async";
|
|
4
|
+
VaultKind["Sync"] = "Sync";
|
|
5
|
+
VaultKind["SyncDepositAsyncRedeem"] = "SyncDepositAsyncRedeem";
|
|
6
|
+
})(VaultKind || (VaultKind = {}));
|
|
7
|
+
export var VaultStatus;
|
|
8
|
+
(function (VaultStatus) {
|
|
9
|
+
VaultStatus["LinkInProgress"] = "LinkInProgress";
|
|
10
|
+
VaultStatus["UnlinkInProgress"] = "UnlinkInProgress";
|
|
11
|
+
VaultStatus["Linked"] = "Linked";
|
|
12
|
+
VaultStatus["Unlinked"] = "Unlinked";
|
|
13
|
+
})(VaultStatus || (VaultStatus = {}));
|
|
14
|
+
export var AssetRegistrationStatus;
|
|
15
|
+
(function (AssetRegistrationStatus) {
|
|
16
|
+
AssetRegistrationStatus["InProgress"] = "IN_PROGRESS";
|
|
17
|
+
AssetRegistrationStatus["Registered"] = "REGISTERED";
|
|
18
|
+
})(AssetRegistrationStatus || (AssetRegistrationStatus = {}));
|
|
19
|
+
export var InvestorTransactionType;
|
|
20
|
+
(function (InvestorTransactionType) {
|
|
21
|
+
InvestorTransactionType["DepositRequestUpdated"] = "DEPOSIT_REQUEST_UPDATED";
|
|
22
|
+
InvestorTransactionType["RedeemRequestUpdated"] = "REDEEM_REQUEST_UPDATED";
|
|
23
|
+
InvestorTransactionType["DepositRequestCancelled"] = "DEPOSIT_REQUEST_CANCELLED";
|
|
24
|
+
InvestorTransactionType["RedeemRequestCancelled"] = "REDEEM_REQUEST_CANCELLED";
|
|
25
|
+
InvestorTransactionType["DepositRequestExecuted"] = "DEPOSIT_REQUEST_EXECUTED";
|
|
26
|
+
InvestorTransactionType["RedeemRequestExecuted"] = "REDEEM_REQUEST_EXECUTED";
|
|
27
|
+
InvestorTransactionType["DepositClaimable"] = "DEPOSIT_CLAIMABLE";
|
|
28
|
+
InvestorTransactionType["RedeemClaimable"] = "REDEEM_CLAIMABLE";
|
|
29
|
+
InvestorTransactionType["DepositClaimed"] = "DEPOSIT_CLAIMED";
|
|
30
|
+
InvestorTransactionType["RedeemClaimed"] = "REDEEM_CLAIMED";
|
|
31
|
+
InvestorTransactionType["SyncDeposit"] = "SYNC_DEPOSIT";
|
|
32
|
+
InvestorTransactionType["SyncRedeem"] = "SYNC_REDEEM";
|
|
33
|
+
})(InvestorTransactionType || (InvestorTransactionType = {}));
|
|
34
|
+
export var HoldingAccountType;
|
|
35
|
+
(function (HoldingAccountType) {
|
|
36
|
+
HoldingAccountType["Asset"] = "Asset";
|
|
37
|
+
HoldingAccountType["Equity"] = "Equity";
|
|
38
|
+
HoldingAccountType["Loss"] = "Loss";
|
|
39
|
+
HoldingAccountType["Gain"] = "Gain";
|
|
40
|
+
HoldingAccountType["Expense"] = "Expense";
|
|
41
|
+
HoldingAccountType["Liability"] = "Liability";
|
|
42
|
+
})(HoldingAccountType || (HoldingAccountType = {}));
|
|
43
|
+
export var CrosschainPayloadStatus;
|
|
44
|
+
(function (CrosschainPayloadStatus) {
|
|
45
|
+
CrosschainPayloadStatus["Underpaid"] = "Underpaid";
|
|
46
|
+
CrosschainPayloadStatus["InProgress"] = "InProgress";
|
|
47
|
+
CrosschainPayloadStatus["Delivered"] = "Delivered";
|
|
48
|
+
CrosschainPayloadStatus["PartiallyFailed"] = "PartiallyFailed";
|
|
49
|
+
})(CrosschainPayloadStatus || (CrosschainPayloadStatus = {}));
|
|
50
|
+
export var CrosschainMessageStatus;
|
|
51
|
+
(function (CrosschainMessageStatus) {
|
|
52
|
+
CrosschainMessageStatus["AwaitingBatchDelivery"] = "AwaitingBatchDelivery";
|
|
53
|
+
CrosschainMessageStatus["Failed"] = "Failed";
|
|
54
|
+
CrosschainMessageStatus["Executed"] = "Executed";
|
|
55
|
+
})(CrosschainMessageStatus || (CrosschainMessageStatus = {}));
|
|
56
|
+
//# sourceMappingURL=indexer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"indexer.js","sourceRoot":"","sources":["../../src/types/indexer.ts"],"names":[],"mappings":"AAq0BA,MAAM,CAAN,IAAY,SAIX;AAJD,WAAY,SAAS;IACnB,4BAAe,CAAA;IACf,0BAAa,CAAA;IACb,8DAAiD,CAAA;AACnD,CAAC,EAJW,SAAS,KAAT,SAAS,QAIpB;AAED,MAAM,CAAN,IAAY,WAKX;AALD,WAAY,WAAW;IACrB,gDAAiC,CAAA;IACjC,oDAAqC,CAAA;IACrC,gCAAiB,CAAA;IACjB,oCAAqB,CAAA;AACvB,CAAC,EALW,WAAW,KAAX,WAAW,QAKtB;AA8CD,MAAM,CAAN,IAAY,uBAGX;AAHD,WAAY,uBAAuB;IACjC,qDAA0B,CAAA;IAC1B,oDAAyB,CAAA;AAC3B,CAAC,EAHW,uBAAuB,KAAvB,uBAAuB,QAGlC;AAoSD,MAAM,CAAN,IAAY,uBAaX;AAbD,WAAY,uBAAuB;IACjC,4EAAiD,CAAA;IACjD,0EAA+C,CAAA;IAC/C,gFAAqD,CAAA;IACrD,8EAAmD,CAAA;IACnD,8EAAmD,CAAA;IACnD,4EAAiD,CAAA;IACjD,iEAAsC,CAAA;IACtC,+DAAoC,CAAA;IACpC,6DAAkC,CAAA;IAClC,2DAAgC,CAAA;IAChC,uDAA4B,CAAA;IAC5B,qDAA0B,CAAA;AAC5B,CAAC,EAbW,uBAAuB,KAAvB,uBAAuB,QAalC;AA84ED,MAAM,CAAN,IAAY,kBAOX;AAPD,WAAY,kBAAkB;IAC5B,qCAAe,CAAA;IACf,uCAAiB,CAAA;IACjB,mCAAa,CAAA;IACb,mCAAa,CAAA;IACb,yCAAmB,CAAA;IACnB,6CAAuB,CAAA;AACzB,CAAC,EAPW,kBAAkB,KAAlB,kBAAkB,QAO7B;AAmGD,MAAM,CAAN,IAAY,uBAKX;AALD,WAAY,uBAAuB;IACjC,kDAAuB,CAAA;IACvB,oDAAyB,CAAA;IACzB,kDAAuB,CAAA;IACvB,8DAAmC,CAAA;AACrC,CAAC,EALW,uBAAuB,KAAvB,uBAAuB,QAKlC;AA8BD,MAAM,CAAN,IAAY,uBAIX;AAJD,WAAY,uBAAuB;IACjC,0EAA+C,CAAA;IAC/C,4CAAiB,CAAA;IACjB,gDAAqB,CAAA;AACvB,CAAC,EAJW,uBAAuB,KAAvB,uBAAuB,QAIlC"}
|