From f435c6c7f63a395732753dbb2eb989584264415a Mon Sep 17 00:00:00 2001 From: Shahed Nasser Date: Mon, 22 Jul 2024 10:17:15 +0300 Subject: [PATCH] docs: fix fulfillment provider option name (#8211) Change `name` option of a fulfillment module provider to `id`. Closes DOCS-830 --- .../app/commerce-modules/fulfillment/module-options/page.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/apps/resources/app/commerce-modules/fulfillment/module-options/page.mdx b/www/apps/resources/app/commerce-modules/fulfillment/module-options/page.mdx index 496eddfd51..732061125a 100644 --- a/www/apps/resources/app/commerce-modules/fulfillment/module-options/page.mdx +++ b/www/apps/resources/app/commerce-modules/fulfillment/module-options/page.mdx @@ -34,7 +34,7 @@ module.exports = defineConfig({ providers: [ { resolve: `@medusajs/fulfillment-manual`, - name: "manual", + id: "manual", options: { // provider options... }, @@ -49,5 +49,5 @@ module.exports = defineConfig({ The `providers` option is an array of objects that accept the following properties: - `resolve`: A string indicating either the package name of the module provider or the path to it relative to the `src` directory. -- `name`: A string indicating the provider's unique name. +- `id`: A string indicating the provider's unique name or ID. - `options`: An optional object of the module provider's options.