Files
medusa-store/packages/core/utils/src/index.ts
Adrien de Peretti b9d6f73320 Feat(): distributed caching (#13435)
RESOLVES CORE-1153

**What**
- This pr mainly lay the foundation the caching layer. It comes with a modules (built in memory cache) and a redis provider.
- Apply caching to few touch point to test

Co-authored-by: Carlos R. L. Rodrigues <37986729+carlos-r-l-rodrigues@users.noreply.github.com>
2025-09-30 16:19:06 +00:00

36 lines
988 B
TypeScript

export * from "./api-key"
export * from "./analytics"
export * from "./auth"
export * from "./bundles"
export * from "./common"
export * from "./core-flows"
export * from "./dal"
export * from "./defaults"
export * from "./dml"
export * from "./event-bus"
export * from "./exceptions"
export * from "./feature-flags"
export * from "./file"
export * from "./fulfillment"
export * from "./graphql"
export * from "./inventory"
export * from "./link"
export * from "./modules-sdk"
export * from "./notification"
export * from "./orchestration"
export * from "./order"
export * from "./payment"
export * from "./pg"
export * from "./pricing"
export * from "./product"
export * from "./promotion"
export * from "./search"
export * from "./shipping"
export * from "./totals"
export * from "./totals/big-number"
export * from "./user"
export * from "./caching"
export const MedusaModuleType = Symbol.for("MedusaModule")
export const MedusaModuleProviderType = Symbol.for("MedusaModuleProvider")