@naturalcycles/js-lib 14.205.1 → 14.205.2

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.
package/dist/types.d.ts CHANGED
@@ -47,6 +47,7 @@ export type BaseDBEntity = {
47
47
  updated?: UnixTimestampNumber;
48
48
  };
49
49
  export type Saved<T> = T & {
50
+ id: string;
50
51
  created: UnixTimestampNumber;
51
52
  updated: UnixTimestampNumber;
52
53
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/js-lib",
3
- "version": "14.205.1",
3
+ "version": "14.205.2",
4
4
  "scripts": {
5
5
  "prepare": "husky install",
6
6
  "build-prod": "build-prod-esm-cjs",
package/src/types.ts CHANGED
@@ -62,6 +62,7 @@ export type BaseDBEntity = {
62
62
  }
63
63
 
64
64
  export type Saved<T> = T & {
65
+ id: string
65
66
  created: UnixTimestampNumber
66
67
  updated: UnixTimestampNumber
67
68
  }