@kamino-finance/kamino-db 8.0.45 → 8.0.46

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.
@@ -6,5 +6,6 @@ export type ReplaySampleEntity = {
6
6
  owner_id: number;
7
7
  initial_state: any;
8
8
  tx: any;
9
+ tag_set: string[];
9
10
  };
10
11
  export default ReplaySampleEntity;
@@ -1 +1 @@
1
- {"version":3,"file":"ReplaySampleEntity.js","sourceRoot":"","sources":["../../src/models/ReplaySampleEntity.ts"],"names":[],"mappings":"","sourcesContent":["export type ReplaySampleEntity = {\n id: bigint;\n signature?: string;\n description: string;\n created_on: Date;\n owner_id: number;\n initial_state: any; // raw value stored as jsonb, type driven by hubble-public-api\n tx: any; // raw value stored as jsonb, type driven by hubble-public-api\n};\nexport default ReplaySampleEntity;\n"]}
1
+ {"version":3,"file":"ReplaySampleEntity.js","sourceRoot":"","sources":["../../src/models/ReplaySampleEntity.ts"],"names":[],"mappings":"","sourcesContent":["export type ReplaySampleEntity = {\n id: bigint;\n signature?: string;\n description: string;\n created_on: Date;\n owner_id: number;\n initial_state: any; // raw value stored as jsonb, type driven by hubble-public-api\n tx: any; // raw value stored as jsonb, type driven by hubble-public-api\n tag_set: string[];\n};\nexport default ReplaySampleEntity;\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.45",
6
+ "version": "8.0.46",
7
7
  "scripts": {
8
8
  "prepublish": "yarn build",
9
9
  "build": "rm -rf dist/; tsc",
@@ -6,5 +6,6 @@ export type ReplaySampleEntity = {
6
6
  owner_id: number;
7
7
  initial_state: any; // raw value stored as jsonb, type driven by hubble-public-api
8
8
  tx: any; // raw value stored as jsonb, type driven by hubble-public-api
9
+ tag_set: string[];
9
10
  };
10
11
  export default ReplaySampleEntity;