@punks/backend-entity-manager 0.0.78 → 0.0.79

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.
@@ -12,7 +12,7 @@ export interface FooEntity {
12
12
  id: string;
13
13
  name: string;
14
14
  age: number;
15
- updatedAt: Date;
15
+ updatedOn: Date;
16
16
  }
17
17
  export type FooEntityManager = IEntityManager<FooEntity, string, Partial<FooEntity>, Partial<FooEntity>, FooDeleteParameters, FooSearchParameters, FooSorting, FooCursor, FooFacets>;
18
18
  export declare class FooRepository extends InMemoryRepository<FooEntity> {
@@ -45,7 +45,7 @@ export interface FooDto {
45
45
  name: string;
46
46
  age: number;
47
47
  };
48
- updatedAt: Date;
48
+ updatedOn: Date;
49
49
  }
50
50
  export interface FooListItemDto {
51
51
  id: string;
@@ -8,7 +8,7 @@ export declare class FooEntity {
8
8
  id: string;
9
9
  name: string;
10
10
  age: number;
11
- updatedAt: Date;
11
+ updatedOn: Date;
12
12
  }
13
13
  export type FooEntityManager = IEntityManager<FooEntity, string, Partial<FooEntity>, Partial<FooEntity>, FooDeleteParameters, FooSearchParameters, FooSorting, FooCursor, FooFacets>;
14
14
  export declare class FooTypeOrmRepo extends TypeOrmRepository<FooEntity, string> {
@@ -52,7 +52,7 @@ export interface FooDto {
52
52
  name: string;
53
53
  age: number;
54
54
  };
55
- updatedAt: Date;
55
+ updatedOn: Date;
56
56
  }
57
57
  export interface FooListItemDto {
58
58
  id: string;
@@ -2,5 +2,5 @@ export declare class FooEntity {
2
2
  id: string;
3
3
  name: string;
4
4
  age: number;
5
- updatedAt: Date;
5
+ updatedOn: Date;
6
6
  }
@@ -6,7 +6,7 @@ export declare class FooProfile {
6
6
  export declare class FooDto {
7
7
  id: string;
8
8
  profile: FooProfile;
9
- updatedAt: Date;
9
+ updatedOn: Date;
10
10
  }
11
11
  export declare class FooListItemDto {
12
12
  id: string;
@@ -12,7 +12,7 @@ export interface FooEntity {
12
12
  id: string;
13
13
  name: string;
14
14
  age: number;
15
- updatedAt: Date;
15
+ updatedOn: Date;
16
16
  }
17
17
  export type FooEntityManager = IEntityManager<FooEntity, string, Partial<FooEntity>, Partial<FooEntity>, FooDeleteParameters, FooSearchParameters, FooSorting, FooCursor, FooFacets>;
18
18
  export declare class FooRepository extends InMemoryRepository<FooEntity> {
@@ -45,7 +45,7 @@ export interface FooDto {
45
45
  name: string;
46
46
  age: number;
47
47
  };
48
- updatedAt: Date;
48
+ updatedOn: Date;
49
49
  }
50
50
  export interface FooListItemDto {
51
51
  id: string;
@@ -8,7 +8,7 @@ export declare class FooEntity {
8
8
  id: string;
9
9
  name: string;
10
10
  age: number;
11
- updatedAt: Date;
11
+ updatedOn: Date;
12
12
  }
13
13
  export type FooEntityManager = IEntityManager<FooEntity, string, Partial<FooEntity>, Partial<FooEntity>, FooDeleteParameters, FooSearchParameters, FooSorting, FooCursor, FooFacets>;
14
14
  export declare class FooTypeOrmRepo extends TypeOrmRepository<FooEntity, string> {
@@ -52,7 +52,7 @@ export interface FooDto {
52
52
  name: string;
53
53
  age: number;
54
54
  };
55
- updatedAt: Date;
55
+ updatedOn: Date;
56
56
  }
57
57
  export interface FooListItemDto {
58
58
  id: string;
@@ -2,5 +2,5 @@ export declare class FooEntity {
2
2
  id: string;
3
3
  name: string;
4
4
  age: number;
5
- updatedAt: Date;
5
+ updatedOn: Date;
6
6
  }
@@ -6,7 +6,7 @@ export declare class FooProfile {
6
6
  export declare class FooDto {
7
7
  id: string;
8
8
  profile: FooProfile;
9
- updatedAt: Date;
9
+ updatedOn: Date;
10
10
  }
11
11
  export declare class FooListItemDto {
12
12
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@punks/backend-entity-manager",
3
- "version": "0.0.78",
3
+ "version": "0.0.79",
4
4
  "description": "",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -11,7 +11,7 @@
11
11
  "dist"
12
12
  ],
13
13
  "engines": {
14
- "node": ">=16"
14
+ "node": ">=18"
15
15
  },
16
16
  "types": "dist/index.d.ts",
17
17
  "scripts": {