zavadil-ts-common 1.2.43 → 1.2.44

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/index.d.ts CHANGED
@@ -65,7 +65,7 @@ type CacheStats = {
65
65
  type HashCacheStats = CacheStats & {};
66
66
 
67
67
  type EntityBase = {
68
- id?: number | null;
68
+ id: number | null;
69
69
  createdOn?: Date;
70
70
  lastUpdatedOn?: Date;
71
71
  };
@@ -1,5 +1,5 @@
1
1
  export type EntityBase = {
2
- id?: number | null;
2
+ id: number | null;
3
3
  createdOn?: Date;
4
4
  lastUpdatedOn?: Date;
5
5
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zavadil-ts-common",
3
- "version": "1.2.43",
3
+ "version": "1.2.44",
4
4
  "description": "Common types and components for Typescript UI apps.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -1,5 +1,5 @@
1
1
  export type EntityBase = {
2
- id?: number | null;
2
+ id: number | null;
3
3
  createdOn?: Date;
4
4
  lastUpdatedOn?: Date;
5
5
  }