@kamino-finance/kamino-db 8.0.20 → 8.0.21

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,9 +1,9 @@
1
1
  export type OwnerNetValueEntity = {
2
2
  id: bigint;
3
- klend_usd: string | null;
4
- strategies_usd: string | null;
5
- kvaults_usd: string | null;
6
- staking_usd: string | null;
3
+ klend_usd: string;
4
+ strategies_usd: string;
5
+ kvaults_usd: string;
6
+ staking_usd: string;
7
7
  owner_id: number;
8
8
  created_on: Date;
9
9
  };
@@ -1 +1 @@
1
- {"version":3,"file":"OwnerNetValueEntity.js","sourceRoot":"","sources":["../../src/models/OwnerNetValueEntity.ts"],"names":[],"mappings":"","sourcesContent":["export type OwnerNetValueEntity = {\n id: bigint;\n klend_usd: string | null;\n strategies_usd: string | null;\n kvaults_usd: string | null;\n staking_usd: string | null;\n owner_id: number;\n created_on: Date;\n};\nexport default OwnerNetValueEntity;\n\nexport type OwnerNetValueEntityHourEntity = OwnerNetValueEntity & { resampled_on: Date };\nexport type OwnerNetValueEntityDayEntity = OwnerNetValueEntity & { resampled_on: Date };\n"]}
1
+ {"version":3,"file":"OwnerNetValueEntity.js","sourceRoot":"","sources":["../../src/models/OwnerNetValueEntity.ts"],"names":[],"mappings":"","sourcesContent":["export type OwnerNetValueEntity = {\n id: bigint;\n klend_usd: string;\n strategies_usd: string;\n kvaults_usd: string;\n staking_usd: string;\n owner_id: number;\n created_on: Date;\n};\nexport default OwnerNetValueEntity;\n\nexport type OwnerNetValueEntityHourEntity = OwnerNetValueEntity & { resampled_on: Date };\nexport type OwnerNetValueEntityDayEntity = OwnerNetValueEntity & { resampled_on: Date };\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.20",
6
+ "version": "8.0.21",
7
7
  "scripts": {
8
8
  "prepublish": "yarn build",
9
9
  "build": "rm -rf dist/; tsc",
@@ -1,9 +1,9 @@
1
1
  export type OwnerNetValueEntity = {
2
2
  id: bigint;
3
- klend_usd: string | null;
4
- strategies_usd: string | null;
5
- kvaults_usd: string | null;
6
- staking_usd: string | null;
3
+ klend_usd: string;
4
+ strategies_usd: string;
5
+ kvaults_usd: string;
6
+ staking_usd: string;
7
7
  owner_id: number;
8
8
  created_on: Date;
9
9
  };