@vaultsfyi/sdk 2.1.18 → 2.1.19
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/CHANGELOG.md +6 -0
- package/dist/client.d.mts +49 -6
- package/dist/client.d.ts +49 -6
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
package/dist/client.d.mts
CHANGED
|
@@ -5987,7 +5987,7 @@ interface paths {
|
|
|
5987
5987
|
type: 'deposit' | 'redeem';
|
|
5988
5988
|
/** @enum {string} */
|
|
5989
5989
|
status: 'pending' | 'ready';
|
|
5990
|
-
assetAmount
|
|
5990
|
+
assetAmount?: string;
|
|
5991
5991
|
lpTokenAmount?: string;
|
|
5992
5992
|
timestamp?: number;
|
|
5993
5993
|
deadline?: number;
|
|
@@ -6023,7 +6023,7 @@ interface paths {
|
|
|
6023
6023
|
type: 'deposit' | 'redeem';
|
|
6024
6024
|
/** @enum {string} */
|
|
6025
6025
|
status: 'pending' | 'ready';
|
|
6026
|
-
assetAmount
|
|
6026
|
+
assetAmount?: string;
|
|
6027
6027
|
lpTokenAmount?: string;
|
|
6028
6028
|
timestamp?: number;
|
|
6029
6029
|
deadline?: number;
|
|
@@ -6055,7 +6055,7 @@ interface paths {
|
|
|
6055
6055
|
type: 'deposit' | 'redeem';
|
|
6056
6056
|
/** @enum {string} */
|
|
6057
6057
|
status: 'pending' | 'ready';
|
|
6058
|
-
assetAmount
|
|
6058
|
+
assetAmount?: string;
|
|
6059
6059
|
lpTokenAmount?: string;
|
|
6060
6060
|
timestamp?: number;
|
|
6061
6061
|
deadline?: number;
|
|
@@ -6068,6 +6068,29 @@ interface paths {
|
|
|
6068
6068
|
claimTimestamp: string;
|
|
6069
6069
|
}[];
|
|
6070
6070
|
} | Record<string, never>;
|
|
6071
|
+
/** @description Pending requests */
|
|
6072
|
+
pendingRequests?: {
|
|
6073
|
+
deposits: {
|
|
6074
|
+
/** @enum {string} */
|
|
6075
|
+
status: 'pending' | 'ready';
|
|
6076
|
+
assetAmount?: string;
|
|
6077
|
+
lpTokenAmount?: string;
|
|
6078
|
+
requestTimestamp?: number;
|
|
6079
|
+
estimatedResolution?: number;
|
|
6080
|
+
withdrawalStart?: number;
|
|
6081
|
+
withdrawalEnd?: number;
|
|
6082
|
+
}[];
|
|
6083
|
+
redeems: {
|
|
6084
|
+
/** @enum {string} */
|
|
6085
|
+
status: 'pending' | 'ready';
|
|
6086
|
+
assetAmount?: string;
|
|
6087
|
+
lpTokenAmount?: string;
|
|
6088
|
+
requestTimestamp?: number;
|
|
6089
|
+
estimatedResolution?: number;
|
|
6090
|
+
withdrawalStart?: number;
|
|
6091
|
+
withdrawalEnd?: number;
|
|
6092
|
+
}[];
|
|
6093
|
+
};
|
|
6071
6094
|
rewards?: {
|
|
6072
6095
|
claimable: {
|
|
6073
6096
|
/** @description Amount of the claimable reward */
|
|
@@ -10030,7 +10053,7 @@ declare class VaultsSdk {
|
|
|
10030
10053
|
id?: string;
|
|
10031
10054
|
type: "deposit" | "redeem";
|
|
10032
10055
|
status: "pending" | "ready";
|
|
10033
|
-
assetAmount
|
|
10056
|
+
assetAmount?: string;
|
|
10034
10057
|
lpTokenAmount?: string;
|
|
10035
10058
|
timestamp?: number;
|
|
10036
10059
|
deadline?: number;
|
|
@@ -10064,7 +10087,7 @@ declare class VaultsSdk {
|
|
|
10064
10087
|
id?: string;
|
|
10065
10088
|
type: "deposit" | "redeem";
|
|
10066
10089
|
status: "pending" | "ready";
|
|
10067
|
-
assetAmount
|
|
10090
|
+
assetAmount?: string;
|
|
10068
10091
|
lpTokenAmount?: string;
|
|
10069
10092
|
timestamp?: number;
|
|
10070
10093
|
deadline?: number;
|
|
@@ -10092,7 +10115,7 @@ declare class VaultsSdk {
|
|
|
10092
10115
|
id?: string;
|
|
10093
10116
|
type: "deposit" | "redeem";
|
|
10094
10117
|
status: "pending" | "ready";
|
|
10095
|
-
assetAmount
|
|
10118
|
+
assetAmount?: string;
|
|
10096
10119
|
lpTokenAmount?: string;
|
|
10097
10120
|
timestamp?: number;
|
|
10098
10121
|
deadline?: number;
|
|
@@ -10105,6 +10128,26 @@ declare class VaultsSdk {
|
|
|
10105
10128
|
claimTimestamp: string;
|
|
10106
10129
|
}[];
|
|
10107
10130
|
} | Record<string, never>;
|
|
10131
|
+
pendingRequests?: {
|
|
10132
|
+
deposits: {
|
|
10133
|
+
status: "pending" | "ready";
|
|
10134
|
+
assetAmount?: string;
|
|
10135
|
+
lpTokenAmount?: string;
|
|
10136
|
+
requestTimestamp?: number;
|
|
10137
|
+
estimatedResolution?: number;
|
|
10138
|
+
withdrawalStart?: number;
|
|
10139
|
+
withdrawalEnd?: number;
|
|
10140
|
+
}[];
|
|
10141
|
+
redeems: {
|
|
10142
|
+
status: "pending" | "ready";
|
|
10143
|
+
assetAmount?: string;
|
|
10144
|
+
lpTokenAmount?: string;
|
|
10145
|
+
requestTimestamp?: number;
|
|
10146
|
+
estimatedResolution?: number;
|
|
10147
|
+
withdrawalStart?: number;
|
|
10148
|
+
withdrawalEnd?: number;
|
|
10149
|
+
}[];
|
|
10150
|
+
};
|
|
10108
10151
|
rewards?: {
|
|
10109
10152
|
claimable: {
|
|
10110
10153
|
amount: string;
|
package/dist/client.d.ts
CHANGED
|
@@ -5987,7 +5987,7 @@ interface paths {
|
|
|
5987
5987
|
type: 'deposit' | 'redeem';
|
|
5988
5988
|
/** @enum {string} */
|
|
5989
5989
|
status: 'pending' | 'ready';
|
|
5990
|
-
assetAmount
|
|
5990
|
+
assetAmount?: string;
|
|
5991
5991
|
lpTokenAmount?: string;
|
|
5992
5992
|
timestamp?: number;
|
|
5993
5993
|
deadline?: number;
|
|
@@ -6023,7 +6023,7 @@ interface paths {
|
|
|
6023
6023
|
type: 'deposit' | 'redeem';
|
|
6024
6024
|
/** @enum {string} */
|
|
6025
6025
|
status: 'pending' | 'ready';
|
|
6026
|
-
assetAmount
|
|
6026
|
+
assetAmount?: string;
|
|
6027
6027
|
lpTokenAmount?: string;
|
|
6028
6028
|
timestamp?: number;
|
|
6029
6029
|
deadline?: number;
|
|
@@ -6055,7 +6055,7 @@ interface paths {
|
|
|
6055
6055
|
type: 'deposit' | 'redeem';
|
|
6056
6056
|
/** @enum {string} */
|
|
6057
6057
|
status: 'pending' | 'ready';
|
|
6058
|
-
assetAmount
|
|
6058
|
+
assetAmount?: string;
|
|
6059
6059
|
lpTokenAmount?: string;
|
|
6060
6060
|
timestamp?: number;
|
|
6061
6061
|
deadline?: number;
|
|
@@ -6068,6 +6068,29 @@ interface paths {
|
|
|
6068
6068
|
claimTimestamp: string;
|
|
6069
6069
|
}[];
|
|
6070
6070
|
} | Record<string, never>;
|
|
6071
|
+
/** @description Pending requests */
|
|
6072
|
+
pendingRequests?: {
|
|
6073
|
+
deposits: {
|
|
6074
|
+
/** @enum {string} */
|
|
6075
|
+
status: 'pending' | 'ready';
|
|
6076
|
+
assetAmount?: string;
|
|
6077
|
+
lpTokenAmount?: string;
|
|
6078
|
+
requestTimestamp?: number;
|
|
6079
|
+
estimatedResolution?: number;
|
|
6080
|
+
withdrawalStart?: number;
|
|
6081
|
+
withdrawalEnd?: number;
|
|
6082
|
+
}[];
|
|
6083
|
+
redeems: {
|
|
6084
|
+
/** @enum {string} */
|
|
6085
|
+
status: 'pending' | 'ready';
|
|
6086
|
+
assetAmount?: string;
|
|
6087
|
+
lpTokenAmount?: string;
|
|
6088
|
+
requestTimestamp?: number;
|
|
6089
|
+
estimatedResolution?: number;
|
|
6090
|
+
withdrawalStart?: number;
|
|
6091
|
+
withdrawalEnd?: number;
|
|
6092
|
+
}[];
|
|
6093
|
+
};
|
|
6071
6094
|
rewards?: {
|
|
6072
6095
|
claimable: {
|
|
6073
6096
|
/** @description Amount of the claimable reward */
|
|
@@ -10030,7 +10053,7 @@ declare class VaultsSdk {
|
|
|
10030
10053
|
id?: string;
|
|
10031
10054
|
type: "deposit" | "redeem";
|
|
10032
10055
|
status: "pending" | "ready";
|
|
10033
|
-
assetAmount
|
|
10056
|
+
assetAmount?: string;
|
|
10034
10057
|
lpTokenAmount?: string;
|
|
10035
10058
|
timestamp?: number;
|
|
10036
10059
|
deadline?: number;
|
|
@@ -10064,7 +10087,7 @@ declare class VaultsSdk {
|
|
|
10064
10087
|
id?: string;
|
|
10065
10088
|
type: "deposit" | "redeem";
|
|
10066
10089
|
status: "pending" | "ready";
|
|
10067
|
-
assetAmount
|
|
10090
|
+
assetAmount?: string;
|
|
10068
10091
|
lpTokenAmount?: string;
|
|
10069
10092
|
timestamp?: number;
|
|
10070
10093
|
deadline?: number;
|
|
@@ -10092,7 +10115,7 @@ declare class VaultsSdk {
|
|
|
10092
10115
|
id?: string;
|
|
10093
10116
|
type: "deposit" | "redeem";
|
|
10094
10117
|
status: "pending" | "ready";
|
|
10095
|
-
assetAmount
|
|
10118
|
+
assetAmount?: string;
|
|
10096
10119
|
lpTokenAmount?: string;
|
|
10097
10120
|
timestamp?: number;
|
|
10098
10121
|
deadline?: number;
|
|
@@ -10105,6 +10128,26 @@ declare class VaultsSdk {
|
|
|
10105
10128
|
claimTimestamp: string;
|
|
10106
10129
|
}[];
|
|
10107
10130
|
} | Record<string, never>;
|
|
10131
|
+
pendingRequests?: {
|
|
10132
|
+
deposits: {
|
|
10133
|
+
status: "pending" | "ready";
|
|
10134
|
+
assetAmount?: string;
|
|
10135
|
+
lpTokenAmount?: string;
|
|
10136
|
+
requestTimestamp?: number;
|
|
10137
|
+
estimatedResolution?: number;
|
|
10138
|
+
withdrawalStart?: number;
|
|
10139
|
+
withdrawalEnd?: number;
|
|
10140
|
+
}[];
|
|
10141
|
+
redeems: {
|
|
10142
|
+
status: "pending" | "ready";
|
|
10143
|
+
assetAmount?: string;
|
|
10144
|
+
lpTokenAmount?: string;
|
|
10145
|
+
requestTimestamp?: number;
|
|
10146
|
+
estimatedResolution?: number;
|
|
10147
|
+
withdrawalStart?: number;
|
|
10148
|
+
withdrawalEnd?: number;
|
|
10149
|
+
}[];
|
|
10150
|
+
};
|
|
10108
10151
|
rewards?: {
|
|
10109
10152
|
claimable: {
|
|
10110
10153
|
amount: string;
|