diff --git a/packages/core/core-flows/src/file/steps/delete-files.ts b/packages/core/core-flows/src/file/steps/delete-files.ts index da4f1e31a2..36d0f043b1 100644 --- a/packages/core/core-flows/src/file/steps/delete-files.ts +++ b/packages/core/core-flows/src/file/steps/delete-files.ts @@ -10,7 +10,7 @@ export type DeleteFilesStepInput = string[] export const deleteFilesStepId = "delete-files" /** * This step deletes one or more files using the installed - * [File Module Provider](https://docs.medusajs.com/resources/architectural-modules/file). The files + * [File Module Provider](https://docs.medusajs.com/resources/infrastructure-modules/file). The files * will be removed from the database and the storage. * * @example diff --git a/packages/core/core-flows/src/file/steps/upload-files.ts b/packages/core/core-flows/src/file/steps/upload-files.ts index e290ee697e..952bb802e6 100644 --- a/packages/core/core-flows/src/file/steps/upload-files.ts +++ b/packages/core/core-flows/src/file/steps/upload-files.ts @@ -40,7 +40,7 @@ export type UploadFilesStepInput = { export const uploadFilesStepId = "upload-files" /** * This step uploads one or more files using the installed - * [File Module Provider](https://docs.medusajs.com/resources/architectural-modules/file). + * [File Module Provider](https://docs.medusajs.com/resources/infrastructure-modules/file). * * @example * const data = uploadFilesStep({ diff --git a/packages/core/core-flows/src/file/workflows/delete-files.ts b/packages/core/core-flows/src/file/workflows/delete-files.ts index d78a73aba2..3bdbc3dafc 100644 --- a/packages/core/core-flows/src/file/workflows/delete-files.ts +++ b/packages/core/core-flows/src/file/workflows/delete-files.ts @@ -8,7 +8,7 @@ export const deleteFilesWorkflowId = "delete-files" * This workflow deletes one or more files. It's used by the * [Delete File Upload Admin API Route](https://docs.medusajs.com/api/admin#uploads_deleteuploadsid). * - * The [File Module Provider](https://docs.medusajs.com/resources/architectural-modules/file) installed + * The [File Module Provider](https://docs.medusajs.com/resources/infrastructure-modules/file) installed * in your application will be used to delete the file from storage. * * You can use this workflow within your customizations or your own custom workflows, allowing you to diff --git a/packages/core/core-flows/src/file/workflows/upload-files.ts b/packages/core/core-flows/src/file/workflows/upload-files.ts index 085d6081d8..55a5f88dee 100644 --- a/packages/core/core-flows/src/file/workflows/upload-files.ts +++ b/packages/core/core-flows/src/file/workflows/upload-files.ts @@ -44,7 +44,7 @@ export type UploadFilesWorkflowInput = { export const uploadFilesWorkflowId = "upload-files" /** * This workflow uploads one or more files using the installed - * [File Module Provider](https://docs.medusajs.com/resources/architectural-modules/file). The workflow is used by the + * [File Module Provider](https://docs.medusajs.com/resources/infrastructure-modules/file). The workflow is used by the * [Upload Files Admin API Route](https://docs.medusajs.com/api/admin#uploads_postuploads). * * You can use this workflow within your customizations or your own custom workflows, allowing you to diff --git a/packages/core/core-flows/src/notification/steps/notify-on-failure.ts b/packages/core/core-flows/src/notification/steps/notify-on-failure.ts index e760425985..57ae2b9e05 100644 --- a/packages/core/core-flows/src/notification/steps/notify-on-failure.ts +++ b/packages/core/core-flows/src/notification/steps/notify-on-failure.ts @@ -13,7 +13,7 @@ export type NotifyOnFailureStepInput = { to: string /** * The channel to send the notification through. For example, `email`. - * A [Notification Module Provider](https://docs.medusajs.com/resources/architectural-modules/notification) + * A [Notification Module Provider](https://docs.medusajs.com/resources/infrastructure-modules/notification) * must be installed and configured for the specified channel. */ channel: string diff --git a/packages/core/core-flows/src/product/steps/generate-product-csv.ts b/packages/core/core-flows/src/product/steps/generate-product-csv.ts index 148f83089b..997409d0f7 100644 --- a/packages/core/core-flows/src/product/steps/generate-product-csv.ts +++ b/packages/core/core-flows/src/product/steps/generate-product-csv.ts @@ -68,11 +68,11 @@ export type GenerateProductCsvStepInput = HttpTypes.AdminProduct[] */ export type GenerateProductCsvStepOutput = { /** - * The ID of the generated file as returned by the [File Module Provider](https://docs.medusajs.com/resources/architectural-modules/file). + * The ID of the generated file as returned by the [File Module Provider](https://docs.medusajs.com/resources/infrastructure-modules/file). */ id: string /** - * The name of the generated file as returned by the [File Module Provider](https://docs.medusajs.com/resources/architectural-modules/file). + * The name of the generated file as returned by the [File Module Provider](https://docs.medusajs.com/resources/infrastructure-modules/file). */ filename: string } @@ -80,7 +80,7 @@ export type GenerateProductCsvStepOutput = { export const generateProductCsvStepId = "generate-product-csv" /** * This step generates a CSV file that exports products. The CSV - * file is created and stored using the registered [File Module Provider](https://docs.medusajs.com/resources/architectural-modules/file). + * file is created and stored using the registered [File Module Provider](https://docs.medusajs.com/resources/infrastructure-modules/file). * * @example * const { data: products } = useQueryGraphStep({ diff --git a/packages/core/core-flows/src/product/workflows/import-products.ts b/packages/core/core-flows/src/product/workflows/import-products.ts index 1c152c9452..87bfd5b1a4 100644 --- a/packages/core/core-flows/src/product/workflows/import-products.ts +++ b/packages/core/core-flows/src/product/workflows/import-products.ts @@ -21,7 +21,7 @@ export const importProductsWorkflowId = "import-products" * You can use this workflow within your custom workflows, allowing you to wrap custom logic around product import. * For example, you can import products from another system. * - * The workflow only starts the import, but you'll have to confirm it using the [Workflow Engine](https://docs.medusajs.com/resources/architectural-modules/workflow-engine). + * The workflow only starts the import, but you'll have to confirm it using the [Workflow Engine](https://docs.medusajs.com/resources/infrastructure-modules/workflow-engine). * The below example shows how to confirm the import. * * @example @@ -40,7 +40,7 @@ export const importProductsWorkflowId = "import-products" * * Notice that the workflow returns a `transaction.transactionId`. You'll use this ID to confirm the import afterwards. * - * You confirm the import using the [Workflow Engine](https://docs.medusajs.com/resources/architectural-modules/workflow-engine). + * You confirm the import using the [Workflow Engine](https://docs.medusajs.com/resources/infrastructure-modules/workflow-engine). * For example, in an API route: * * ```ts workflow={false} diff --git a/packages/core/types/src/common/config-module.ts b/packages/core/types/src/common/config-module.ts index 35aa53c778..3405129610 100644 --- a/packages/core/types/src/common/config-module.ts +++ b/packages/core/types/src/common/config-module.ts @@ -910,7 +910,7 @@ export type ConfigModule = { * * :::note * - * Medusa's commerce modules are configured by default, so only + * Medusa's Commerce Modules are configured by default, so only * add them to this property if you're changing their configurations or adding providers to a module. * * :::