@jup-ag/lend 0.0.85 → 0.0.86

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.
@@ -4120,7 +4120,7 @@ declare const getLiquidations: (params: Omit<LiquidateParams, "debtAmount">) =>
4120
4120
  }[]>;
4121
4121
  declare const getAllLiquidations: (params: Omit<LiquidateParams, "debtAmount" | "vaultId">) => Promise<{
4122
4122
  vaultId: number;
4123
- liquidations: number[] | {
4123
+ liquidations: never[] | {
4124
4124
  amtOut: string;
4125
4125
  amtIn: string;
4126
4126
  topTick: string;
@@ -4120,7 +4120,7 @@ declare const getLiquidations: (params: Omit<LiquidateParams, "debtAmount">) =>
4120
4120
  }[]>;
4121
4121
  declare const getAllLiquidations: (params: Omit<LiquidateParams, "debtAmount" | "vaultId">) => Promise<{
4122
4122
  vaultId: number;
4123
- liquidations: number[] | {
4123
+ liquidations: never[] | {
4124
4124
  amtOut: string;
4125
4125
  amtIn: string;
4126
4126
  topTick: string;
@@ -2088,7 +2088,7 @@ const getAllLiquidations = async (params) => {
2088
2088
  Array.from({ length: totalVaults - 1 }, async (_, i) => ({
2089
2089
  vaultId: i + 1,
2090
2090
  liquidations: await getLiquidations({ ...params, vaultId: i + 1 }).catch(
2091
- () => [1]
2091
+ () => []
2092
2092
  )
2093
2093
  }))
2094
2094
  );
package/dist/index.mjs CHANGED
@@ -8,6 +8,6 @@ import './shared/lend.CioR9-te.mjs';
8
8
  import '@solana/spl-token';
9
9
  import 'bn.js';
10
10
 
11
- const version = "0.0.85";
11
+ const version = "0.0.86";
12
12
 
13
13
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jup-ag/lend",
3
- "version": "0.0.85",
3
+ "version": "0.0.86",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "type": "module",