zavadil-ts-common 1.1.77 → 1.1.78

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
@@ -58,7 +58,7 @@ type HashCacheStats = CacheStats & {};
58
58
  type EntityBase = {
59
59
  id?: number | null;
60
60
  createdOn?: Date;
61
- lastUpdateOn?: Date;
61
+ lastUpdatedOn?: Date;
62
62
  };
63
63
  type EntityWithName = EntityBase & {
64
64
  name: string;
@@ -1,7 +1,7 @@
1
1
  export type EntityBase = {
2
2
  id?: number | null;
3
3
  createdOn?: Date;
4
- lastUpdateOn?: Date;
4
+ lastUpdatedOn?: Date;
5
5
  };
6
6
  export type EntityWithName = EntityBase & {
7
7
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zavadil-ts-common",
3
- "version": "1.1.77",
3
+ "version": "1.1.78",
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,7 +1,7 @@
1
1
  export type EntityBase = {
2
2
  id?: number | null;
3
3
  createdOn?: Date;
4
- lastUpdateOn?: Date;
4
+ lastUpdatedOn?: Date;
5
5
  }
6
6
 
7
7
  export type EntityWithName = EntityBase & {