test-entity-library-asm 2.2.9 → 2.3.0

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.
@@ -8,5 +8,5 @@ export declare class CustomRepository<T extends ObjectLiteral> extends Repositor
8
8
  pageSize: number;
9
9
  totalPages: number;
10
10
  }>;
11
- anyOtherRepository(args: any): Promise<void>;
11
+ anyOtherRepositoryMethod(args: any): Promise<void>;
12
12
  }
@@ -129,7 +129,7 @@ var CustomRepository = /** @class */ (function (_super) {
129
129
  });
130
130
  });
131
131
  };
132
- CustomRepository.prototype.anyOtherRepository = function (args) {
132
+ CustomRepository.prototype.anyOtherRepositoryMethod = function (args) {
133
133
  return __awaiter(this, void 0, void 0, function () {
134
134
  return __generator(this, function (_a) {
135
135
  return [2 /*return*/];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-entity-library-asm",
3
- "version": "2.2.9",
3
+ "version": "2.3.0",
4
4
  "description": "Entidades de ejemplo para una base de datos",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -100,7 +100,7 @@ export class CustomRepository<T extends ObjectLiteral> extends Repository<T> {
100
100
  }
101
101
  }
102
102
 
103
- async anyOtherRepository(args: any) {
103
+ async anyOtherRepositoryMethod(args: any) {
104
104
  // Implementa otro método personalizado aquí
105
105
  }
106
106
  }