@nightlylabs/dex-sdk 0.1.28 → 0.1.29
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 +16 -30
- package/dist/index.d.ts +16 -30
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -715,6 +715,14 @@ interface GetUserVaultDepositsRequest {
|
|
|
715
715
|
newerTimestampMs?: string;
|
|
716
716
|
paginationCursor?: PaginationCursor;
|
|
717
717
|
}
|
|
718
|
+
interface HistoricalVaultDeposit {
|
|
719
|
+
userId: string;
|
|
720
|
+
vaultId: string;
|
|
721
|
+
usdDepositAmount: string;
|
|
722
|
+
sharesReceived: string;
|
|
723
|
+
tokensReceived: string;
|
|
724
|
+
timestamp: string;
|
|
725
|
+
}
|
|
718
726
|
interface GetUserVaultDepositsResponse {
|
|
719
727
|
vaultDeposits: HistoricalVaultDeposit[];
|
|
720
728
|
paginationCursor?: PaginationCursor;
|
|
@@ -726,6 +734,14 @@ interface GetUserVaultWithdrawsRequest {
|
|
|
726
734
|
newerTimestampMs?: string;
|
|
727
735
|
paginationCursor?: PaginationCursor;
|
|
728
736
|
}
|
|
737
|
+
interface HistoricalVaultWithdraw {
|
|
738
|
+
userId: string;
|
|
739
|
+
vaultId: string;
|
|
740
|
+
usdWithdrawAmount: string;
|
|
741
|
+
burntShares: string;
|
|
742
|
+
burntTokens: string;
|
|
743
|
+
timestamp: string;
|
|
744
|
+
}
|
|
729
745
|
interface GetUserVaultWithdrawsResponse {
|
|
730
746
|
vaultWithdraws: HistoricalVaultWithdraw[];
|
|
731
747
|
paginationCursor?: PaginationCursor;
|
|
@@ -796,36 +812,6 @@ interface GetVaultWithdrawalsResponse {
|
|
|
796
812
|
vaultWithdrawals: HistoricalVaultWithdraw[];
|
|
797
813
|
paginationCursor?: PaginationCursor;
|
|
798
814
|
}
|
|
799
|
-
interface HistoricalVaultDeposit {
|
|
800
|
-
userId: string;
|
|
801
|
-
vaultId: string;
|
|
802
|
-
usdDepositAmount: string;
|
|
803
|
-
sharesReceived: string;
|
|
804
|
-
tokensReceived: string;
|
|
805
|
-
timestamp: string;
|
|
806
|
-
}
|
|
807
|
-
interface HistoricalVaultDeposit {
|
|
808
|
-
vaultId: string;
|
|
809
|
-
usdDepositAmount: string;
|
|
810
|
-
sharesReceived: string;
|
|
811
|
-
tokensReceived: string;
|
|
812
|
-
timestamp: string;
|
|
813
|
-
}
|
|
814
|
-
interface HistoricalVaultWithdraw {
|
|
815
|
-
userId: string;
|
|
816
|
-
vaultId: string;
|
|
817
|
-
usdWithdrawAmount: string;
|
|
818
|
-
sharesReceived: string;
|
|
819
|
-
tokensReceived: string;
|
|
820
|
-
timestamp: string;
|
|
821
|
-
}
|
|
822
|
-
interface HistoricalVaultWithdraw {
|
|
823
|
-
vaultId: string;
|
|
824
|
-
usdAmount: string;
|
|
825
|
-
burntShares: string;
|
|
826
|
-
burntTokens: string;
|
|
827
|
-
timestamp: string;
|
|
828
|
-
}
|
|
829
815
|
interface Lend {
|
|
830
816
|
userId: string;
|
|
831
817
|
tokenAddress: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -715,6 +715,14 @@ interface GetUserVaultDepositsRequest {
|
|
|
715
715
|
newerTimestampMs?: string;
|
|
716
716
|
paginationCursor?: PaginationCursor;
|
|
717
717
|
}
|
|
718
|
+
interface HistoricalVaultDeposit {
|
|
719
|
+
userId: string;
|
|
720
|
+
vaultId: string;
|
|
721
|
+
usdDepositAmount: string;
|
|
722
|
+
sharesReceived: string;
|
|
723
|
+
tokensReceived: string;
|
|
724
|
+
timestamp: string;
|
|
725
|
+
}
|
|
718
726
|
interface GetUserVaultDepositsResponse {
|
|
719
727
|
vaultDeposits: HistoricalVaultDeposit[];
|
|
720
728
|
paginationCursor?: PaginationCursor;
|
|
@@ -726,6 +734,14 @@ interface GetUserVaultWithdrawsRequest {
|
|
|
726
734
|
newerTimestampMs?: string;
|
|
727
735
|
paginationCursor?: PaginationCursor;
|
|
728
736
|
}
|
|
737
|
+
interface HistoricalVaultWithdraw {
|
|
738
|
+
userId: string;
|
|
739
|
+
vaultId: string;
|
|
740
|
+
usdWithdrawAmount: string;
|
|
741
|
+
burntShares: string;
|
|
742
|
+
burntTokens: string;
|
|
743
|
+
timestamp: string;
|
|
744
|
+
}
|
|
729
745
|
interface GetUserVaultWithdrawsResponse {
|
|
730
746
|
vaultWithdraws: HistoricalVaultWithdraw[];
|
|
731
747
|
paginationCursor?: PaginationCursor;
|
|
@@ -796,36 +812,6 @@ interface GetVaultWithdrawalsResponse {
|
|
|
796
812
|
vaultWithdrawals: HistoricalVaultWithdraw[];
|
|
797
813
|
paginationCursor?: PaginationCursor;
|
|
798
814
|
}
|
|
799
|
-
interface HistoricalVaultDeposit {
|
|
800
|
-
userId: string;
|
|
801
|
-
vaultId: string;
|
|
802
|
-
usdDepositAmount: string;
|
|
803
|
-
sharesReceived: string;
|
|
804
|
-
tokensReceived: string;
|
|
805
|
-
timestamp: string;
|
|
806
|
-
}
|
|
807
|
-
interface HistoricalVaultDeposit {
|
|
808
|
-
vaultId: string;
|
|
809
|
-
usdDepositAmount: string;
|
|
810
|
-
sharesReceived: string;
|
|
811
|
-
tokensReceived: string;
|
|
812
|
-
timestamp: string;
|
|
813
|
-
}
|
|
814
|
-
interface HistoricalVaultWithdraw {
|
|
815
|
-
userId: string;
|
|
816
|
-
vaultId: string;
|
|
817
|
-
usdWithdrawAmount: string;
|
|
818
|
-
sharesReceived: string;
|
|
819
|
-
tokensReceived: string;
|
|
820
|
-
timestamp: string;
|
|
821
|
-
}
|
|
822
|
-
interface HistoricalVaultWithdraw {
|
|
823
|
-
vaultId: string;
|
|
824
|
-
usdAmount: string;
|
|
825
|
-
burntShares: string;
|
|
826
|
-
burntTokens: string;
|
|
827
|
-
timestamp: string;
|
|
828
|
-
}
|
|
829
815
|
interface Lend {
|
|
830
816
|
userId: string;
|
|
831
817
|
tokenAddress: string;
|