@anchan828/nest-redlock 0.2.23 → 0.2.24
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/index.d.ts +0 -1
- package/dist/index.js +0 -1
- package/dist/redlock.constants.d.ts +0 -1
- package/dist/redlock.constants.js +0 -1
- package/dist/redlock.decorator.d.ts +0 -1
- package/dist/redlock.decorator.js +0 -1
- package/dist/redlock.fake-service.d.ts +0 -1
- package/dist/redlock.fake-service.js +0 -1
- package/dist/redlock.interface.d.ts +0 -1
- package/dist/redlock.interface.js +0 -1
- package/dist/redlock.module-definition.d.ts +0 -1
- package/dist/redlock.module-definition.js +0 -1
- package/dist/redlock.module.d.ts +0 -1
- package/dist/redlock.module.js +0 -1
- package/dist/redlock.service.d.ts +0 -1
- package/dist/redlock.service.js +0 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -3,4 +3,3 @@ export { FakeRedlockService } from "./redlock.fake-service";
|
|
|
3
3
|
export { LockedKeysHookArgs, PreLockedKeysHookArgs, RedlockKeyFunction, RedlockModuleOptions, UnlockedKeysHookArgs, } from "./redlock.interface";
|
|
4
4
|
export { RedlockModule } from "./redlock.module";
|
|
5
5
|
export { RedlockService } from "./redlock.service";
|
|
6
|
-
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -9,4 +9,3 @@ var redlock_module_1 = require("./redlock.module");
|
|
|
9
9
|
Object.defineProperty(exports, "RedlockModule", { enumerable: true, get: function () { return redlock_module_1.RedlockModule; } });
|
|
10
10
|
var redlock_service_1 = require("./redlock.service");
|
|
11
11
|
Object.defineProperty(exports, "RedlockService", { enumerable: true, get: function () { return redlock_service_1.RedlockService; } });
|
|
12
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
import { Settings } from "redlock";
|
|
2
2
|
import { RedlockKeyFunction } from "./redlock.interface";
|
|
3
3
|
export declare function Redlock<T extends (...args: any) => any = (...args: any) => any>(key: string | string[] | RedlockKeyFunction<T>, duration?: number, settings?: Partial<Settings>): MethodDecorator;
|
|
4
|
-
//# sourceMappingURL=redlock.decorator.d.ts.map
|
|
@@ -9,4 +9,3 @@ export declare class FakeRedlockService extends EventEmitter {
|
|
|
9
9
|
using<T>(keys: string[], duration: number, settings: Partial<Settings>, routine?: ((signal: RedlockAbortSignal) => Promise<T>) | undefined): Promise<T>;
|
|
10
10
|
using<T>(keys: string[], duration: number, routine: (signal: RedlockAbortSignal) => Promise<T>): Promise<T>;
|
|
11
11
|
}
|
|
12
|
-
//# sourceMappingURL=redlock.fake-service.d.ts.map
|
|
@@ -1,3 +1,2 @@
|
|
|
1
1
|
import { RedlockModuleOptions } from "./redlock.interface";
|
|
2
2
|
export declare const ConfigurableModuleClass: import("@nestjs/common").ConfigurableModuleCls<RedlockModuleOptions, "register", "create", {}>, MODULE_OPTIONS_TOKEN: string | symbol;
|
|
3
|
-
//# sourceMappingURL=redlock.module-definition.d.ts.map
|
|
@@ -4,4 +4,3 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
4
4
|
exports.MODULE_OPTIONS_TOKEN = exports.ConfigurableModuleClass = void 0;
|
|
5
5
|
const common_1 = require("@nestjs/common");
|
|
6
6
|
_a = new common_1.ConfigurableModuleBuilder().build(), exports.ConfigurableModuleClass = _a.ConfigurableModuleClass, exports.MODULE_OPTIONS_TOKEN = _a.MODULE_OPTIONS_TOKEN;
|
|
7
|
-
//# sourceMappingURL=redlock.module-definition.js.map
|
package/dist/redlock.module.d.ts
CHANGED
package/dist/redlock.module.js
CHANGED
package/dist/redlock.service.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anchan828/nest-redlock",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.24",
|
|
4
4
|
"description": "This is a [Nest](https://github.com/nestjs/nest) implementation of the redlock algorithm for distributed redis locks.",
|
|
5
5
|
"homepage": "https://github.com/anchan828/nest-redlock#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "ac772f9b5b8c87bc862927c85881956635784dea"
|
|
46
46
|
}
|