zavadil-ts-common 1.1.75 → 1.1.76

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
@@ -88,8 +88,8 @@ declare class LazyAsync<T> {
88
88
 
89
89
  type EntityBase = {
90
90
  id?: number | null;
91
- created_on?: Date;
92
- last_update_on?: Date;
91
+ createdOn?: Date;
92
+ lastUpdateOn?: Date;
93
93
  };
94
94
 
95
95
  type RestClientHeaders = {};
@@ -1,7 +1,7 @@
1
1
  export type EntityBase = {
2
2
  id?: number | null;
3
- created_on?: Date;
4
- last_update_on?: Date;
3
+ createdOn?: Date;
4
+ lastUpdateOn?: 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.75",
3
+ "version": "1.1.76",
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
- created_on?: Date;
4
- last_update_on?: Date;
3
+ createdOn?: Date;
4
+ lastUpdateOn?: Date;
5
5
  }
6
6
 
7
7
  export type EntityWithName = EntityBase & {