idempotency-redis
Version:
Idempotency guarantee via Redis
19 lines (18 loc) • 2.46 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.SerializerError = exports.DefaultErrorSerializer = exports.JSONSerializer = exports.IdempotentExecutorNonErrorWrapperError = exports.IdempotentExecutorUnknownError = exports.IdempotentExecutorSerializationError = exports.IdempotentExecutorCriticalError = exports.IdempotentExecutorCallbackError = exports.IdempotentExecutorCacheError = exports.IdempotentExecutorErrorBase = exports.IdempotentExecutor = void 0;
var executor_1 = require("./executor");
Object.defineProperty(exports, "IdempotentExecutor", { enumerable: true, get: function () { return executor_1.IdempotentExecutor; } });
var executor_errors_1 = require("./executor.errors");
Object.defineProperty(exports, "IdempotentExecutorErrorBase", { enumerable: true, get: function () { return executor_errors_1.IdempotentExecutorErrorBase; } });
Object.defineProperty(exports, "IdempotentExecutorCacheError", { enumerable: true, get: function () { return executor_errors_1.IdempotentExecutorCacheError; } });
Object.defineProperty(exports, "IdempotentExecutorCallbackError", { enumerable: true, get: function () { return executor_errors_1.IdempotentExecutorCallbackError; } });
Object.defineProperty(exports, "IdempotentExecutorCriticalError", { enumerable: true, get: function () { return executor_errors_1.IdempotentExecutorCriticalError; } });
Object.defineProperty(exports, "IdempotentExecutorSerializationError", { enumerable: true, get: function () { return executor_errors_1.IdempotentExecutorSerializationError; } });
Object.defineProperty(exports, "IdempotentExecutorUnknownError", { enumerable: true, get: function () { return executor_errors_1.IdempotentExecutorUnknownError; } });
Object.defineProperty(exports, "IdempotentExecutorNonErrorWrapperError", { enumerable: true, get: function () { return executor_errors_1.IdempotentExecutorNonErrorWrapperError; } });
var serialization_1 = require("./serialization");
Object.defineProperty(exports, "JSONSerializer", { enumerable: true, get: function () { return serialization_1.JSONSerializer; } });
Object.defineProperty(exports, "DefaultErrorSerializer", { enumerable: true, get: function () { return serialization_1.DefaultErrorSerializer; } });
var serialization_errors_1 = require("./serialization.errors");
Object.defineProperty(exports, "SerializerError", { enumerable: true, get: function () { return serialization_errors_1.SerializerError; } });
;