@vaultsfyi/sdk 2.1.8 → 2.1.9
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 +8 -0
- package/dist/client.d.ts +8 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/client.d.mts
CHANGED
|
@@ -1603,6 +1603,10 @@ interface paths {
|
|
|
1603
1603
|
tags?: string[];
|
|
1604
1604
|
/** @description Curators to be included. */
|
|
1605
1605
|
curators?: string[];
|
|
1606
|
+
/** @description Sort order, either asc or desc. Ascending is default. */
|
|
1607
|
+
sortOrder?: 'asc' | 'desc';
|
|
1608
|
+
/** @description Field to sort by */
|
|
1609
|
+
sortBy?: 'tvl' | 'apy1day' | 'apy7day' | 'apy30day';
|
|
1606
1610
|
};
|
|
1607
1611
|
header?: never;
|
|
1608
1612
|
path?: never;
|
|
@@ -3182,6 +3186,10 @@ interface paths {
|
|
|
3182
3186
|
tags?: string[];
|
|
3183
3187
|
/** @description Curators to be included. */
|
|
3184
3188
|
curators?: string[];
|
|
3189
|
+
/** @description Sort order, either asc or desc. Ascending is default. */
|
|
3190
|
+
sortOrder?: 'asc' | 'desc';
|
|
3191
|
+
/** @description Field to sort by */
|
|
3192
|
+
sortBy?: 'tvl' | 'apy1day' | 'apy7day' | 'apy30day';
|
|
3185
3193
|
/** @description Interval for APY data. Possible values: 1day, 7day, 30day */
|
|
3186
3194
|
apyInterval?: '1day' | '7day' | '30day';
|
|
3187
3195
|
/** @description Minimum USD value of the vault to be included */
|
package/dist/client.d.ts
CHANGED
|
@@ -1603,6 +1603,10 @@ interface paths {
|
|
|
1603
1603
|
tags?: string[];
|
|
1604
1604
|
/** @description Curators to be included. */
|
|
1605
1605
|
curators?: string[];
|
|
1606
|
+
/** @description Sort order, either asc or desc. Ascending is default. */
|
|
1607
|
+
sortOrder?: 'asc' | 'desc';
|
|
1608
|
+
/** @description Field to sort by */
|
|
1609
|
+
sortBy?: 'tvl' | 'apy1day' | 'apy7day' | 'apy30day';
|
|
1606
1610
|
};
|
|
1607
1611
|
header?: never;
|
|
1608
1612
|
path?: never;
|
|
@@ -3182,6 +3186,10 @@ interface paths {
|
|
|
3182
3186
|
tags?: string[];
|
|
3183
3187
|
/** @description Curators to be included. */
|
|
3184
3188
|
curators?: string[];
|
|
3189
|
+
/** @description Sort order, either asc or desc. Ascending is default. */
|
|
3190
|
+
sortOrder?: 'asc' | 'desc';
|
|
3191
|
+
/** @description Field to sort by */
|
|
3192
|
+
sortBy?: 'tvl' | 'apy1day' | 'apy7day' | 'apy30day';
|
|
3185
3193
|
/** @description Interval for APY data. Possible values: 1day, 7day, 30day */
|
|
3186
3194
|
apyInterval?: '1day' | '7day' | '30day';
|
|
3187
3195
|
/** @description Minimum USD value of the vault to be included */
|