@punks/backend-entity-manager 0.0.468 → 0.0.470
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/index.js +8 -12
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/abstractions/errors.d.ts +1 -1
- package/dist/esm/index.js +8 -12
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/abstractions/errors.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -31,7 +31,7 @@ export declare class EntityNotFoundException<TEntityId> extends EntityManagerExc
|
|
|
31
31
|
getEntityType(): string | undefined;
|
|
32
32
|
}
|
|
33
33
|
export declare class MultipleEntitiesFoundException extends EntityManagerException {
|
|
34
|
-
constructor();
|
|
34
|
+
constructor(params: object, items: any[]);
|
|
35
35
|
}
|
|
36
36
|
export declare class EntityManagerConfigurationError extends EntityManagerException {
|
|
37
37
|
constructor(message: string);
|
package/dist/index.d.ts
CHANGED
|
@@ -4085,7 +4085,7 @@ declare class EntityNotFoundException<TEntityId> extends EntityManagerException
|
|
|
4085
4085
|
getEntityType(): string | undefined;
|
|
4086
4086
|
}
|
|
4087
4087
|
declare class MultipleEntitiesFoundException extends EntityManagerException {
|
|
4088
|
-
constructor();
|
|
4088
|
+
constructor(params: object, items: any[]);
|
|
4089
4089
|
}
|
|
4090
4090
|
declare class EntityManagerConfigurationError extends EntityManagerException {
|
|
4091
4091
|
constructor(message: string);
|