feat(js-sdk,types,medusa): add list locales store method to JS SDK (#14314)

* feat(js-sdk,types,medusa): add list locales store method to JS SDK

* add missing locale parameter
This commit is contained in:
Shahed Nasser
2025-12-16 11:11:49 +01:00
committed by GitHub
parent d813fc4ff9
commit accb778039
8 changed files with 58 additions and 1 deletions
+29
View File
@@ -1654,4 +1654,33 @@ export class Store {
)
},
}
/**
* @tags locale
*/
public locale = {
/**
* This method retrieves the list of supported locales in the store. It sends a request to the
* [List Locales](https://docs.medusajs.com/api/store#locales_getlocales) API route.
*
* @param headers - Headers to pass in the request.
* @returns The list of supported locales.
*
* @example
* sdk.store.locale.list()
* .then(({ locales }) => {
* console.log(locales)
* })
*/
list: async (
headers?: ClientHeaders
) => {
return this.client.fetch<HttpTypes.StoreLocaleListResponse>(
`/store/locales`,
{
headers,
}
)
},
}
}