xcally-nest-library 0.0.5 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -4,7 +4,7 @@ interface IId {
4
4
  id: number;
5
5
  }
6
6
  export declare class GenericRepository<E extends ObjectLiteral> {
7
- readonly entityManager: EntityManager;
7
+ private readonly entityManager;
8
8
  protected repository: Repository<E>;
9
9
  protected paginateConfig: PaginateConfig<E>;
10
10
  constructor(entityManager: EntityManager, entity: EntityTarget<E>, paginateConfig: PaginateConfig<E>);
@@ -14,5 +14,6 @@ export declare class GenericRepository<E extends ObjectLiteral> {
14
14
  count(options: FindOptionsWhere<E>): Promise<number>;
15
15
  findAll(): Promise<E[]>;
16
16
  countAll(): Promise<number>;
17
+ findById(id: number): Promise<E>;
17
18
  }
18
19
  export {};
@@ -6,7 +6,7 @@ const nestjs_paginate_1 = require("nestjs-paginate");
6
6
  class GenericRepository {
7
7
  constructor(entityManager, entity, paginateConfig) {
8
8
  this.entityManager = entityManager;
9
- this.repository = entityManager.getRepository(entity);
9
+ this.repository = this.entityManager.getRepository(entity);
10
10
  this.paginateConfig = paginateConfig;
11
11
  }
12
12
  getMany(query) {
@@ -17,13 +17,11 @@ class GenericRepository {
17
17
  return this.repository.save(res);
18
18
  }
19
19
  async update(dto) {
20
- const entity = await this.repository.findOneBy({
21
- id: (0, typeorm_1.Equal)(dto.id),
22
- });
23
- if (!entity) {
20
+ const entityUpdated = await this.repository.update(dto.id, dto);
21
+ if (!entityUpdated.affected) {
24
22
  throw new Error('Entity not found');
25
23
  }
26
- return this.repository.save({ id: entity.id, ...dto });
24
+ return this.repository.findOneBy({ id: (0, typeorm_1.Equal)(dto.id) });
27
25
  }
28
26
  count(options) {
29
27
  return this.repository.count(options);
@@ -34,6 +32,11 @@ class GenericRepository {
34
32
  countAll() {
35
33
  return this.repository.count();
36
34
  }
35
+ findById(id) {
36
+ return this.repository.findOneBy({
37
+ id: (0, typeorm_1.Equal)(id),
38
+ });
39
+ }
37
40
  }
38
41
  exports.GenericRepository = GenericRepository;
39
42
  //# sourceMappingURL=generic.repository.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"generic.repository.js","sourceRoot":"","sources":["../../../../src/db/typeorm/generic.repository.ts"],"names":[],"mappings":";;;AAAA,qCAAuH;AACvH,qDAAqF;AASrF,MAAa,iBAAiB;IAG5B,YACW,aAA4B,EACrC,MAAuB,EACvB,cAAiC;QAFxB,kBAAa,GAAb,aAAa,CAAe;QAIrC,IAAI,CAAC,UAAU,GAAG,aAAa,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;QACtD,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;IACvC,CAAC;IAOD,OAAO,CAAC,KAAoB;QAC1B,OAAO,IAAA,0BAAQ,EAAC,KAAK,EAAE,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;IAC/D,CAAC;IAOD,IAAI,CAA2B,MAAS;QACtC,MAAM,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE,GAAG,MAAM,EAAE,CAAC,CAAC;QAClD,OAAO,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;IACnC,CAAC;IASD,KAAK,CAAC,MAAM,CAAiC,GAAM;QACjD,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC;YAC7C,EAAE,EAAE,IAAA,eAAK,EAAC,GAAG,CAAC,EAAE,CAAC;SACgB,CAAC,CAAC;QACrC,IAAI,CAAC,MAAM,EAAE,CAAC;YACZ,MAAM,IAAI,KAAK,CAAC,kBAAkB,CAAC,CAAC;QACtC,CAAC;QACD,OAAO,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,EAAE,EAAE,MAAM,CAAC,EAAE,EAAE,GAAG,GAAG,EAAE,CAAC,CAAC;IACzD,CAAC;IAQD,KAAK,CAAC,OAA4B;QAChC,OAAO,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IACxC,CAAC;IAOD,OAAO;QACL,OAAO,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC;IAChC,CAAC;IAOD,QAAQ;QACN,OAAO,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,CAAC;IACjC,CAAC;CACF;AA3ED,8CA2EC"}
1
+ {"version":3,"file":"generic.repository.js","sourceRoot":"","sources":["../../../../src/db/typeorm/generic.repository.ts"],"names":[],"mappings":";;;AAAA,qCAAuH;AACvH,qDAAqF;AASrF,MAAa,iBAAiB;IAI5B,YACmB,aAA4B,EAC7C,MAAuB,EACvB,cAAiC;QAFhB,kBAAa,GAAb,aAAa,CAAe;QAI7C,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;QAC3D,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;IACvC,CAAC;IAOD,OAAO,CAAC,KAAoB;QAC1B,OAAO,IAAA,0BAAQ,EAAC,KAAK,EAAE,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;IAC/D,CAAC;IAOD,IAAI,CAA2B,MAAS;QACtC,MAAM,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE,GAAG,MAAM,EAAE,CAAC,CAAC;QAClD,OAAO,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;IACnC,CAAC;IASD,KAAK,CAAC,MAAM,CAAiC,GAAM;QACjD,MAAM,aAAa,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,GAAG,CAAC,EAAE,EAAE,GAAU,CAAC,CAAC;QACvE,IAAI,CAAC,aAAa,CAAC,QAAQ,EAAE,CAAC;YAC5B,MAAM,IAAI,KAAK,CAAC,kBAAkB,CAAC,CAAC;QACtC,CAAC;QACD,OAAO,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE,EAAE,EAAE,IAAA,eAAK,EAAC,GAAG,CAAC,EAAE,CAAC,EAAoC,CAAC,CAAC;IAC5F,CAAC;IAQD,KAAK,CAAC,OAA4B;QAChC,OAAO,IAAI,CAAC,UAAU,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IACxC,CAAC;IAOD,OAAO;QACL,OAAO,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC;IAChC,CAAC;IAOD,QAAQ;QACN,OAAO,IAAI,CAAC,UAAU,CAAC,KAAK,EAAE,CAAC;IACjC,CAAC;IAED,QAAQ,CAAC,EAAU;QACjB,OAAO,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC;YAC/B,EAAE,EAAE,IAAA,eAAK,EAAC,EAAE,CAAC;SACoB,CAAC,CAAC;IACvC,CAAC;CACF;AAhFD,8CAgFC"}