@housebookgroup/shared-types 1.0.2 → 1.0.3

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,7 +1,7 @@
1
1
  export interface ChangeLog {
2
2
  id: string;
3
3
  asset_id: string;
4
- specifications: Record<string, any>;
4
+ specifications: JSON;
5
5
  change_description: string;
6
6
  changed_by_user_id?: string;
7
7
  created_at: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@housebookgroup/shared-types",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "private": false,
@@ -1,7 +1,7 @@
1
1
  export interface ChangeLog {
2
2
  id: string;
3
3
  asset_id: string;
4
- specifications: Record<string, any>;
4
+ specifications: JSON;
5
5
  change_description: string;
6
6
  changed_by_user_id?: string;
7
7
  created_at: string;
@@ -31,7 +31,3 @@ export type Asset = {
31
31
  deleted: boolean;
32
32
  };
33
33
 
34
- // dont think theres a JSONB type on ts...
35
- // guess i didnt add it yet
36
- // bcs there are two versions of changelog? one is defined in a component file
37
- // send me the changelog type i can add it now