diff --git a/www/apps/resources/app/architectural-modules/cache/in-memory/page.mdx b/www/apps/resources/app/architectural-modules/cache/in-memory/page.mdx index 6ce0277e36..a17130ac61 100644 --- a/www/apps/resources/app/architectural-modules/cache/in-memory/page.mdx +++ b/www/apps/resources/app/architectural-modules/cache/in-memory/page.mdx @@ -25,7 +25,7 @@ The In-Memory Cache Module is installed by default in your application. To install the In-Memory Cache Module, run the following command in the directory of your Medusa application: ```bash npm2yarn -npm install @medusajs/cache-inmemory +npm install @medusajs/cache-inmemory@preview ``` Next, add the module into the `modules` property of the exported object in `medusa-config.js`: diff --git a/www/apps/resources/app/architectural-modules/cache/redis/page.mdx b/www/apps/resources/app/architectural-modules/cache/redis/page.mdx index ad5bd76caa..b7a3aefce5 100644 --- a/www/apps/resources/app/architectural-modules/cache/redis/page.mdx +++ b/www/apps/resources/app/architectural-modules/cache/redis/page.mdx @@ -21,7 +21,7 @@ The Redis Cache Module uses Redis to cache data in your store. In production, it To install Redis Cache Module, run the following command in the directory of your Medusa application: ```bash npm2yarn -npm install @medusajs/cache-redis +npm install @medusajs/cache-redis@preview ``` Next, add the module into the `modules` property of the exported object in `medusa-config.js`: diff --git a/www/apps/resources/app/architectural-modules/event/local/page.mdx b/www/apps/resources/app/architectural-modules/event/local/page.mdx index 3bfea54cfe..091c85fa3c 100644 --- a/www/apps/resources/app/architectural-modules/event/local/page.mdx +++ b/www/apps/resources/app/architectural-modules/event/local/page.mdx @@ -23,7 +23,7 @@ The Local Event Bus Module is installed by default in your application. To install Local Event Bus Module, run the following command in the directory of your Medusa application: ```bash npm2yarn -npm install @medusajs/event-local +npm install @medusajs/event-local@preview ``` Next, add the module into the `modules` property of the exported object in `medusa-config.js`: diff --git a/www/apps/resources/app/architectural-modules/event/redis/page.mdx b/www/apps/resources/app/architectural-modules/event/redis/page.mdx index 8d9b1af07c..a2544fa51e 100644 --- a/www/apps/resources/app/architectural-modules/event/redis/page.mdx +++ b/www/apps/resources/app/architectural-modules/event/redis/page.mdx @@ -25,7 +25,7 @@ In production, it's recommended to use this module. To install Redis Event Bus Module, run the following command in the directory of your Medusa application: ```bash npm2yarn -npm install @medusajs/event-redis +npm install @medusajs/event-redis@preview ``` Next, add the module into the `modules` property of the exported object in `medusa-config.js`: diff --git a/www/apps/resources/app/architectural-modules/file/local/page.mdx b/www/apps/resources/app/architectural-modules/file/local/page.mdx index 460027219f..7874a6134e 100644 --- a/www/apps/resources/app/architectural-modules/file/local/page.mdx +++ b/www/apps/resources/app/architectural-modules/file/local/page.mdx @@ -27,7 +27,7 @@ The Local File Module is installed by default in your application. To install the Local File Module Provider, run the following command in the directory of your Medusa application: ```bash npm2yarn -npm install @medusajs/file-local-next +npm install @medusajs/file-local-next@preview ``` Next, add the module into the `providers` array of the File Module: diff --git a/www/apps/resources/app/architectural-modules/file/s3/page.mdx b/www/apps/resources/app/architectural-modules/file/s3/page.mdx index 90814616f5..c2d09ed7e7 100644 --- a/www/apps/resources/app/architectural-modules/file/s3/page.mdx +++ b/www/apps/resources/app/architectural-modules/file/s3/page.mdx @@ -73,7 +73,7 @@ The S3 File Module Provider integrates Amazon S3 and services following a compat To install the S3 File Module Provider, run the following command in the directory of your Medusa application: ```bash npm2yarn -npm install @medusajs/file-s3 +npm install @medusajs/file-s3@preview ``` Next, add the module into the `providers` array of the File Module: diff --git a/www/apps/resources/app/architectural-modules/notification/local/page.mdx b/www/apps/resources/app/architectural-modules/notification/local/page.mdx index 98ab18d4ea..e69d9dfd46 100644 --- a/www/apps/resources/app/architectural-modules/notification/local/page.mdx +++ b/www/apps/resources/app/architectural-modules/notification/local/page.mdx @@ -21,7 +21,7 @@ The Local Notification Module Provider is installed by default in your applicati To install the Local Notification Module Provider, run the following command in the directory of your Medusa application: ```bash npm2yarn -npm install @medusajs/notification-local +npm install @medusajs/notification-local@preview ``` Next, add the module into the `providers` array of the Notification Module: diff --git a/www/apps/resources/app/architectural-modules/notification/sendgrid/page.mdx b/www/apps/resources/app/architectural-modules/notification/sendgrid/page.mdx index 252e2890d3..1264222d08 100644 --- a/www/apps/resources/app/architectural-modules/notification/sendgrid/page.mdx +++ b/www/apps/resources/app/architectural-modules/notification/sendgrid/page.mdx @@ -23,7 +23,7 @@ The SendGrid Notification Module Provider integrates [SendGrid](https://sendgrid To install the SendGrid Notification Module Provider, run the following command in the directory of your Medusa application: ```bash npm2yarn -npm install @medusajs/notification-sendgrid +npm install @medusajs/notification-sendgrid@preview ``` Next, add the module into the `providers` array of the Notification Module: diff --git a/www/apps/resources/app/architectural-modules/workflow-engine/in-memory/page.mdx b/www/apps/resources/app/architectural-modules/workflow-engine/in-memory/page.mdx index cc0873be6c..3eaaac28d1 100644 --- a/www/apps/resources/app/architectural-modules/workflow-engine/in-memory/page.mdx +++ b/www/apps/resources/app/architectural-modules/workflow-engine/in-memory/page.mdx @@ -25,7 +25,7 @@ The In-Memory Workflow Engine Module is installed by default in your application To install the In-Memory Workflow Engine Module, run the following command in the directory of your Medusa application: ```bash npm2yarn -npm install @medusajs/workflow-engine-inmemory +npm install @medusajs/workflow-engine-inmemory@preview ``` Next, add the module into the `modules` property of the exported object in `medusa-config.js`: diff --git a/www/apps/resources/app/architectural-modules/workflow-engine/redis/page.mdx b/www/apps/resources/app/architectural-modules/workflow-engine/redis/page.mdx index 64383890c1..a876db5042 100644 --- a/www/apps/resources/app/architectural-modules/workflow-engine/redis/page.mdx +++ b/www/apps/resources/app/architectural-modules/workflow-engine/redis/page.mdx @@ -21,7 +21,7 @@ The Redis Workflow Engine Module uses Redis to track workflow executions and han To install Redis Workflow Engine Module, run the following command in the directory of your Medusa application: ```bash npm2yarn -npm install @medusajs/workflow-engine-redis +npm install @medusajs/workflow-engine-redis@preview ``` Next, add the module into the `modules` property of the exported object in `medusa-config.js`: diff --git a/www/apps/resources/app/commerce-modules/payment/payment-provider/stripe/page.mdx b/www/apps/resources/app/commerce-modules/payment/payment-provider/stripe/page.mdx index b0c3d06515..4d77248ee3 100644 --- a/www/apps/resources/app/commerce-modules/payment/payment-provider/stripe/page.mdx +++ b/www/apps/resources/app/commerce-modules/payment/payment-provider/stripe/page.mdx @@ -33,7 +33,7 @@ These features are also available in a safe test environment, allowing for a con To install the Stripe Module Provider, run the following command in the directory of your Medusa application: ```bash npm2yarn -npm install @medusajs/payment-stripe +npm install @medusajs/payment-stripe@preview ``` Next, add the module to the array of providers passed to the Payment Module: