@gearbox-protocol/sdk 14.5.1 → 14.5.2

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.
@@ -1,6 +1,7 @@
1
1
  import type { Address } from "viem";
2
2
  import type { PartialRecord } from "../../sdk/index.js";
3
3
  export type TokenTypeStrategy = "eth" | "s" | "btc" | "stable" | "wbnb" | "wxtz" | "bfBTC" | "mon";
4
+ export type StrategyMarketType = "common" | "rwa";
4
5
  export interface StrategyConfigPayload {
5
6
  name: string;
6
7
  /**
@@ -24,6 +25,10 @@ export interface StrategyConfigPayload {
24
25
  * Strategy type. Used for filtering
25
26
  */
26
27
  strategyType: [TokenTypeStrategy];
28
+ /**
29
+ * Strategy market type. Used for filtering
30
+ */
31
+ strategyMarketType?: [StrategyMarketType];
27
32
  /**
28
33
  * undefined - released;
29
34
  * number - one value for the current chain.
@@ -35,7 +40,7 @@ export interface StrategyConfigPayload {
35
40
  * undefined, false = no.
36
41
  */
37
42
  hideInProd?: boolean;
38
- /** An option to show strategies in main app only.
43
+ /** An option to show strategies in main app (app.gearbox.fi).
39
44
  * undefined, true = yes; false = no.
40
45
  */
41
46
  showInMainApp?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/sdk",
3
- "version": "14.5.1",
3
+ "version": "14.5.2",
4
4
  "description": "Gearbox SDK",
5
5
  "license": "MIT",
6
6
  "main": "./dist/cjs/sdk/index.js",