@punks/backend-entity-manager 0.0.261 → 0.0.263
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 +10 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/services/operations/operation-lock.service.d.ts +1 -0
- package/dist/esm/index.js +10 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/services/operations/operation-lock.service.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import { ILockRepository } from "../../../../abstractions";
|
|
|
2
2
|
import { ExclusiveOperationResult, ExecuteExclusiveInput } from "./types";
|
|
3
3
|
export declare class OperationLockService {
|
|
4
4
|
private readonly operations;
|
|
5
|
+
private readonly logger;
|
|
5
6
|
constructor(operations: ILockRepository);
|
|
6
7
|
executeExclusive: <T>(input: ExecuteExclusiveInput<T>) => Promise<ExclusiveOperationResult<T>>;
|
|
7
8
|
private executeOperation;
|
package/dist/index.d.ts
CHANGED
|
@@ -1722,6 +1722,7 @@ declare class ExclusiveOperationResult<T> {
|
|
|
1722
1722
|
|
|
1723
1723
|
declare class OperationLockService {
|
|
1724
1724
|
private readonly operations;
|
|
1725
|
+
private readonly logger;
|
|
1725
1726
|
constructor(operations: ILockRepository);
|
|
1726
1727
|
executeExclusive: <T>(input: ExecuteExclusiveInput<T>) => Promise<ExclusiveOperationResult<T>>;
|
|
1727
1728
|
private executeOperation;
|