@0xsquid/squid-types 0.1.171 → 0.1.172

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.
@@ -10,7 +10,7 @@ export interface PathInternal {
10
10
  toChain: string;
11
11
  toToken: string;
12
12
  actions: PathActionInternal[];
13
- graph?: boolean;
13
+ graph?: string;
14
14
  }
15
15
  export interface Path {
16
16
  fromChain: ChainData;
@@ -18,7 +18,7 @@ export interface Path {
18
18
  toChain: ChainData;
19
19
  toToken: Token;
20
20
  actions: PathAction[];
21
- graph?: boolean;
21
+ graph?: string;
22
22
  }
23
23
  export interface PathActionInternal {
24
24
  type: ActionType;
@@ -28,7 +28,7 @@ export interface PathActionInternal {
28
28
  fromToken: string;
29
29
  toToken: string;
30
30
  data: Record<string, any>;
31
- graph?: boolean;
31
+ graph?: string;
32
32
  }
33
33
  export interface Buckets {
34
34
  [key: number]: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0xsquid/squid-types",
3
- "version": "0.1.171",
3
+ "version": "0.1.172",
4
4
  "description": "JS and TS types relating to 0xsquid related projects.",
5
5
  "main": "dist/index.js",
6
6
  "types": "./dist/index.d.ts",