@onivoro/server-typeorm-postgres 0.1.31 → 0.1.32
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.
|
@@ -15,7 +15,7 @@ export declare class TypeOrmRepository<TEntity> implements IEntityProvider<TEnti
|
|
|
15
15
|
softDelete(options: FindOptionsWhere<TEntity>): Promise<void>;
|
|
16
16
|
put(options: FindOptionsWhere<TEntity>, body: QueryDeepPartialEntity<TEntity>): Promise<void>;
|
|
17
17
|
patch(options: FindOptionsWhere<TEntity>, body: QueryDeepPartialEntity<TEntity>): Promise<void>;
|
|
18
|
-
|
|
18
|
+
get repo(): import("typeorm").Repository<import("typeorm").ObjectLiteral>;
|
|
19
19
|
protected insertAndReturn(entityToInsert: TEntity): Promise<TEntity>;
|
|
20
20
|
protected insertAndReturnMany(entitiesToInsert: TEntity[]): Promise<TEntity[]>;
|
|
21
21
|
}
|
|
@@ -15,7 +15,7 @@ export declare class TypeOrmRepository<TEntity> implements IEntityProvider<TEnti
|
|
|
15
15
|
softDelete(options: FindOptionsWhere<TEntity>): Promise<void>;
|
|
16
16
|
put(options: FindOptionsWhere<TEntity>, body: QueryDeepPartialEntity<TEntity>): Promise<void>;
|
|
17
17
|
patch(options: FindOptionsWhere<TEntity>, body: QueryDeepPartialEntity<TEntity>): Promise<void>;
|
|
18
|
-
|
|
18
|
+
get repo(): import("typeorm").Repository<import("typeorm").ObjectLiteral>;
|
|
19
19
|
protected insertAndReturn(entityToInsert: TEntity): Promise<TEntity>;
|
|
20
20
|
protected insertAndReturnMany(entitiesToInsert: TEntity[]): Promise<TEntity[]>;
|
|
21
21
|
}
|
|
@@ -15,7 +15,7 @@ export declare class TypeOrmRepository<TEntity> implements IEntityProvider<TEnti
|
|
|
15
15
|
softDelete(options: FindOptionsWhere<TEntity>): Promise<void>;
|
|
16
16
|
put(options: FindOptionsWhere<TEntity>, body: QueryDeepPartialEntity<TEntity>): Promise<void>;
|
|
17
17
|
patch(options: FindOptionsWhere<TEntity>, body: QueryDeepPartialEntity<TEntity>): Promise<void>;
|
|
18
|
-
|
|
18
|
+
get repo(): import("typeorm").Repository<import("typeorm").ObjectLiteral>;
|
|
19
19
|
protected insertAndReturn(entityToInsert: TEntity): Promise<TEntity>;
|
|
20
20
|
protected insertAndReturnMany(entitiesToInsert: TEntity[]): Promise<TEntity[]>;
|
|
21
21
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onivoro/server-typeorm-postgres",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.32",
|
|
4
4
|
"repository": {
|
|
5
5
|
"url": "git+https://github.com/onivoro/server-typeorm-postgres.git"
|
|
6
6
|
},
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"npm": "10.2.4"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@nestjs/common": "^10.
|
|
44
|
-
"@nestjs/swagger": "^7.
|
|
43
|
+
"@nestjs/common": "^10.4.4",
|
|
44
|
+
"@nestjs/swagger": "^7.4.2",
|
|
45
45
|
"@onivoro/isomorphic-common": "^0.4.0",
|
|
46
46
|
"typeorm": "^0.3.20",
|
|
47
47
|
"typeorm-naming-strategies": "^4.1.0"
|