@nightlylabs/dex-sdk 0.1.19 → 0.1.20
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/index.d.cts +7 -15
- package/dist/index.d.ts +7 -15
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -688,6 +688,13 @@ interface GetUserVaultDepositsRequest {
|
|
|
688
688
|
newerTimestampMs?: string;
|
|
689
689
|
paginationCursor?: PaginationCursor;
|
|
690
690
|
}
|
|
691
|
+
interface HistoricalVaultDeposit {
|
|
692
|
+
vaultId: string;
|
|
693
|
+
usdDepositAmount: string;
|
|
694
|
+
sharesReceived: string;
|
|
695
|
+
tokensReceived: string;
|
|
696
|
+
timestamp: string;
|
|
697
|
+
}
|
|
691
698
|
interface GetUserVaultDepositsResponse {
|
|
692
699
|
vaultDeposits: HistoricalVaultDeposit[];
|
|
693
700
|
paginationCursor?: PaginationCursor;
|
|
@@ -760,21 +767,6 @@ interface GetVaultHistoricalDataResponse {
|
|
|
760
767
|
data: VaultHistoricalData[];
|
|
761
768
|
paginationCursor?: PaginationCursor;
|
|
762
769
|
}
|
|
763
|
-
interface HistoricalVaultDeposit {
|
|
764
|
-
userId: string;
|
|
765
|
-
vaultId: string;
|
|
766
|
-
usdDepositAmount: string;
|
|
767
|
-
sharesReceived: string;
|
|
768
|
-
tokensReceived: string;
|
|
769
|
-
timestamp: string;
|
|
770
|
-
}
|
|
771
|
-
interface HistoricalVaultDeposit {
|
|
772
|
-
vaultId: string;
|
|
773
|
-
usdDepositAmount: string;
|
|
774
|
-
sharesReceived: string;
|
|
775
|
-
tokensReceived: string;
|
|
776
|
-
timestamp: string;
|
|
777
|
-
}
|
|
778
770
|
interface Lend {
|
|
779
771
|
userId: string;
|
|
780
772
|
tokenAddress: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -688,6 +688,13 @@ interface GetUserVaultDepositsRequest {
|
|
|
688
688
|
newerTimestampMs?: string;
|
|
689
689
|
paginationCursor?: PaginationCursor;
|
|
690
690
|
}
|
|
691
|
+
interface HistoricalVaultDeposit {
|
|
692
|
+
vaultId: string;
|
|
693
|
+
usdDepositAmount: string;
|
|
694
|
+
sharesReceived: string;
|
|
695
|
+
tokensReceived: string;
|
|
696
|
+
timestamp: string;
|
|
697
|
+
}
|
|
691
698
|
interface GetUserVaultDepositsResponse {
|
|
692
699
|
vaultDeposits: HistoricalVaultDeposit[];
|
|
693
700
|
paginationCursor?: PaginationCursor;
|
|
@@ -760,21 +767,6 @@ interface GetVaultHistoricalDataResponse {
|
|
|
760
767
|
data: VaultHistoricalData[];
|
|
761
768
|
paginationCursor?: PaginationCursor;
|
|
762
769
|
}
|
|
763
|
-
interface HistoricalVaultDeposit {
|
|
764
|
-
userId: string;
|
|
765
|
-
vaultId: string;
|
|
766
|
-
usdDepositAmount: string;
|
|
767
|
-
sharesReceived: string;
|
|
768
|
-
tokensReceived: string;
|
|
769
|
-
timestamp: string;
|
|
770
|
-
}
|
|
771
|
-
interface HistoricalVaultDeposit {
|
|
772
|
-
vaultId: string;
|
|
773
|
-
usdDepositAmount: string;
|
|
774
|
-
sharesReceived: string;
|
|
775
|
-
tokensReceived: string;
|
|
776
|
-
timestamp: string;
|
|
777
|
-
}
|
|
778
770
|
interface Lend {
|
|
779
771
|
userId: string;
|
|
780
772
|
tokenAddress: string;
|