@forklaunch/core 0.2.3 → 0.2.6
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/LICENSE +21 -0
- package/lib/dist/cache/index.d.ts +4 -0
- package/lib/dist/cache/index.d.ts.map +1 -0
- package/lib/dist/cache/interfaces/ttlCache.interface.d.ts +2 -0
- package/lib/dist/cache/interfaces/ttlCache.interface.d.ts.map +1 -0
- package/lib/dist/cache/redisTtlCache.d.ts +353 -0
- package/lib/dist/cache/redisTtlCache.d.ts.map +1 -0
- package/{dist → lib/dist}/cache/redisTtlCache.js +1 -4
- package/lib/dist/cache/types/ttlCacheRecord.types.d.ts +2 -0
- package/lib/dist/cache/types/ttlCacheRecord.types.d.ts.map +1 -0
- package/lib/dist/controllers/index.d.ts +2 -0
- package/lib/dist/controllers/index.d.ts.map +1 -0
- package/lib/dist/controllers/interfaces/controller.interface.d.ts +2 -0
- package/lib/dist/controllers/interfaces/controller.interface.d.ts.map +1 -0
- package/lib/dist/database/index.d.ts +2 -0
- package/lib/dist/database/index.d.ts.map +1 -0
- package/lib/dist/database/mikro/models/entities/base.entity.d.ts +26 -0
- package/lib/dist/database/mikro/models/entities/base.entity.d.ts.map +1 -0
- package/lib/dist/database/mikro/models/entities/base.entity.js +46 -0
- package/lib/dist/entityMapper/index.d.ts +3 -0
- package/lib/dist/entityMapper/index.d.ts.map +1 -0
- package/lib/dist/entityMapper/interfaces/entityMapper.interface.d.ts +2 -0
- package/lib/dist/entityMapper/interfaces/entityMapper.interface.d.ts.map +1 -0
- package/lib/dist/entityMapper/models/baseEntityMapper.model.d.ts +63 -0
- package/lib/dist/entityMapper/models/baseEntityMapper.model.d.ts.map +1 -0
- package/lib/dist/entityMapper/models/requestEntityMapper.model.d.ts +58 -0
- package/lib/dist/entityMapper/models/requestEntityMapper.model.d.ts.map +1 -0
- package/lib/dist/entityMapper/models/responseEntityMapper.model.d.ts +56 -0
- package/lib/dist/entityMapper/models/responseEntityMapper.model.d.ts.map +1 -0
- package/lib/dist/entityMapper/types/entityMapper.types.d.ts +2 -0
- package/lib/dist/entityMapper/types/entityMapper.types.d.ts.map +1 -0
- package/lib/dist/http/guards/isHttpContractDetails.d.ts +5 -0
- package/lib/dist/http/guards/isHttpContractDetails.d.ts.map +1 -0
- package/lib/dist/http/guards/isHttpContractDetails.js +6 -0
- package/lib/dist/http/guards/isResponseShape.d.ts +2 -0
- package/lib/dist/http/guards/isResponseShape.d.ts.map +1 -0
- package/lib/dist/http/guards/isResponseShape.js +7 -0
- package/lib/dist/http/index.d.ts +6 -0
- package/lib/dist/http/index.d.ts.map +1 -0
- package/{dist → lib/dist}/http/index.js +1 -2
- package/lib/dist/http/interfaces/expressLikeApplication.interface.d.ts +12 -0
- package/lib/dist/http/interfaces/expressLikeApplication.interface.d.ts.map +1 -0
- package/lib/dist/http/interfaces/expressLikeRouter.interface.d.ts +103 -0
- package/lib/dist/http/interfaces/expressLikeRouter.interface.d.ts.map +1 -0
- package/lib/dist/http/interfaces/expressLikeRouter.interface.js +336 -0
- package/lib/dist/http/interfaces/index.d.ts +3 -0
- package/lib/dist/http/interfaces/index.d.ts.map +1 -0
- package/lib/dist/http/interfaces/index.js +2 -0
- package/lib/dist/http/middleware/index.d.ts +3 -0
- package/lib/dist/http/middleware/index.d.ts.map +1 -0
- package/lib/dist/http/middleware/request.middleware.d.ts +69 -0
- package/lib/dist/http/middleware/request.middleware.d.ts.map +1 -0
- package/{dist → lib/dist}/http/middleware/request.middleware.js +55 -117
- package/lib/dist/http/middleware/response.middleware.d.ts +27 -0
- package/lib/dist/http/middleware/response.middleware.d.ts.map +1 -0
- package/lib/dist/http/middleware/response.middleware.js +52 -0
- package/lib/dist/http/openApiV3Generator/index.d.ts +2 -0
- package/lib/dist/http/openApiV3Generator/index.d.ts.map +1 -0
- package/lib/dist/http/openApiV3Generator/index.js +1 -0
- package/lib/dist/http/openApiV3Generator/openApiV3Generator.d.ts +11 -0
- package/lib/dist/http/openApiV3Generator/openApiV3Generator.d.ts.map +1 -0
- package/{dist/http → lib/dist/http/openApiV3Generator}/openApiV3Generator.js +2 -24
- package/lib/dist/http/types/apiDefinition.types.d.ts +2 -0
- package/lib/dist/http/types/apiDefinition.types.d.ts.map +1 -0
- package/lib/dist/http/types/contractDetails.types.d.ts +2 -0
- package/lib/dist/http/types/contractDetails.types.d.ts.map +1 -0
- package/lib/dist/http/types/index.d.ts +4 -0
- package/lib/dist/http/types/index.d.ts.map +1 -0
- package/lib/dist/http/types/index.js +3 -0
- package/lib/dist/http/types/router.types.d.ts +2 -0
- package/lib/dist/http/types/router.types.d.ts.map +1 -0
- package/lib/dist/http/utils/enrichExpressLikeSend.d.ts +28 -0
- package/lib/dist/http/utils/enrichExpressLikeSend.d.ts.map +1 -0
- package/lib/dist/http/utils/enrichExpressLikeSend.js +50 -0
- package/lib/dist/http/utils/httpStatusCodes.d.ts +986 -0
- package/lib/dist/http/utils/httpStatusCodes.d.ts.map +1 -0
- package/lib/dist/http/utils/index.d.ts +3 -0
- package/lib/dist/http/utils/index.d.ts.map +1 -0
- package/lib/dist/http/utils/index.js +2 -0
- package/lib/dist/index.d.ts +7 -0
- package/lib/dist/index.d.ts.map +1 -0
- package/lib/dist/jest.config.d.ts +15 -0
- package/lib/dist/jest.config.d.ts.map +1 -0
- package/lib/dist/jest.config.js +21 -0
- package/lib/dist/lib/index.d.ts +7 -0
- package/lib/dist/lib/index.d.ts.map +1 -0
- package/lib/dist/lib/index.js +6 -0
- package/lib/dist/lib/jest.config.d.ts +15 -0
- package/lib/dist/lib/jest.config.d.ts.map +1 -0
- package/lib/dist/lib/jest.config.js +21 -0
- package/lib/dist/lib/src/cache/index.d.ts +4 -0
- package/lib/dist/lib/src/cache/index.d.ts.map +1 -0
- package/lib/dist/lib/src/cache/index.js +3 -0
- package/lib/dist/lib/src/cache/interfaces/ttlCache.interface.d.ts +2 -0
- package/lib/dist/lib/src/cache/interfaces/ttlCache.interface.d.ts.map +1 -0
- package/lib/dist/lib/src/cache/redisTtlCache.d.ts +353 -0
- package/lib/dist/lib/src/cache/redisTtlCache.d.ts.map +1 -0
- package/lib/dist/lib/src/cache/redisTtlCache.js +98 -0
- package/lib/dist/lib/src/cache/types/ttlCacheRecord.types.d.ts +2 -0
- package/lib/dist/lib/src/cache/types/ttlCacheRecord.types.d.ts.map +1 -0
- package/lib/dist/lib/src/cache/types/ttlCacheRecord.types.js +1 -0
- package/lib/dist/lib/src/controllers/index.d.ts +2 -0
- package/lib/dist/lib/src/controllers/index.d.ts.map +1 -0
- package/lib/dist/lib/src/controllers/index.js +1 -0
- package/lib/dist/lib/src/controllers/interfaces/controller.interface.d.ts +2 -0
- package/lib/dist/lib/src/controllers/interfaces/controller.interface.d.ts.map +1 -0
- package/lib/dist/lib/src/controllers/interfaces/controller.interface.js +1 -0
- package/lib/dist/lib/src/database/index.d.ts +2 -0
- package/lib/dist/lib/src/database/index.d.ts.map +1 -0
- package/lib/dist/lib/src/database/index.js +1 -0
- package/lib/dist/lib/src/database/mikro/models/entities/base.entity.d.ts +26 -0
- package/lib/dist/lib/src/database/mikro/models/entities/base.entity.d.ts.map +1 -0
- package/lib/dist/lib/src/database/mikro/models/entities/base.entity.js +46 -0
- package/lib/dist/lib/src/domainMapper/index.d.ts +3 -0
- package/lib/dist/lib/src/domainMapper/index.d.ts.map +1 -0
- package/lib/dist/lib/src/domainMapper/index.js +2 -0
- package/lib/dist/lib/src/domainMapper/interfaces/dtoMapper.interface.d.ts +2 -0
- package/lib/dist/lib/src/domainMapper/interfaces/dtoMapper.interface.d.ts.map +1 -0
- package/lib/dist/lib/src/domainMapper/interfaces/dtoMapper.interface.js +1 -0
- package/lib/dist/lib/src/domainMapper/models/baseDtoMapper.model.d.ts +63 -0
- package/lib/dist/lib/src/domainMapper/models/baseDtoMapper.model.d.ts.map +1 -0
- package/lib/dist/lib/src/domainMapper/models/baseDtoMapper.model.js +75 -0
- package/lib/dist/lib/src/domainMapper/models/requestDtoMapper.model.d.ts +58 -0
- package/lib/dist/lib/src/domainMapper/models/requestDtoMapper.model.d.ts.map +1 -0
- package/lib/dist/lib/src/domainMapper/models/requestDtoMapper.model.js +70 -0
- package/lib/dist/lib/src/domainMapper/models/responseDtoMapper.model.d.ts +56 -0
- package/lib/dist/lib/src/domainMapper/models/responseDtoMapper.model.d.ts.map +1 -0
- package/lib/dist/lib/src/domainMapper/models/responseDtoMapper.model.js +65 -0
- package/lib/dist/lib/src/domainMapper/types/dtoMapper.types.d.ts +2 -0
- package/lib/dist/lib/src/domainMapper/types/dtoMapper.types.d.ts.map +1 -0
- package/lib/dist/lib/src/domainMapper/types/dtoMapper.types.js +1 -0
- package/lib/dist/lib/src/dtoMapper/index.d.ts +3 -0
- package/lib/dist/lib/src/dtoMapper/index.d.ts.map +1 -0
- package/lib/dist/lib/src/dtoMapper/index.js +2 -0
- package/lib/dist/lib/src/dtoMapper/interfaces/dtoMapper.interface.d.ts +2 -0
- package/lib/dist/lib/src/dtoMapper/interfaces/dtoMapper.interface.d.ts.map +1 -0
- package/lib/dist/lib/src/dtoMapper/interfaces/dtoMapper.interface.js +1 -0
- package/lib/dist/lib/src/dtoMapper/models/baseDtoMapper.model.d.ts +63 -0
- package/lib/dist/lib/src/dtoMapper/models/baseDtoMapper.model.d.ts.map +1 -0
- package/lib/dist/lib/src/dtoMapper/models/baseDtoMapper.model.js +75 -0
- package/lib/dist/lib/src/dtoMapper/models/requestDtoMapper.model.d.ts +58 -0
- package/lib/dist/lib/src/dtoMapper/models/requestDtoMapper.model.d.ts.map +1 -0
- package/lib/dist/lib/src/dtoMapper/models/requestDtoMapper.model.js +70 -0
- package/lib/dist/lib/src/dtoMapper/models/responseDtoMapper.model.d.ts +56 -0
- package/lib/dist/lib/src/dtoMapper/models/responseDtoMapper.model.d.ts.map +1 -0
- package/lib/dist/lib/src/dtoMapper/models/responseDtoMapper.model.js +65 -0
- package/lib/dist/lib/src/dtoMapper/types/dtoMapper.types.d.ts +2 -0
- package/lib/dist/lib/src/dtoMapper/types/dtoMapper.types.d.ts.map +1 -0
- package/lib/dist/lib/src/dtoMapper/types/dtoMapper.types.js +1 -0
- package/lib/dist/lib/src/http/application/expressLikeApplication.d.ts +18 -0
- package/lib/dist/lib/src/http/application/expressLikeApplication.d.ts.map +1 -0
- package/lib/dist/lib/src/http/application/expressLikeApplication.js +20 -0
- package/lib/dist/lib/src/http/guards/isHttpContractDetails.d.ts +5 -0
- package/lib/dist/lib/src/http/guards/isHttpContractDetails.d.ts.map +1 -0
- package/lib/dist/lib/src/http/guards/isHttpContractDetails.js +6 -0
- package/lib/dist/lib/src/http/guards/isResponseShape.d.ts +2 -0
- package/lib/dist/lib/src/http/guards/isResponseShape.d.ts.map +1 -0
- package/lib/dist/lib/src/http/guards/isResponseShape.js +7 -0
- package/lib/dist/lib/src/http/handler/typedHandler.d.ts +21 -0
- package/lib/dist/lib/src/http/handler/typedHandler.d.ts.map +1 -0
- package/lib/dist/lib/src/http/handler/typedHandler.js +25 -0
- package/lib/dist/lib/src/http/index.d.ts +11 -0
- package/lib/dist/lib/src/http/index.d.ts.map +1 -0
- package/lib/dist/lib/src/http/index.js +10 -0
- package/lib/dist/lib/src/http/interfaces/expressLikeApplication.interface.d.ts +12 -0
- package/lib/dist/lib/src/http/interfaces/expressLikeApplication.interface.d.ts.map +1 -0
- package/lib/dist/lib/src/http/interfaces/expressLikeApplication.interface.js +14 -0
- package/lib/dist/lib/src/http/interfaces/expressLikeRouter.interface.d.ts +2 -0
- package/lib/dist/lib/src/http/interfaces/expressLikeRouter.interface.d.ts.map +1 -0
- package/lib/dist/lib/src/http/interfaces/expressLikeRouter.interface.js +1 -0
- package/lib/dist/lib/src/http/interfaces/index.d.ts +3 -0
- package/lib/dist/lib/src/http/interfaces/index.d.ts.map +1 -0
- package/lib/dist/lib/src/http/interfaces/index.js +2 -0
- package/lib/dist/lib/src/http/middleware/index.d.ts +3 -0
- package/lib/dist/lib/src/http/middleware/index.d.ts.map +1 -0
- package/lib/dist/lib/src/http/middleware/index.js +2 -0
- package/lib/dist/lib/src/http/middleware/request/auth.middleware.d.ts +27 -0
- package/lib/dist/lib/src/http/middleware/request/auth.middleware.d.ts.map +1 -0
- package/lib/dist/lib/src/http/middleware/request/auth.middleware.js +107 -0
- package/lib/dist/lib/src/http/middleware/request/cors.middleware.d.ts +9 -0
- package/lib/dist/lib/src/http/middleware/request/cors.middleware.d.ts.map +1 -0
- package/lib/dist/lib/src/http/middleware/request/cors.middleware.js +15 -0
- package/lib/dist/lib/src/http/middleware/request/createContext.middleware.d.ts +12 -0
- package/lib/dist/lib/src/http/middleware/request/createContext.middleware.d.ts.map +1 -0
- package/lib/dist/lib/src/http/middleware/request/createContext.middleware.js +26 -0
- package/lib/dist/lib/src/http/middleware/request/enrichDetails.middleware.d.ts +12 -0
- package/lib/dist/lib/src/http/middleware/request/enrichDetails.middleware.d.ts.map +1 -0
- package/lib/dist/lib/src/http/middleware/request/enrichDetails.middleware.js +19 -0
- package/lib/dist/lib/src/http/middleware/request/parse.middleware.d.ts +13 -0
- package/lib/dist/lib/src/http/middleware/request/parse.middleware.d.ts.map +1 -0
- package/lib/dist/lib/src/http/middleware/request/parse.middleware.js +43 -0
- package/lib/dist/lib/src/http/middleware/request.middleware.d.ts +69 -0
- package/lib/dist/lib/src/http/middleware/request.middleware.d.ts.map +1 -0
- package/lib/dist/lib/src/http/middleware/request.middleware.js +210 -0
- package/lib/dist/lib/src/http/middleware/response/parse.middleware.d.ts +27 -0
- package/lib/dist/lib/src/http/middleware/response/parse.middleware.d.ts.map +1 -0
- package/lib/dist/lib/src/http/middleware/response/parse.middleware.js +52 -0
- package/lib/dist/lib/src/http/middleware/response.middleware.d.ts +27 -0
- package/lib/dist/lib/src/http/middleware/response.middleware.d.ts.map +1 -0
- package/lib/dist/lib/src/http/middleware/response.middleware.js +52 -0
- package/lib/dist/lib/src/http/openApiV3Generator/index.d.ts +2 -0
- package/lib/dist/lib/src/http/openApiV3Generator/index.d.ts.map +1 -0
- package/lib/dist/lib/src/http/openApiV3Generator/index.js +1 -0
- package/lib/dist/lib/src/http/openApiV3Generator/openApiV3Generator.d.ts +11 -0
- package/lib/dist/lib/src/http/openApiV3Generator/openApiV3Generator.d.ts.map +1 -0
- package/lib/dist/lib/src/http/openApiV3Generator/openApiV3Generator.js +167 -0
- package/lib/dist/lib/src/http/router/expressLikeRouter.d.ts +89 -0
- package/lib/dist/lib/src/http/router/expressLikeRouter.d.ts.map +1 -0
- package/{dist/http/interfaces/forklaunchExpress.router.interface.js → lib/dist/lib/src/http/router/expressLikeRouter.js} +85 -91
- package/lib/dist/lib/src/http/types/apiDefinition.types.d.ts +2 -0
- package/lib/dist/lib/src/http/types/apiDefinition.types.d.ts.map +1 -0
- package/lib/dist/lib/src/http/types/apiDefinition.types.js +1 -0
- package/lib/dist/lib/src/http/types/contractDetails.types.d.ts +2 -0
- package/lib/dist/lib/src/http/types/contractDetails.types.d.ts.map +1 -0
- package/lib/dist/lib/src/http/types/contractDetails.types.js +1 -0
- package/lib/dist/lib/src/http/types/index.d.ts +4 -0
- package/lib/dist/lib/src/http/types/index.d.ts.map +1 -0
- package/lib/dist/lib/src/http/types/index.js +3 -0
- package/lib/dist/lib/src/http/types/router.types.d.ts +2 -0
- package/lib/dist/lib/src/http/types/router.types.d.ts.map +1 -0
- package/lib/dist/lib/src/http/types/router.types.js +1 -0
- package/lib/dist/lib/src/http/utils/enrichExpressLikeSend.d.ts +28 -0
- package/lib/dist/lib/src/http/utils/enrichExpressLikeSend.d.ts.map +1 -0
- package/lib/dist/lib/src/http/utils/enrichExpressLikeSend.js +50 -0
- package/lib/dist/lib/src/http/utils/httpStatusCodes.d.ts +986 -0
- package/lib/dist/lib/src/http/utils/httpStatusCodes.d.ts.map +1 -0
- package/lib/dist/lib/src/http/utils/httpStatusCodes.js +1039 -0
- package/lib/dist/lib/src/http/utils/index.d.ts +3 -0
- package/lib/dist/lib/src/http/utils/index.d.ts.map +1 -0
- package/lib/dist/lib/src/http/utils/index.js +2 -0
- package/lib/dist/lib/src/services/index.d.ts +2 -0
- package/lib/dist/lib/src/services/index.d.ts.map +1 -0
- package/lib/dist/lib/src/services/interfaces/baseService.d.ts +2 -0
- package/lib/dist/lib/src/services/interfaces/baseService.d.ts.map +1 -0
- package/lib/dist/lib/src/services/interfaces/baseService.js +1 -0
- package/lib/dist/lib/tests/dtoMapper.test.d.ts +2 -0
- package/lib/dist/lib/tests/dtoMapper.test.d.ts.map +1 -0
- package/lib/dist/lib/tests/dtoMapper.test.js +172 -0
- package/lib/dist/lib/tests/entityMapper.test.d.ts.map +1 -0
- package/lib/dist/lib/tests/entityMapper.test.js +172 -0
- package/lib/dist/lib/tests/expressLikeRouter.test.d.ts +2 -0
- package/lib/dist/lib/tests/expressLikeRouter.test.d.ts.map +1 -0
- package/lib/dist/lib/tests/expressLikeRouter.test.js +3 -0
- package/lib/dist/lib/tests/http.middleware.test.d.ts.map +1 -0
- package/lib/dist/lib/tests/http.middleware.test.js +95 -0
- package/lib/dist/lib/tests/openApiV3Generator.test.d.ts.map +1 -0
- package/lib/dist/lib/tests/openApiV3Generator.test.js +66 -0
- package/lib/dist/lib/tests/redisTtlCache.test.d.ts.map +1 -0
- package/lib/dist/lib/tests/redisTtlCache.test.js +49 -0
- package/lib/dist/lib/tests/typedHandler.test.d.ts +2 -0
- package/lib/dist/lib/tests/typedHandler.test.d.ts.map +1 -0
- package/lib/dist/lib/tests/typedHandler.test.js +3 -0
- package/lib/dist/lib/vitest.config.d.ts +3 -0
- package/lib/dist/lib/vitest.config.d.ts.map +1 -0
- package/lib/dist/lib/vitest.config.js +7 -0
- package/lib/dist/services/index.d.ts +2 -0
- package/lib/dist/services/index.d.ts.map +1 -0
- package/lib/dist/services/index.js +1 -0
- package/lib/dist/services/interfaces/baseService.d.ts +2 -0
- package/lib/dist/services/interfaces/baseService.d.ts.map +1 -0
- package/lib/dist/services/interfaces/baseService.js +1 -0
- package/lib/dist/tests/entityMapper.test.d.ts +2 -0
- package/lib/dist/tests/entityMapper.test.d.ts.map +1 -0
- package/{dist → lib/dist}/tests/entityMapper.test.js +6 -2
- package/lib/dist/tests/http.middleware.test.d.ts +2 -0
- package/lib/dist/tests/http.middleware.test.d.ts.map +1 -0
- package/{dist → lib/dist}/tests/http.middleware.test.js +39 -21
- package/lib/dist/tests/openApiV3Generator.test.d.ts +2 -0
- package/lib/dist/tests/openApiV3Generator.test.d.ts.map +1 -0
- package/{dist → lib/dist}/tests/openApiV3Generator.test.js +1 -1
- package/lib/dist/tests/redisTtlCache.test.d.ts +2 -0
- package/lib/dist/tests/redisTtlCache.test.d.ts.map +1 -0
- package/lib/eslint.config.mjs +10 -0
- package/lib/index.d.ts +7 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +7 -0
- package/lib/jest.config.d.ts +4 -0
- package/lib/jest.config.d.ts.map +1 -0
- package/lib/jest.config.js +21 -0
- package/lib/src/cache/index.d.ts.map +1 -0
- package/lib/src/cache/index.js +3 -0
- package/lib/src/cache/interfaces/ttlCache.interface.d.ts.map +1 -0
- package/lib/src/cache/interfaces/ttlCache.interface.js +1 -0
- package/lib/src/cache/redisTtlCache.d.ts.map +1 -0
- package/lib/src/cache/redisTtlCache.js +98 -0
- package/lib/src/cache/types/ttlCacheRecord.types.d.ts.map +1 -0
- package/lib/src/cache/types/ttlCacheRecord.types.js +1 -0
- package/lib/src/controllers/index.d.ts.map +1 -0
- package/lib/src/controllers/index.js +1 -0
- package/lib/src/controllers/interfaces/controller.interface.d.ts.map +1 -0
- package/lib/src/controllers/interfaces/controller.interface.js +1 -0
- package/lib/src/database/index.d.ts.map +1 -0
- package/lib/src/database/index.js +1 -0
- package/lib/src/database/mikro/models/entities/base.entity.d.ts.map +1 -0
- package/lib/src/domainMapper/index.d.ts +3 -0
- package/lib/src/domainMapper/index.d.ts.map +1 -0
- package/lib/src/domainMapper/index.js +2 -0
- package/{dist/entityMapper/interfaces/entityMapper.interface.d.ts → lib/src/domainMapper/interfaces/dtoMapper.interface.d.ts} +3 -3
- package/lib/src/domainMapper/interfaces/dtoMapper.interface.d.ts.map +1 -0
- package/lib/src/domainMapper/interfaces/dtoMapper.interface.js +1 -0
- package/{dist/entityMapper/models/baseEntityMapper.model.d.ts → lib/src/domainMapper/models/baseDtoMapper.model.d.ts} +13 -13
- package/lib/src/domainMapper/models/baseDtoMapper.model.d.ts.map +1 -0
- package/lib/src/domainMapper/models/baseDtoMapper.model.js +75 -0
- package/{dist/entityMapper/models/requestEntityMapper.model.d.ts → lib/src/domainMapper/models/requestDtoMapper.model.d.ts} +13 -13
- package/lib/src/domainMapper/models/requestDtoMapper.model.d.ts.map +1 -0
- package/lib/src/domainMapper/models/requestDtoMapper.model.js +70 -0
- package/{dist/entityMapper/models/responseEntityMapper.model.d.ts → lib/src/domainMapper/models/responseDtoMapper.model.d.ts} +12 -12
- package/lib/src/domainMapper/models/responseDtoMapper.model.d.ts.map +1 -0
- package/lib/src/domainMapper/models/responseDtoMapper.model.js +65 -0
- package/lib/src/domainMapper/types/dtoMapper.types.d.ts +9 -0
- package/lib/src/domainMapper/types/dtoMapper.types.d.ts.map +1 -0
- package/lib/src/domainMapper/types/dtoMapper.types.js +1 -0
- package/lib/src/dtoMapper/index.d.ts +3 -0
- package/lib/src/dtoMapper/index.d.ts.map +1 -0
- package/lib/src/dtoMapper/index.js +2 -0
- package/lib/src/dtoMapper/interfaces/dtoMapper.interface.d.ts +18 -0
- package/lib/src/dtoMapper/interfaces/dtoMapper.interface.d.ts.map +1 -0
- package/lib/src/dtoMapper/interfaces/dtoMapper.interface.js +1 -0
- package/lib/src/dtoMapper/models/baseDtoMapper.model.d.ts +72 -0
- package/lib/src/dtoMapper/models/baseDtoMapper.model.d.ts.map +1 -0
- package/lib/src/dtoMapper/models/baseDtoMapper.model.js +75 -0
- package/lib/src/dtoMapper/models/requestDtoMapper.model.d.ts +68 -0
- package/lib/src/dtoMapper/models/requestDtoMapper.model.d.ts.map +1 -0
- package/lib/src/dtoMapper/models/requestDtoMapper.model.js +70 -0
- package/lib/src/dtoMapper/models/responseDtoMapper.model.d.ts +67 -0
- package/lib/src/dtoMapper/models/responseDtoMapper.model.d.ts.map +1 -0
- package/lib/src/dtoMapper/models/responseDtoMapper.model.js +65 -0
- package/lib/src/dtoMapper/types/dtoMapper.types.d.ts +9 -0
- package/lib/src/dtoMapper/types/dtoMapper.types.d.ts.map +1 -0
- package/lib/src/dtoMapper/types/dtoMapper.types.js +1 -0
- package/lib/src/http/application/expressLikeApplication.d.ts +22 -0
- package/lib/src/http/application/expressLikeApplication.d.ts.map +1 -0
- package/lib/src/http/application/expressLikeApplication.js +20 -0
- package/lib/src/http/guards/isExpressLikeSchemaHandler.d.ts +5 -0
- package/lib/src/http/guards/isExpressLikeSchemaHandler.d.ts.map +1 -0
- package/lib/src/http/guards/isExpressLikeSchemaHandler.js +9 -0
- package/lib/src/http/guards/isHttpContractDetails.d.ts +7 -0
- package/lib/src/http/guards/isHttpContractDetails.d.ts.map +1 -0
- package/lib/src/http/guards/isHttpContractDetails.js +9 -0
- package/lib/src/http/guards/isPathParamContractDetails.d.ts +4 -0
- package/lib/src/http/guards/isPathParamContractDetails.d.ts.map +1 -0
- package/lib/src/http/guards/isPathParamContractDetails.js +10 -0
- package/lib/src/http/guards/isResponseShape.d.ts +3 -0
- package/lib/src/http/guards/isResponseShape.d.ts.map +1 -0
- package/lib/src/http/guards/isResponseShape.js +7 -0
- package/lib/src/http/guards/isTypedHandler.d.ts +5 -0
- package/lib/src/http/guards/isTypedHandler.d.ts.map +1 -0
- package/lib/src/http/guards/isTypedHandler.js +6 -0
- package/lib/src/http/handler/typedHandler.d.ts +24 -0
- package/lib/src/http/handler/typedHandler.d.ts.map +1 -0
- package/lib/src/http/handler/typedHandler.js +25 -0
- package/lib/src/http/handlers/typedHandler.d.ts +27 -0
- package/lib/src/http/handlers/typedHandler.d.ts.map +1 -0
- package/lib/src/http/handlers/typedHandler.js +30 -0
- package/lib/src/http/index.d.ts +12 -0
- package/lib/src/http/index.d.ts.map +1 -0
- package/lib/src/http/index.js +11 -0
- package/{dist/http/interfaces/forklaunchExpress.application.interface.d.ts → lib/src/http/interfaces/expressLikeApplication.interface.d.ts} +1 -1
- package/lib/src/http/interfaces/expressLikeApplication.interface.d.ts.map +1 -0
- package/lib/src/http/interfaces/expressLikeApplication.interface.js +14 -0
- package/lib/src/http/interfaces/expressLikeRouter.interface.d.ts +24 -0
- package/lib/src/http/interfaces/expressLikeRouter.interface.d.ts.map +1 -0
- package/lib/src/http/interfaces/expressLikeRouter.interface.js +1 -0
- package/lib/src/http/interfaces/index.d.ts +3 -0
- package/lib/src/http/interfaces/index.d.ts.map +1 -0
- package/lib/src/http/interfaces/index.js +2 -0
- package/lib/src/http/middleware/index.d.ts.map +1 -0
- package/lib/src/http/middleware/index.js +2 -0
- package/lib/src/http/middleware/request/auth.middleware.d.ts +31 -0
- package/lib/src/http/middleware/request/auth.middleware.d.ts.map +1 -0
- package/lib/src/http/middleware/request/auth.middleware.js +107 -0
- package/lib/src/http/middleware/request/cors.middleware.d.ts +13 -0
- package/lib/src/http/middleware/request/cors.middleware.d.ts.map +1 -0
- package/lib/src/http/middleware/request/cors.middleware.js +15 -0
- package/lib/src/http/middleware/request/createContext.middleware.d.ts +15 -0
- package/lib/src/http/middleware/request/createContext.middleware.d.ts.map +1 -0
- package/lib/src/http/middleware/request/createContext.middleware.js +26 -0
- package/lib/src/http/middleware/request/enrichDetails.middleware.d.ts +15 -0
- package/lib/src/http/middleware/request/enrichDetails.middleware.d.ts.map +1 -0
- package/lib/src/http/middleware/request/enrichDetails.middleware.js +19 -0
- package/lib/src/http/middleware/request/parse.middleware.d.ts +17 -0
- package/lib/src/http/middleware/request/parse.middleware.d.ts.map +1 -0
- package/lib/src/http/middleware/request/parse.middleware.js +43 -0
- package/lib/src/http/middleware/request.middleware.d.ts +73 -0
- package/lib/src/http/middleware/request.middleware.d.ts.map +1 -0
- package/lib/src/http/middleware/request.middleware.js +210 -0
- package/lib/src/http/middleware/response/parse.middleware.d.ts +31 -0
- package/lib/src/http/middleware/response/parse.middleware.d.ts.map +1 -0
- package/lib/src/http/middleware/response/parse.middleware.js +52 -0
- package/lib/src/http/middleware/response.middleware.d.ts +31 -0
- package/lib/src/http/middleware/response.middleware.d.ts.map +1 -0
- package/lib/src/http/middleware/response.middleware.js +52 -0
- package/lib/src/http/openApiV3Generator/index.d.ts +2 -0
- package/lib/src/http/openApiV3Generator/index.d.ts.map +1 -0
- package/lib/src/http/openApiV3Generator/index.js +1 -0
- package/{dist/http → lib/src/http/openApiV3Generator}/openApiV3Generator.d.ts +1 -1
- package/lib/src/http/openApiV3Generator/openApiV3Generator.d.ts.map +1 -0
- package/lib/src/http/openApiV3Generator/openApiV3Generator.js +169 -0
- package/lib/src/http/router/expressLikeRouter.d.ts +135 -0
- package/lib/src/http/router/expressLikeRouter.d.ts.map +1 -0
- package/lib/src/http/router/expressLikeRouter.js +438 -0
- package/{dist/http/types/api.types.d.ts → lib/src/http/types/apiDefinition.types.d.ts} +49 -24
- package/lib/src/http/types/apiDefinition.types.d.ts.map +1 -0
- package/lib/src/http/types/apiDefinition.types.js +1 -0
- package/lib/src/http/types/contractDetails.types.d.ts +169 -0
- package/lib/src/http/types/contractDetails.types.d.ts.map +1 -0
- package/lib/src/http/types/contractDetails.types.js +1 -0
- package/lib/src/http/types/expressLikeRouter.types.d.ts +35 -0
- package/lib/src/http/types/expressLikeRouter.types.d.ts.map +1 -0
- package/lib/src/http/types/expressLikeRouter.types.js +1 -0
- package/lib/src/http/types/index.d.ts +4 -0
- package/lib/src/http/types/index.d.ts.map +1 -0
- package/lib/src/http/types/index.js +3 -0
- package/{dist/http/types/forklaunch.types.d.ts → lib/src/http/types/router.types.d.ts} +3 -3
- package/lib/src/http/types/router.types.d.ts.map +1 -0
- package/lib/src/http/types/router.types.js +1 -0
- package/lib/src/http/utils/enrichExpressLikeSend.d.ts +32 -0
- package/lib/src/http/utils/enrichExpressLikeSend.d.ts.map +1 -0
- package/lib/src/http/utils/enrichExpressLikeSend.js +50 -0
- package/lib/src/http/utils/httpStatusCodes.d.ts.map +1 -0
- package/lib/src/http/utils/httpStatusCodes.js +1039 -0
- package/lib/src/http/utils/index.d.ts +3 -0
- package/lib/src/http/utils/index.d.ts.map +1 -0
- package/lib/src/http/utils/index.js +2 -0
- package/lib/src/services/index.d.ts.map +1 -0
- package/lib/src/services/index.js +1 -0
- package/lib/src/services/interfaces/baseService.d.ts.map +1 -0
- package/lib/src/services/interfaces/baseService.js +1 -0
- package/lib/tests/dtoMapper.test.d.ts +2 -0
- package/lib/tests/dtoMapper.test.d.ts.map +1 -0
- package/lib/tests/dtoMapper.test.js +168 -0
- package/lib/tests/entityMapper.test.d.ts +2 -0
- package/lib/tests/entityMapper.test.js +168 -0
- package/lib/tests/expressLikeRouter.test.d.ts +2 -0
- package/lib/tests/expressLikeRouter.test.d.ts.map +1 -0
- package/lib/tests/expressLikeRouter.test.js +3 -0
- package/lib/tests/expressLikeRouterInstantiation.test.d.ts +2 -0
- package/lib/tests/expressLikeRouterInstantiation.test.d.ts.map +1 -0
- package/lib/tests/expressLikeRouterInstantiation.test.js +60 -0
- package/lib/tests/http.middleware.test.d.ts +2 -0
- package/lib/tests/http.middleware.test.js +102 -0
- package/lib/tests/openApiV3Generator.test.d.ts +2 -0
- package/lib/tests/openApiV3Generator.test.js +66 -0
- package/lib/tests/redisTtlCache.test.d.ts +2 -0
- package/lib/tests/redisTtlCache.test.js +49 -0
- package/lib/tests/typedHandler.test.d.ts +2 -0
- package/lib/tests/typedHandler.test.d.ts.map +1 -0
- package/lib/tests/typedHandler.test.js +3 -0
- package/lib/tsconfig.tsbuildinfo +1 -0
- package/lib/vitest.config.d.ts +3 -0
- package/lib/vitest.config.d.ts.map +1 -0
- package/lib/vitest.config.js +7 -0
- package/package.json +52 -30
- package/dist/cache/index.d.ts.map +0 -1
- package/dist/cache/interfaces/ttlCache.interface.d.ts.map +0 -1
- package/dist/cache/redisTtlCache.d.ts.map +0 -1
- package/dist/cache/types/ttlCacheRecord.types.d.ts.map +0 -1
- package/dist/controllers/index.d.ts.map +0 -1
- package/dist/controllers/interfaces/controller.interface.d.ts.map +0 -1
- package/dist/database/index.d.ts.map +0 -1
- package/dist/database/mikro/models/entities/base.entity.d.ts.map +0 -1
- package/dist/entityMapper/index.d.ts +0 -3
- package/dist/entityMapper/index.d.ts.map +0 -1
- package/dist/entityMapper/interfaces/entityMapper.interface.d.ts.map +0 -1
- package/dist/entityMapper/models/baseEntityMapper.model.d.ts.map +0 -1
- package/dist/entityMapper/models/requestEntityMapper.model.d.ts.map +0 -1
- package/dist/entityMapper/models/responseEntityMapper.model.d.ts.map +0 -1
- package/dist/entityMapper/types/entityMapper.types.d.ts +0 -10
- package/dist/entityMapper/types/entityMapper.types.d.ts.map +0 -1
- package/dist/eslint.config.mjs +0 -10
- package/dist/http/httpStatusCodes.d.ts.map +0 -1
- package/dist/http/index.d.ts +0 -7
- package/dist/http/index.d.ts.map +0 -1
- package/dist/http/interfaces/forklaunchExpress.application.interface.d.ts.map +0 -1
- package/dist/http/interfaces/forklaunchExpress.router.interface.d.ts +0 -118
- package/dist/http/interfaces/forklaunchExpress.router.interface.d.ts.map +0 -1
- package/dist/http/interfaces/index.d.ts +0 -3
- package/dist/http/interfaces/index.d.ts.map +0 -1
- package/dist/http/interfaces/index.js +0 -2
- package/dist/http/middleware/index.d.ts.map +0 -1
- package/dist/http/middleware/request.middleware.d.ts +0 -111
- package/dist/http/middleware/request.middleware.d.ts.map +0 -1
- package/dist/http/middleware/response.middleware.d.ts +0 -17
- package/dist/http/middleware/response.middleware.d.ts.map +0 -1
- package/dist/http/middleware/response.middleware.js +0 -49
- package/dist/http/openApiV3Generator.d.ts.map +0 -1
- package/dist/http/regex.d.ts +0 -9
- package/dist/http/regex.d.ts.map +0 -1
- package/dist/http/regex.js +0 -111
- package/dist/http/types/api.types.d.ts.map +0 -1
- package/dist/http/types/forklaunch.types.d.ts.map +0 -1
- package/dist/http/types/index.d.ts +0 -4
- package/dist/http/types/index.d.ts.map +0 -1
- package/dist/http/types/index.js +0 -3
- package/dist/http/types/primitive.types.d.ts +0 -110
- package/dist/http/types/primitive.types.d.ts.map +0 -1
- package/dist/index.d.ts +0 -7
- package/dist/index.d.ts.map +0 -1
- package/dist/jest.config.d.ts +0 -4
- package/dist/jest.config.d.ts.map +0 -1
- package/dist/jest.config.js +0 -7
- package/dist/services/index.d.ts.map +0 -1
- package/dist/services/interfaces/baseService.d.ts.map +0 -1
- package/dist/tsconfig.tsbuildinfo +0 -1
- /package/{dist → lib/dist}/cache/index.js +0 -0
- /package/{dist → lib/dist}/cache/interfaces/ttlCache.interface.js +0 -0
- /package/{dist → lib/dist}/cache/types/ttlCacheRecord.types.js +0 -0
- /package/{dist → lib/dist}/controllers/index.js +0 -0
- /package/{dist → lib/dist}/controllers/interfaces/controller.interface.js +0 -0
- /package/{dist → lib/dist}/database/index.js +0 -0
- /package/{dist → lib/dist}/entityMapper/index.js +0 -0
- /package/{dist → lib/dist}/entityMapper/interfaces/entityMapper.interface.js +0 -0
- /package/{dist → lib/dist}/entityMapper/models/baseEntityMapper.model.js +0 -0
- /package/{dist → lib/dist}/entityMapper/models/requestEntityMapper.model.js +0 -0
- /package/{dist → lib/dist}/entityMapper/models/responseEntityMapper.model.js +0 -0
- /package/{dist → lib/dist}/entityMapper/types/entityMapper.types.js +0 -0
- /package/{dist/http/interfaces/forklaunchExpress.application.interface.js → lib/dist/http/interfaces/expressLikeApplication.interface.js} +0 -0
- /package/{dist → lib/dist}/http/middleware/index.js +0 -0
- /package/{dist/http/types/api.types.js → lib/dist/http/types/apiDefinition.types.js} +0 -0
- /package/{dist/http/types/forklaunch.types.js → lib/dist/http/types/contractDetails.types.js} +0 -0
- /package/{dist/http/types/primitive.types.js → lib/dist/http/types/router.types.js} +0 -0
- /package/{dist/http → lib/dist/http/utils}/httpStatusCodes.js +0 -0
- /package/{dist → lib/dist}/index.js +0 -0
- /package/{dist/services/interfaces/baseService.js → lib/dist/lib/src/cache/interfaces/ttlCache.interface.js} +0 -0
- /package/{dist → lib/dist/lib/src}/services/index.js +0 -0
- /package/{dist → lib/dist/lib}/tests/entityMapper.test.d.ts +0 -0
- /package/{dist → lib/dist/lib}/tests/http.middleware.test.d.ts +0 -0
- /package/{dist → lib/dist/lib}/tests/openApiV3Generator.test.d.ts +0 -0
- /package/{dist → lib/dist/lib}/tests/redisTtlCache.test.d.ts +0 -0
- /package/{dist → lib/dist}/tests/redisTtlCache.test.js +0 -0
- /package/{dist → lib}/eslint.config.d.mts +0 -0
- /package/{dist → lib}/eslint.config.d.mts.map +0 -0
- /package/{dist → lib/src}/cache/index.d.ts +0 -0
- /package/{dist → lib/src}/cache/interfaces/ttlCache.interface.d.ts +0 -0
- /package/{dist → lib/src}/cache/redisTtlCache.d.ts +0 -0
- /package/{dist → lib/src}/cache/types/ttlCacheRecord.types.d.ts +0 -0
- /package/{dist → lib/src}/controllers/index.d.ts +0 -0
- /package/{dist → lib/src}/controllers/interfaces/controller.interface.d.ts +0 -0
- /package/{dist → lib/src}/database/index.d.ts +0 -0
- /package/{dist → lib/src}/database/mikro/models/entities/base.entity.d.ts +0 -0
- /package/{dist → lib/src}/database/mikro/models/entities/base.entity.js +0 -0
- /package/{dist → lib/src}/http/middleware/index.d.ts +0 -0
- /package/{dist/http → lib/src/http/utils}/httpStatusCodes.d.ts +0 -0
- /package/{dist → lib/src}/services/index.d.ts +0 -0
- /package/{dist → lib/src}/services/interfaces/baseService.d.ts +0 -0
- /package/{dist → lib}/tests/entityMapper.test.d.ts.map +0 -0
- /package/{dist → lib}/tests/http.middleware.test.d.ts.map +0 -0
- /package/{dist → lib}/tests/openApiV3Generator.test.d.ts.map +0 -0
- /package/{dist → lib}/tests/redisTtlCache.test.d.ts.map +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"httpStatusCodes.d.ts","sourceRoot":"","sources":["../../../../dist/http/utils/httpStatusCodes.js"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AACH;IACI;;;;;;;;;;;;;OAaG;;IAEH;;;;;;;;;;;;;;OAcG;;IAEH;;;;;;;;;;;;;;;;OAgBG;;IAEH;;;;;;;;;;;OAWG;;IAEH;;;;;;;;;;;;OAYG;;IAEH;;;;;;;;;;;;;;;;OAgBG;;IAEH;;;;;;;;;;;;;;;;OAgBG;;IAEH;;;;;;;;;;;;OAYG;;IAEH;;;;;;;;;;;;;;;;;;;;;OAqBG;;IAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAoEG;;IAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAmCG;;IAEH;;;;;;;;;;;;;;;;;;;;;;;;;OAyBG;;IAEH;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;;IAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAqCG;;IAEH;;;;;;;;;;;;;;;;;;;;OAoBG;;IAEH;;;;;;;;;;;;;;OAcG;;IAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA8BG;;IAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OA+BG;;IAEH;;;OAGG;;IAEH;;;;;;;;;;;;;;;;;;;OAmBG;;IAEH;;;;;;;;;;;;;;;;;;;OAmBG;;IAEH;;;;;OAKG;;IAEH;;;;;;;;;;;;;;OAcG;;IAEH;;OAEG;;IAEH;;;;;;;;;;;;;;;;OAgBG;;IAEH;;;;;;;;;;;;OAYG;;IAEH;;;;;;;;;;OAUG;;IAEH;;;;;;;;;;;;;;OAcG;;IAEH;;;;;;;OAOG;;IAEH;;;;;;;;OAQG;;IAEH;;;;;;;;;;;;;;;OAeG;;IAEH;;;;;;;;;;;;;;;;;;;;;OAqBG;;IAEH;;;;;;OAMG;;IAEH;;;;;;;;OAQG;;IAEH;;;;;;;;;OASG;;IAEH;;;;;;;;;;;;;;OAcG;;IAEH;;;;;;;OAOG;;IAEH;;;;;;;;;;;;OAYG;;IAEH;;;;;OAKG;;IAEH;;;OAGG;;IAEH;;;;;;;;;;;;;;;OAeG;;IAEH;;;;;;;;;OASG;;IAEH;;;;;OAKG;;IAEH;;;;;;OAMG;;IAEH;;;;;;;OAOG;;IAEH;;;;;;;;;;;;;OAaG;;IAEH;;;;;;;;;OASG;;IAEH;;;;;;;;OAQG;;IAEH;;;;;;;OAOG;;IAEH;;;;;;;;;;;;;;;;;;;;;;;OAuBG;;IAEH;;;OAGG;;IAEH;;;;OAIG;;IAEH;;;;;;;;;OASG;;IAEH;;;;OAIG;;IAEH;;;;;;;OAOG;;IAEH;;;;;OAKG;;IAEH;;;;;;;;;;OAUG;;IAEH;;;;;OAKG;;IAEH;;;;;;;;OAQG;;IAEH;;;;OAIG;;IAEH;;;;;;;;;;;;;;OAcG;;IAEH;;;;;;;;;;;;;;;OAeG;;IAEH;;;;OAIG;;EAEL;AAQK,sDAAwD;AAOxD,oDAA2D;AAO3D,iDAAwD;AAOxD,kDAAyD;AAOzD,kDAAyD;AAOzD,kDAA2C;AAY3C,6DAMN"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../dist/http/utils/index.js"],"names":[],"mappings":""}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../dist/index.js"],"names":[],"mappings":""}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
export default jestConfig;
|
2
|
+
declare namespace jestConfig {
|
3
|
+
let preset: string;
|
4
|
+
let moduleNameMapper: {
|
5
|
+
'^(\\.{1,2}/.*)\\.js$': string;
|
6
|
+
};
|
7
|
+
let transform: {
|
8
|
+
'^.+\\.[tj]sx?$': (string | {
|
9
|
+
useESM: boolean;
|
10
|
+
})[];
|
11
|
+
'^.+\\.js$': string;
|
12
|
+
};
|
13
|
+
let testPathIgnorePatterns: string[];
|
14
|
+
}
|
15
|
+
//# sourceMappingURL=jest.config.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"jest.config.d.ts","sourceRoot":"","sources":["../../dist/jest.config.js"],"names":[],"mappings":""}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
// import type { Config } from 'jest';
|
2
|
+
const jestConfig = {
|
3
|
+
// [...]
|
4
|
+
preset: 'ts-jest/presets/default-esm', // or other ESM presets
|
5
|
+
moduleNameMapper: {
|
6
|
+
'^(\\.{1,2}/.*)\\.js$': '$1'
|
7
|
+
},
|
8
|
+
transform: {
|
9
|
+
// '^.+\\.[tj]sx?$' to process ts,js,tsx,jsx with `ts-jest`
|
10
|
+
// '^.+\\.m?[tj]sx?$' to process ts,js,tsx,jsx,mts,mjs,mtsx,mjsx with `ts-jest`
|
11
|
+
'^.+\\.[tj]sx?$': [
|
12
|
+
'ts-jest',
|
13
|
+
{
|
14
|
+
useESM: true
|
15
|
+
}
|
16
|
+
],
|
17
|
+
'^.+\\.js$': 'babel-jest'
|
18
|
+
},
|
19
|
+
testPathIgnorePatterns: ['.*dist/', '.*node_modules/']
|
20
|
+
};
|
21
|
+
export default jestConfig;
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../dist/lib/index.js"],"names":[],"mappings":""}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
export default jestConfig;
|
2
|
+
declare namespace jestConfig {
|
3
|
+
let preset: string;
|
4
|
+
let moduleNameMapper: {
|
5
|
+
'^(\\.{1,2}/.*)\\.js$': string;
|
6
|
+
};
|
7
|
+
let transform: {
|
8
|
+
'^.+\\.[tj]sx?$': (string | {
|
9
|
+
useESM: boolean;
|
10
|
+
})[];
|
11
|
+
'^.+\\.js$': string;
|
12
|
+
};
|
13
|
+
let testPathIgnorePatterns: string[];
|
14
|
+
}
|
15
|
+
//# sourceMappingURL=jest.config.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"jest.config.d.ts","sourceRoot":"","sources":["../../../dist/lib/jest.config.js"],"names":[],"mappings":""}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
// import type { Config } from 'jest';
|
2
|
+
const jestConfig = {
|
3
|
+
// [...]
|
4
|
+
preset: 'ts-jest/presets/default-esm', // or other ESM presets
|
5
|
+
moduleNameMapper: {
|
6
|
+
'^(\\.{1,2}/.*)\\.js$': '$1'
|
7
|
+
},
|
8
|
+
transform: {
|
9
|
+
// '^.+\\.[tj]sx?$' to process ts,js,tsx,jsx with `ts-jest`
|
10
|
+
// '^.+\\.m?[tj]sx?$' to process ts,js,tsx,jsx,mts,mjs,mtsx,mjsx with `ts-jest`
|
11
|
+
'^.+\\.[tj]sx?$': [
|
12
|
+
'ts-jest',
|
13
|
+
{
|
14
|
+
useESM: true
|
15
|
+
}
|
16
|
+
],
|
17
|
+
'^.+\\.js$': 'babel-jest'
|
18
|
+
},
|
19
|
+
testPathIgnorePatterns: ['.*dist/', '.*node_modules/']
|
20
|
+
};
|
21
|
+
export default jestConfig;
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../dist/lib/src/cache/index.js"],"names":[],"mappings":""}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"ttlCache.interface.d.ts","sourceRoot":"","sources":["../../../../../../dist/lib/src/cache/interfaces/ttlCache.interface.js"],"names":[],"mappings":""}
|
@@ -0,0 +1,353 @@
|
|
1
|
+
/**
|
2
|
+
* Class representing a Redis-based TTL (Time-To-Live) cache.
|
3
|
+
* Implements the TtlCache interface.
|
4
|
+
*/
|
5
|
+
export class RedisTtlCache {
|
6
|
+
/**
|
7
|
+
* Creates an instance of RedisTtlCache.
|
8
|
+
*
|
9
|
+
* @param {number} ttlMilliseconds - The default TTL in milliseconds.
|
10
|
+
* @param {RedisClientOptions} [hostingOptions] - The Redis client options.
|
11
|
+
*/
|
12
|
+
constructor(ttlMilliseconds: number, hostingOptions?: any);
|
13
|
+
ttlMilliseconds: number;
|
14
|
+
client: import(".pnpm/@redis+client@1.6.0/node_modules/@redis/client").RedisClientType<{
|
15
|
+
graph: {
|
16
|
+
CONFIG_GET: typeof import(".pnpm/@redis+graph@1.1.1_@redis+client@1.6.0/node_modules/@redis/graph/dist/commands/CONFIG_GET");
|
17
|
+
configGet: typeof import(".pnpm/@redis+graph@1.1.1_@redis+client@1.6.0/node_modules/@redis/graph/dist/commands/CONFIG_GET");
|
18
|
+
CONFIG_SET: typeof import(".pnpm/@redis+graph@1.1.1_@redis+client@1.6.0/node_modules/@redis/graph/dist/commands/CONFIG_SET");
|
19
|
+
configSet: typeof import(".pnpm/@redis+graph@1.1.1_@redis+client@1.6.0/node_modules/@redis/graph/dist/commands/CONFIG_SET");
|
20
|
+
DELETE: typeof import(".pnpm/@redis+graph@1.1.1_@redis+client@1.6.0/node_modules/@redis/graph/dist/commands/DELETE");
|
21
|
+
delete: typeof import(".pnpm/@redis+graph@1.1.1_@redis+client@1.6.0/node_modules/@redis/graph/dist/commands/DELETE");
|
22
|
+
EXPLAIN: typeof import(".pnpm/@redis+graph@1.1.1_@redis+client@1.6.0/node_modules/@redis/graph/dist/commands/EXPLAIN");
|
23
|
+
explain: typeof import(".pnpm/@redis+graph@1.1.1_@redis+client@1.6.0/node_modules/@redis/graph/dist/commands/EXPLAIN");
|
24
|
+
LIST: typeof import(".pnpm/@redis+graph@1.1.1_@redis+client@1.6.0/node_modules/@redis/graph/dist/commands/LIST");
|
25
|
+
list: typeof import(".pnpm/@redis+graph@1.1.1_@redis+client@1.6.0/node_modules/@redis/graph/dist/commands/LIST");
|
26
|
+
PROFILE: typeof import(".pnpm/@redis+graph@1.1.1_@redis+client@1.6.0/node_modules/@redis/graph/dist/commands/PROFILE");
|
27
|
+
profile: typeof import(".pnpm/@redis+graph@1.1.1_@redis+client@1.6.0/node_modules/@redis/graph/dist/commands/PROFILE");
|
28
|
+
QUERY: typeof import(".pnpm/@redis+graph@1.1.1_@redis+client@1.6.0/node_modules/@redis/graph/dist/commands/QUERY");
|
29
|
+
query: typeof import(".pnpm/@redis+graph@1.1.1_@redis+client@1.6.0/node_modules/@redis/graph/dist/commands/QUERY");
|
30
|
+
RO_QUERY: typeof import(".pnpm/@redis+graph@1.1.1_@redis+client@1.6.0/node_modules/@redis/graph/dist/commands/RO_QUERY");
|
31
|
+
roQuery: typeof import(".pnpm/@redis+graph@1.1.1_@redis+client@1.6.0/node_modules/@redis/graph/dist/commands/RO_QUERY");
|
32
|
+
SLOWLOG: typeof import(".pnpm/@redis+graph@1.1.1_@redis+client@1.6.0/node_modules/@redis/graph/dist/commands/SLOWLOG");
|
33
|
+
slowLog: typeof import(".pnpm/@redis+graph@1.1.1_@redis+client@1.6.0/node_modules/@redis/graph/dist/commands/SLOWLOG");
|
34
|
+
};
|
35
|
+
json: {
|
36
|
+
ARRAPPEND: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/ARRAPPEND");
|
37
|
+
arrAppend: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/ARRAPPEND");
|
38
|
+
ARRINDEX: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/ARRINDEX");
|
39
|
+
arrIndex: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/ARRINDEX");
|
40
|
+
ARRINSERT: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/ARRINSERT");
|
41
|
+
arrInsert: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/ARRINSERT");
|
42
|
+
ARRLEN: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/ARRLEN");
|
43
|
+
arrLen: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/ARRLEN");
|
44
|
+
ARRPOP: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/ARRPOP");
|
45
|
+
arrPop: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/ARRPOP");
|
46
|
+
ARRTRIM: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/ARRTRIM");
|
47
|
+
arrTrim: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/ARRTRIM");
|
48
|
+
DEBUG_MEMORY: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/DEBUG_MEMORY");
|
49
|
+
debugMemory: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/DEBUG_MEMORY");
|
50
|
+
DEL: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/DEL");
|
51
|
+
del: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/DEL");
|
52
|
+
FORGET: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/FORGET");
|
53
|
+
forget: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/FORGET");
|
54
|
+
GET: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/GET");
|
55
|
+
get: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/GET");
|
56
|
+
MERGE: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/MERGE");
|
57
|
+
merge: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/MERGE");
|
58
|
+
MGET: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/MGET");
|
59
|
+
mGet: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/MGET");
|
60
|
+
MSET: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/MSET");
|
61
|
+
mSet: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/MSET");
|
62
|
+
NUMINCRBY: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/NUMINCRBY");
|
63
|
+
numIncrBy: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/NUMINCRBY");
|
64
|
+
NUMMULTBY: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/NUMMULTBY");
|
65
|
+
numMultBy: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/NUMMULTBY");
|
66
|
+
OBJKEYS: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/OBJKEYS");
|
67
|
+
objKeys: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/OBJKEYS");
|
68
|
+
OBJLEN: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/OBJLEN");
|
69
|
+
objLen: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/OBJLEN");
|
70
|
+
RESP: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/RESP");
|
71
|
+
resp: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/RESP");
|
72
|
+
SET: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/SET");
|
73
|
+
set: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/SET");
|
74
|
+
STRAPPEND: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/STRAPPEND");
|
75
|
+
strAppend: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/STRAPPEND");
|
76
|
+
STRLEN: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/STRLEN");
|
77
|
+
strLen: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/STRLEN");
|
78
|
+
TYPE: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/TYPE");
|
79
|
+
type: typeof import(".pnpm/@redis+json@1.0.7_@redis+client@1.6.0/node_modules/@redis/json/dist/commands/TYPE");
|
80
|
+
};
|
81
|
+
ft: {
|
82
|
+
_LIST: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/_LIST");
|
83
|
+
_list: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/_LIST");
|
84
|
+
ALTER: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/ALTER");
|
85
|
+
alter: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/ALTER");
|
86
|
+
AGGREGATE_WITHCURSOR: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/AGGREGATE_WITHCURSOR");
|
87
|
+
aggregateWithCursor: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/AGGREGATE_WITHCURSOR");
|
88
|
+
AGGREGATE: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/AGGREGATE");
|
89
|
+
aggregate: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/AGGREGATE");
|
90
|
+
ALIASADD: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/ALIASADD");
|
91
|
+
aliasAdd: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/ALIASADD");
|
92
|
+
ALIASDEL: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/ALIASDEL");
|
93
|
+
aliasDel: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/ALIASDEL");
|
94
|
+
ALIASUPDATE: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/ALIASUPDATE");
|
95
|
+
aliasUpdate: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/ALIASUPDATE");
|
96
|
+
CONFIG_GET: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/CONFIG_GET");
|
97
|
+
configGet: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/CONFIG_GET");
|
98
|
+
CONFIG_SET: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/CONFIG_SET");
|
99
|
+
configSet: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/CONFIG_SET");
|
100
|
+
CREATE: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/CREATE");
|
101
|
+
create: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/CREATE");
|
102
|
+
CURSOR_DEL: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/CURSOR_DEL");
|
103
|
+
cursorDel: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/CURSOR_DEL");
|
104
|
+
CURSOR_READ: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/CURSOR_READ");
|
105
|
+
cursorRead: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/CURSOR_READ");
|
106
|
+
DICTADD: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/DICTADD");
|
107
|
+
dictAdd: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/DICTADD");
|
108
|
+
DICTDEL: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/DICTDEL");
|
109
|
+
dictDel: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/DICTDEL");
|
110
|
+
DICTDUMP: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/DICTDUMP");
|
111
|
+
dictDump: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/DICTDUMP");
|
112
|
+
DROPINDEX: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/DROPINDEX");
|
113
|
+
dropIndex: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/DROPINDEX");
|
114
|
+
EXPLAIN: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/EXPLAIN");
|
115
|
+
explain: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/EXPLAIN");
|
116
|
+
EXPLAINCLI: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/EXPLAINCLI");
|
117
|
+
explainCli: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/EXPLAINCLI");
|
118
|
+
INFO: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/INFO");
|
119
|
+
info: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/INFO");
|
120
|
+
PROFILESEARCH: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/PROFILE_SEARCH");
|
121
|
+
profileSearch: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/PROFILE_SEARCH");
|
122
|
+
PROFILEAGGREGATE: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/PROFILE_AGGREGATE");
|
123
|
+
profileAggregate: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/PROFILE_AGGREGATE");
|
124
|
+
SEARCH: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SEARCH");
|
125
|
+
search: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SEARCH");
|
126
|
+
SEARCH_NOCONTENT: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SEARCH_NOCONTENT");
|
127
|
+
searchNoContent: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SEARCH_NOCONTENT");
|
128
|
+
SPELLCHECK: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SPELLCHECK");
|
129
|
+
spellCheck: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SPELLCHECK");
|
130
|
+
SUGADD: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SUGADD");
|
131
|
+
sugAdd: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SUGADD");
|
132
|
+
SUGDEL: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SUGDEL");
|
133
|
+
sugDel: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SUGDEL");
|
134
|
+
SUGGET_WITHPAYLOADS: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SUGGET_WITHPAYLOADS");
|
135
|
+
sugGetWithPayloads: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SUGGET_WITHPAYLOADS");
|
136
|
+
SUGGET_WITHSCORES_WITHPAYLOADS: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SUGGET_WITHSCORES_WITHPAYLOADS");
|
137
|
+
sugGetWithScoresWithPayloads: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SUGGET_WITHSCORES_WITHPAYLOADS");
|
138
|
+
SUGGET_WITHSCORES: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SUGGET_WITHSCORES");
|
139
|
+
sugGetWithScores: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SUGGET_WITHSCORES");
|
140
|
+
SUGGET: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SUGGET");
|
141
|
+
sugGet: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SUGGET");
|
142
|
+
SUGLEN: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SUGLEN");
|
143
|
+
sugLen: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SUGLEN");
|
144
|
+
SYNDUMP: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SYNDUMP");
|
145
|
+
synDump: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SYNDUMP");
|
146
|
+
SYNUPDATE: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SYNUPDATE");
|
147
|
+
synUpdate: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/SYNUPDATE");
|
148
|
+
TAGVALS: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/TAGVALS");
|
149
|
+
tagVals: typeof import(".pnpm/@redis+search@1.2.0_@redis+client@1.6.0/node_modules/@redis/search/dist/commands/TAGVALS");
|
150
|
+
};
|
151
|
+
ts: {
|
152
|
+
ADD: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/ADD");
|
153
|
+
add: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/ADD");
|
154
|
+
ALTER: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/ALTER");
|
155
|
+
alter: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/ALTER");
|
156
|
+
CREATE: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/CREATE");
|
157
|
+
create: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/CREATE");
|
158
|
+
CREATERULE: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/CREATERULE");
|
159
|
+
createRule: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/CREATERULE");
|
160
|
+
DECRBY: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/DECRBY");
|
161
|
+
decrBy: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/DECRBY");
|
162
|
+
DEL: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/DEL");
|
163
|
+
del: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/DEL");
|
164
|
+
DELETERULE: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/DELETERULE");
|
165
|
+
deleteRule: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/DELETERULE");
|
166
|
+
GET: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/GET");
|
167
|
+
get: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/GET");
|
168
|
+
INCRBY: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/INCRBY");
|
169
|
+
incrBy: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/INCRBY");
|
170
|
+
INFO_DEBUG: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/INFO_DEBUG");
|
171
|
+
infoDebug: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/INFO_DEBUG");
|
172
|
+
INFO: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/INFO");
|
173
|
+
info: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/INFO");
|
174
|
+
MADD: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/MADD");
|
175
|
+
mAdd: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/MADD");
|
176
|
+
MGET: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/MGET");
|
177
|
+
mGet: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/MGET");
|
178
|
+
MGET_WITHLABELS: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/MGET_WITHLABELS");
|
179
|
+
mGetWithLabels: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/MGET_WITHLABELS");
|
180
|
+
QUERYINDEX: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/QUERYINDEX");
|
181
|
+
queryIndex: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/QUERYINDEX");
|
182
|
+
RANGE: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/RANGE");
|
183
|
+
range: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/RANGE");
|
184
|
+
REVRANGE: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/REVRANGE");
|
185
|
+
revRange: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/REVRANGE");
|
186
|
+
MRANGE: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/MRANGE");
|
187
|
+
mRange: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/MRANGE");
|
188
|
+
MRANGE_WITHLABELS: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/MRANGE_WITHLABELS");
|
189
|
+
mRangeWithLabels: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/MRANGE_WITHLABELS");
|
190
|
+
MREVRANGE: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/MREVRANGE");
|
191
|
+
mRevRange: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/MREVRANGE");
|
192
|
+
MREVRANGE_WITHLABELS: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/MREVRANGE_WITHLABELS");
|
193
|
+
mRevRangeWithLabels: typeof import(".pnpm/@redis+time-series@1.1.0_@redis+client@1.6.0/node_modules/@redis/time-series/dist/commands/MREVRANGE_WITHLABELS");
|
194
|
+
};
|
195
|
+
bf: {
|
196
|
+
ADD: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/ADD");
|
197
|
+
add: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/ADD");
|
198
|
+
CARD: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/CARD");
|
199
|
+
card: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/CARD");
|
200
|
+
EXISTS: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/EXISTS");
|
201
|
+
exists: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/EXISTS");
|
202
|
+
INFO: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/INFO");
|
203
|
+
info: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/INFO");
|
204
|
+
INSERT: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/INSERT");
|
205
|
+
insert: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/INSERT");
|
206
|
+
LOADCHUNK: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/LOADCHUNK");
|
207
|
+
loadChunk: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/LOADCHUNK");
|
208
|
+
MADD: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/MADD");
|
209
|
+
mAdd: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/MADD");
|
210
|
+
MEXISTS: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/MEXISTS");
|
211
|
+
mExists: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/MEXISTS");
|
212
|
+
RESERVE: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/RESERVE");
|
213
|
+
reserve: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/RESERVE");
|
214
|
+
SCANDUMP: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/SCANDUMP");
|
215
|
+
scanDump: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/bloom/SCANDUMP");
|
216
|
+
};
|
217
|
+
cms: {
|
218
|
+
INCRBY: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/count-min-sketch/INCRBY");
|
219
|
+
incrBy: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/count-min-sketch/INCRBY");
|
220
|
+
INFO: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/count-min-sketch/INFO");
|
221
|
+
info: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/count-min-sketch/INFO");
|
222
|
+
INITBYDIM: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/count-min-sketch/INITBYDIM");
|
223
|
+
initByDim: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/count-min-sketch/INITBYDIM");
|
224
|
+
INITBYPROB: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/count-min-sketch/INITBYPROB");
|
225
|
+
initByProb: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/count-min-sketch/INITBYPROB");
|
226
|
+
MERGE: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/count-min-sketch/MERGE");
|
227
|
+
merge: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/count-min-sketch/MERGE");
|
228
|
+
QUERY: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/count-min-sketch/QUERY");
|
229
|
+
query: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/count-min-sketch/QUERY");
|
230
|
+
};
|
231
|
+
cf: {
|
232
|
+
ADD: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/ADD");
|
233
|
+
add: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/ADD");
|
234
|
+
ADDNX: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/ADDNX");
|
235
|
+
addNX: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/ADDNX");
|
236
|
+
COUNT: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/COUNT");
|
237
|
+
count: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/COUNT");
|
238
|
+
DEL: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/DEL");
|
239
|
+
del: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/DEL");
|
240
|
+
EXISTS: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/EXISTS");
|
241
|
+
exists: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/EXISTS");
|
242
|
+
INFO: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/INFO");
|
243
|
+
info: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/INFO");
|
244
|
+
INSERT: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/INSERT");
|
245
|
+
insert: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/INSERT");
|
246
|
+
INSERTNX: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/INSERTNX");
|
247
|
+
insertNX: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/INSERTNX");
|
248
|
+
LOADCHUNK: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/LOADCHUNK");
|
249
|
+
loadChunk: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/LOADCHUNK");
|
250
|
+
RESERVE: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/RESERVE");
|
251
|
+
reserve: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/RESERVE");
|
252
|
+
SCANDUMP: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/SCANDUMP");
|
253
|
+
scanDump: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/cuckoo/SCANDUMP");
|
254
|
+
};
|
255
|
+
tDigest: {
|
256
|
+
ADD: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/ADD");
|
257
|
+
add: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/ADD");
|
258
|
+
BYRANK: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/BYRANK");
|
259
|
+
byRank: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/BYRANK");
|
260
|
+
BYREVRANK: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/BYREVRANK");
|
261
|
+
byRevRank: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/BYREVRANK");
|
262
|
+
CDF: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/CDF");
|
263
|
+
cdf: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/CDF");
|
264
|
+
CREATE: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/CREATE");
|
265
|
+
create: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/CREATE");
|
266
|
+
INFO: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/INFO");
|
267
|
+
info: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/INFO");
|
268
|
+
MAX: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/MAX");
|
269
|
+
max: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/MAX");
|
270
|
+
MERGE: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/MERGE");
|
271
|
+
merge: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/MERGE");
|
272
|
+
MIN: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/MIN");
|
273
|
+
min: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/MIN");
|
274
|
+
QUANTILE: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/QUANTILE");
|
275
|
+
quantile: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/QUANTILE");
|
276
|
+
RANK: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/RANK");
|
277
|
+
rank: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/RANK");
|
278
|
+
RESET: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/RESET");
|
279
|
+
reset: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/RESET");
|
280
|
+
REVRANK: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/REVRANK");
|
281
|
+
revRank: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/REVRANK");
|
282
|
+
TRIMMED_MEAN: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/TRIMMED_MEAN");
|
283
|
+
trimmedMean: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/t-digest/TRIMMED_MEAN");
|
284
|
+
};
|
285
|
+
topK: {
|
286
|
+
ADD: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/top-k/ADD");
|
287
|
+
add: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/top-k/ADD");
|
288
|
+
COUNT: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/top-k/COUNT");
|
289
|
+
count: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/top-k/COUNT");
|
290
|
+
INCRBY: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/top-k/INCRBY");
|
291
|
+
incrBy: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/top-k/INCRBY");
|
292
|
+
INFO: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/top-k/INFO");
|
293
|
+
info: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/top-k/INFO");
|
294
|
+
LIST_WITHCOUNT: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/top-k/LIST_WITHCOUNT");
|
295
|
+
listWithCount: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/top-k/LIST_WITHCOUNT");
|
296
|
+
LIST: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/top-k/LIST");
|
297
|
+
list: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/top-k/LIST");
|
298
|
+
QUERY: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/top-k/QUERY");
|
299
|
+
query: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/top-k/QUERY");
|
300
|
+
RESERVE: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/top-k/RESERVE");
|
301
|
+
reserve: typeof import(".pnpm/@redis+bloom@1.2.0_@redis+client@1.6.0/node_modules/@redis/bloom/dist/commands/top-k/RESERVE");
|
302
|
+
};
|
303
|
+
} & import("redis").RedisModules, import("redis").RedisFunctions, import("redis").RedisScripts>;
|
304
|
+
/**
|
305
|
+
* Puts a record into the Redis cache.
|
306
|
+
*
|
307
|
+
* @param {TtlCacheRecord} param0 - The cache record to put into the cache.
|
308
|
+
* @returns {Promise<void>} - A promise that resolves when the record is put into the cache.
|
309
|
+
*/
|
310
|
+
putRecord({ key, value, ttlMilliseconds }: TtlCacheRecord): Promise<void>;
|
311
|
+
/**
|
312
|
+
* Deletes a record from the Redis cache.
|
313
|
+
*
|
314
|
+
* @param {string} cacheRecordKey - The key of the cache record to delete.
|
315
|
+
* @returns {Promise<void>} - A promise that resolves when the record is deleted from the cache.
|
316
|
+
*/
|
317
|
+
deleteRecord(cacheRecordKey: string): Promise<void>;
|
318
|
+
/**
|
319
|
+
* Reads a record from the Redis cache.
|
320
|
+
*
|
321
|
+
* @param {string} cacheRecordKey - The key of the cache record to read.
|
322
|
+
* @returns {Promise<TtlCacheRecord>} - A promise that resolves with the cache record.
|
323
|
+
* @throws {Error} - Throws an error if the record is not found.
|
324
|
+
*/
|
325
|
+
readRecord(cacheRecordKey: string): Promise<TtlCacheRecord>;
|
326
|
+
/**
|
327
|
+
* Lists the keys in the Redis cache that match a pattern prefix.
|
328
|
+
*
|
329
|
+
* @param {string} pattern_prefix - The pattern prefix to match.
|
330
|
+
* @returns {Promise<string[]>} - A promise that resolves with an array of keys matching the pattern prefix.
|
331
|
+
*/
|
332
|
+
listKeys(pattern_prefix: string): Promise<string[]>;
|
333
|
+
/**
|
334
|
+
* Peeks at a record in the Redis cache to check if it exists.
|
335
|
+
*
|
336
|
+
* @param {string} cacheRecordKey - The key of the cache record to peek at.
|
337
|
+
* @returns {Promise<boolean>} - A promise that resolves with a boolean indicating if the record exists.
|
338
|
+
*/
|
339
|
+
peekRecord(cacheRecordKey: string): Promise<boolean>;
|
340
|
+
/**
|
341
|
+
* Disconnects the Redis client.
|
342
|
+
*
|
343
|
+
* @returns {Promise<void>} - A promise that resolves when the client is disconnected.
|
344
|
+
*/
|
345
|
+
disconnect(): Promise<void>;
|
346
|
+
/**
|
347
|
+
* Gets the default TTL (Time-To-Live) in milliseconds.
|
348
|
+
*
|
349
|
+
* @returns {number} - The TTL in milliseconds.
|
350
|
+
*/
|
351
|
+
getTtlMilliseconds(): number;
|
352
|
+
}
|
353
|
+
//# sourceMappingURL=redisTtlCache.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"redisTtlCache.d.ts","sourceRoot":"","sources":["../../../../../dist/lib/src/cache/redisTtlCache.js"],"names":[],"mappings":"AACA;;;GAGG;AACH;IAGI;;;;;OAKG;IACH,6BAHW,MAAM,wBAUhB;IAfD,wBAAgB;IAChB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oGAAO;IAeP;;;;;OAKG;IACH,2CAHW,cAAc,GACZ,OAAO,CAAC,IAAI,CAAC,CAMzB;IACD;;;;;OAKG;IACH,6BAHW,MAAM,GACJ,OAAO,CAAC,IAAI,CAAC,CAIzB;IACD;;;;;;OAMG;IACH,2BAJW,MAAM,GACJ,OAAO,CAAC,cAAc,CAAC,CAcnC;IACD;;;;;OAKG;IACH,yBAHW,MAAM,GACJ,OAAO,CAAC,MAAM,EAAE,CAAC,CAK7B;IACD;;;;;OAKG;IACH,2BAHW,MAAM,GACJ,OAAO,CAAC,OAAO,CAAC,CAK5B;IACD;;;;OAIG;IACH,cAFa,OAAO,CAAC,IAAI,CAAC,CAIzB;IACD;;;;OAIG;IACH,sBAFa,MAAM,CAIlB;CACJ"}
|