From dd3eb10b1afd0659a6095b6a642d0bf5322285cd Mon Sep 17 00:00:00 2001 From: Nicolas Gorga <62995075+NicolasGorga@users.noreply.github.com> Date: Sun, 14 Dec 2025 08:15:44 -0300 Subject: [PATCH] fix(link-modules): export store locale link definition (#14293) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary **What** — What changes are introduced in this PR? Export missing store locale link definition. **Why** — Why are these changes relevant or necessary? *Please provide answer here* **How** — How have these changes been implemented? *Please provide answer here* **Testing** — How have these changes been tested, or how can the reviewer test the feature? *Please provide answer here* --- ## Examples Provide examples or code snippets that demonstrate how this feature works, or how it can be used in practice. This helps with documentation and ensures maintainers can quickly understand and verify the change. ```ts // Example usage ``` --- ## Checklist Please ensure the following before requesting a review: - [ ] I have added a **changeset** for this PR - Every non-breaking change should be marked as a **patch** - To add a changeset, run `yarn changeset` and follow the prompts - [ ] The changes are covered by relevant **tests** - [ ] I have verified the code works as intended locally - [ ] I have linked the related issue(s) if applicable --- ## Additional Context Add any additional context, related issues, or references that might help the reviewer understand this PR. --- .changeset/silver-jars-battle.md | 5 +++++ .../modules/link-modules/src/definitions/readonly/index.ts | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changeset/silver-jars-battle.md diff --git a/.changeset/silver-jars-battle.md b/.changeset/silver-jars-battle.md new file mode 100644 index 0000000000..68fbdda372 --- /dev/null +++ b/.changeset/silver-jars-battle.md @@ -0,0 +1,5 @@ +--- +"@medusajs/link-modules": patch +--- + +fix(link-modules): export store locale link definition diff --git a/packages/modules/link-modules/src/definitions/readonly/index.ts b/packages/modules/link-modules/src/definitions/readonly/index.ts index a9f774a68a..1bf9a12ebd 100644 --- a/packages/modules/link-modules/src/definitions/readonly/index.ts +++ b/packages/modules/link-modules/src/definitions/readonly/index.ts @@ -11,3 +11,4 @@ export * from "./order-region" export * from "./order-sales-channel" export * from "./product-translation" export * from "./store-currency" +export * from "./store-locale"