@kamino-finance/kamino-db 8.0.28 → 8.0.29

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.
@@ -8,6 +8,7 @@ export interface KswapTokenEntity {
8
8
  market_cap_usd: string | null;
9
9
  volume_usd: string | null;
10
10
  verified: boolean;
11
+ priority: number;
11
12
  created_on: Date;
12
13
  updated_on: Date;
13
14
  }
@@ -1 +1 @@
1
- {"version":3,"file":"KswapTokenEntity.js","sourceRoot":"","sources":["../../../src/models/kswap/KswapTokenEntity.ts"],"names":[],"mappings":"","sourcesContent":["export interface KswapTokenEntity {\n id: string;\n mint: string;\n logo_url: string | null;\n name: string | null;\n symbol: string | null;\n decimals: number | null;\n market_cap_usd: string | null;\n volume_usd: string | null;\n verified: boolean;\n created_on: Date;\n updated_on: Date;\n}\n\nexport default KswapTokenEntity;\n"]}
1
+ {"version":3,"file":"KswapTokenEntity.js","sourceRoot":"","sources":["../../../src/models/kswap/KswapTokenEntity.ts"],"names":[],"mappings":"","sourcesContent":["export interface KswapTokenEntity {\n id: string;\n mint: string;\n logo_url: string | null;\n name: string | null;\n symbol: string | null;\n decimals: number | null;\n market_cap_usd: string | null;\n volume_usd: string | null;\n verified: boolean;\n priority: number;\n created_on: Date;\n updated_on: Date;\n}\n\nexport default KswapTokenEntity;\n"]}
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Kamino database models",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
- "version": "8.0.28",
6
+ "version": "8.0.29",
7
7
  "scripts": {
8
8
  "prepublish": "yarn build",
9
9
  "build": "rm -rf dist/; tsc",
@@ -8,6 +8,7 @@ export interface KswapTokenEntity {
8
8
  market_cap_usd: string | null;
9
9
  volume_usd: string | null;
10
10
  verified: boolean;
11
+ priority: number;
11
12
  created_on: Date;
12
13
  updated_on: Date;
13
14
  }