@onivoro/server-typeorm-postgres 0.1.12 → 0.1.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onivoro/server-typeorm-postgres",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "dependencies": {
5
5
  "typeorm-naming-strategies": "^4.1.0"
6
6
  },
@@ -10,6 +10,7 @@
10
10
  "typeorm": "~0.3.10",
11
11
  "@nestjs/common": "~9.0.0",
12
12
  "@nestjs/swagger": "~6.1.2",
13
+ "@onivoro/isomorphic-common": "0.0.2",
13
14
  "date-fns-tz": "~1.3.7",
14
15
  "tslib": "~2.3.0"
15
16
  }
@@ -10,5 +10,5 @@ export declare abstract class TypeOrmPagingRepository<TEntity> extends TypeOrmRe
10
10
  protected getSkip: typeof getSkip;
11
11
  protected removeFalseyKeys: typeof removeFalseyKeys;
12
12
  constructor(entityType: any, entityManager: EntityManager);
13
- abstract getPage<TParams extends IPageParams>(params: TParams): Promise<IPagedData<TEntity>>;
13
+ abstract getPage<TParams>(pageParams: IPageParams, params: TParams): Promise<IPagedData<TEntity>>;
14
14
  }