@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.
- package/dist/cjs/types/__test__/entity/foo.d.ts +2 -2
- package/dist/cjs/types/__test__/providers/typeorm/entity/foo.d.ts +2 -2
- package/dist/cjs/types/platforms/nest/__test__/server/database/core/entities/foo.entity.d.ts +1 -1
- package/dist/cjs/types/platforms/nest/__test__/server/entities/foo/dto.d.ts +1 -1
- package/dist/esm/types/__test__/entity/foo.d.ts +2 -2
- package/dist/esm/types/__test__/providers/typeorm/entity/foo.d.ts +2 -2
- package/dist/esm/types/platforms/nest/__test__/server/database/core/entities/foo.entity.d.ts +1 -1
- package/dist/esm/types/platforms/nest/__test__/server/entities/foo/dto.d.ts +1 -1
- package/package.json +2 -2
|
@@ -12,7 +12,7 @@ export interface FooEntity {
|
|
|
12
12
|
id: string;
|
|
13
13
|
name: string;
|
|
14
14
|
age: number;
|
|
15
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
55
|
+
updatedOn: Date;
|
|
56
56
|
}
|
|
57
57
|
export interface FooListItemDto {
|
|
58
58
|
id: string;
|
|
@@ -12,7 +12,7 @@ export interface FooEntity {
|
|
|
12
12
|
id: string;
|
|
13
13
|
name: string;
|
|
14
14
|
age: number;
|
|
15
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
55
|
+
updatedOn: Date;
|
|
56
56
|
}
|
|
57
57
|
export interface FooListItemDto {
|
|
58
58
|
id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@punks/backend-entity-manager",
|
|
3
|
-
"version": "0.0.
|
|
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": ">=
|
|
14
|
+
"node": ">=18"
|
|
15
15
|
},
|
|
16
16
|
"types": "dist/index.d.ts",
|
|
17
17
|
"scripts": {
|