@punks/backend-entity-manager 0.0.292 → 0.0.294
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 +25 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/abstractions/errors.d.ts +6 -1
- package/dist/cjs/types/platforms/nest/plugins/jobs/aws-batch/manager/types.d.ts +1 -0
- package/dist/esm/index.js +25 -5
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/abstractions/errors.d.ts +6 -1
- package/dist/esm/types/platforms/nest/plugins/jobs/aws-batch/manager/types.d.ts +1 -0
- package/dist/index.d.ts +6 -1
- package/package.json +1 -1
|
@@ -22,8 +22,13 @@ export declare class EntityOperationUnauthorizedException<TEntity> extends Entit
|
|
|
22
22
|
}
|
|
23
23
|
export declare class EntityNotFoundException<TEntityId> extends EntityManagerException {
|
|
24
24
|
private readonly entityId;
|
|
25
|
-
|
|
25
|
+
private readonly entityType;
|
|
26
|
+
constructor(entityData: {
|
|
27
|
+
id: TEntityId;
|
|
28
|
+
type: string;
|
|
29
|
+
});
|
|
26
30
|
getEntityId(): TEntityId | undefined;
|
|
31
|
+
getEntityType(): string | undefined;
|
|
27
32
|
}
|
|
28
33
|
export declare class MultipleEntitiesFoundException extends EntityManagerException {
|
|
29
34
|
constructor();
|
package/dist/index.d.ts
CHANGED
|
@@ -3221,8 +3221,13 @@ declare class EntityOperationUnauthorizedException<TEntity> extends EntityManage
|
|
|
3221
3221
|
}
|
|
3222
3222
|
declare class EntityNotFoundException<TEntityId> extends EntityManagerException {
|
|
3223
3223
|
private readonly entityId;
|
|
3224
|
-
|
|
3224
|
+
private readonly entityType;
|
|
3225
|
+
constructor(entityData: {
|
|
3226
|
+
id: TEntityId;
|
|
3227
|
+
type: string;
|
|
3228
|
+
});
|
|
3225
3229
|
getEntityId(): TEntityId | undefined;
|
|
3230
|
+
getEntityType(): string | undefined;
|
|
3226
3231
|
}
|
|
3227
3232
|
declare class MultipleEntitiesFoundException extends EntityManagerException {
|
|
3228
3233
|
constructor();
|