docs: document scheduled jobs interval (#13350)
This commit is contained in:
@@ -0,0 +1,118 @@
|
||||
import { Table } from "docs-ui"
|
||||
|
||||
export const metadata = {
|
||||
title: `${pageNumber} Set Interval for Scheduled Jobs`,
|
||||
}
|
||||
|
||||
# {metadata.title}
|
||||
|
||||
In this chapter, you'll learn the difference between using intervals and crons for scheduled jobs, and how to use intervals.
|
||||
|
||||
## What is a Scheduled Job Interval?
|
||||
|
||||
A scheduled job interval is a specific duration that must pass between the execution of scheduled jobs. The timer starts when the Medusa application starts, and it resets every time a job is executed.
|
||||
|
||||
For example, if you have a scheduled job that runs on an interval of 5 minutes, the job will run after 5 minutes from application startup. Then, it will run again 5 minutes after the last execution, and so on.
|
||||
|
||||
## How to Set an Interval for a Scheduled Job?
|
||||
|
||||
To set an interval for a scheduled job, pass in the scheduled job configurations object the `schedule.interval` property with the desired duration.
|
||||
|
||||
For example:
|
||||
|
||||
export const highlights = [
|
||||
["12", "interval", "Set the interval in milliseconds"]
|
||||
]
|
||||
|
||||
```ts title="src/jobs/hello-world.ts" highlights={highlights}
|
||||
import { MedusaContainer } from "@medusajs/framework/types"
|
||||
|
||||
export default async function greetingJob(container: MedusaContainer) {
|
||||
const logger = container.resolve("logger")
|
||||
|
||||
logger.info("Greeting!")
|
||||
}
|
||||
|
||||
export const config = {
|
||||
name: "greeting-every-minute",
|
||||
schedule: {
|
||||
interval: 60000 // 1 minute
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
The `interval` property accepts a number indicating the duration in milliseconds.
|
||||
|
||||
So, the above scheduled job will run every minute, starting one minute after the Medusa application starts.
|
||||
|
||||
### Test the Scheduled Job Interval
|
||||
|
||||
To test out your scheduled job, start the Medusa application:
|
||||
|
||||
```bash npm2yarn
|
||||
npm run dev
|
||||
```
|
||||
|
||||
After a minute, the following message will be logged to the terminal:
|
||||
|
||||
```bash
|
||||
info: Greeting!
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Scheduled Job Interval vs. Scheduled Job Cron
|
||||
|
||||
In the [Scheduled Jobs](../page.mdx) chapter, you learned about using the `schedule` configuration to set the schedule for a job using a cron expression. For example, `*/5 * * * *` would run a job every 5 minutes.
|
||||
|
||||
<Table>
|
||||
<Table.Header>
|
||||
<Table.Row>
|
||||
<Table.HeaderCell>
|
||||
Comparison Aspect
|
||||
</Table.HeaderCell>
|
||||
<Table.HeaderCell>
|
||||
Cron Expression
|
||||
</Table.HeaderCell>
|
||||
<Table.HeaderCell>
|
||||
Interval
|
||||
</Table.HeaderCell>
|
||||
</Table.Row>
|
||||
</Table.Header>
|
||||
<Table.Body>
|
||||
<Table.Row>
|
||||
<Table.Cell>
|
||||
Execution Timing
|
||||
</Table.Cell>
|
||||
<Table.Cell>
|
||||
Specific times of the day. For example, at midnight.
|
||||
</Table.Cell>
|
||||
<Table.Cell>
|
||||
After a specific duration between job executions. For example, every 5 minutes.
|
||||
</Table.Cell>
|
||||
</Table.Row>
|
||||
<Table.Row>
|
||||
<Table.Cell>
|
||||
Execution Consistency
|
||||
</Table.Cell>
|
||||
<Table.Cell>
|
||||
May not run if the specified time is reached and the system is busy
|
||||
</Table.Cell>
|
||||
<Table.Cell>
|
||||
Will run after the specified interval, even if the system is busy
|
||||
</Table.Cell>
|
||||
</Table.Row>
|
||||
</Table.Body>
|
||||
</Table>
|
||||
|
||||
While using a cron expression is ideal to ensure that the job runs at specific times of the day, the scheduled job will only run when the specified time is reached. So, if the events system is busy when the specified time is reached, the job will not run until the next scheduled time.
|
||||
|
||||
For example, if you have a job scheduled with a cron expression to run every 5 minutes, but the system is under heavy load, it may miss the 5-minute mark and not execute the job until the next scheduled time.
|
||||
|
||||
In contrast, a scheduled job interval is defined by a specific duration between job executions, regardless of the exact time they are scheduled to run. So, even if the system is busy, the job will still run after the specified interval has passed since the last execution.
|
||||
|
||||
### When to Use Intervals for Scheduled Jobs
|
||||
|
||||
If your scheduled job must run consistently but not at specific times of the day, use an **interval**. This ensures that the job runs after a defined duration, regardless of the system's state.
|
||||
|
||||
If your scheduled job must be executed at specific times of the day, use a cron **expression**. This allows for precise control over when the job is executed, but may result in missed executions if the system is under heavy load.
|
||||
@@ -128,5 +128,6 @@ export const generatedEditDates = {
|
||||
"app/learn/introduction/from-v1-to-v2/page.mdx": "2025-07-30T08:13:48.592Z",
|
||||
"app/learn/debugging-and-testing/debug-workflows/page.mdx": "2025-07-30T13:45:14.117Z",
|
||||
"app/learn/fundamentals/data-models/json-properties/page.mdx": "2025-07-31T14:25:01.268Z",
|
||||
"app/learn/debugging-and-testing/logging/custom-logger/page.mdx": "2025-08-28T15:37:07.328Z"
|
||||
"app/learn/debugging-and-testing/logging/custom-logger/page.mdx": "2025-08-28T15:37:07.328Z",
|
||||
"app/learn/fundamentals/scheduled-jobs/interval/page.mdx": "2025-08-29T11:45:01.882Z"
|
||||
}
|
||||
@@ -916,6 +916,16 @@ export const generatedSidebars = [
|
||||
"children": [],
|
||||
"chapterTitle": "3.9.1. Execution Number",
|
||||
"number": "3.9.1."
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/learn/fundamentals/scheduled-jobs/interval",
|
||||
"title": "Set Interval",
|
||||
"children": [],
|
||||
"chapterTitle": "3.9.2. Set Interval",
|
||||
"number": "3.9.2."
|
||||
}
|
||||
],
|
||||
"chapterTitle": "3.9. Scheduled Jobs",
|
||||
|
||||
@@ -17867,6 +17867,81 @@ Medusa tracks the number of executions for a scheduled job during its current ru
|
||||
So, if you restart the Medusa application, the scheduled job will be executed again until it reaches the number of executions specified.
|
||||
|
||||
|
||||
# Set Interval for Scheduled Jobs
|
||||
|
||||
In this chapter, you'll learn the difference between using intervals and crons for scheduled jobs, and how to use intervals.
|
||||
|
||||
## What is a Scheduled Job Interval?
|
||||
|
||||
A scheduled job interval is a specific duration that must pass between the execution of scheduled jobs. The timer starts when the Medusa application starts, and it resets every time a job is executed.
|
||||
|
||||
For example, if you have a scheduled job that runs on an interval of 5 minutes, the job will run after 5 minutes from application startup. Then, it will run again 5 minutes after the last execution, and so on.
|
||||
|
||||
## How to Set an Interval for a Scheduled Job?
|
||||
|
||||
To set an interval for a scheduled job, pass in the scheduled job configurations object the `schedule.interval` property with the desired duration.
|
||||
|
||||
For example:
|
||||
|
||||
```ts title="src/jobs/hello-world.ts" highlights={highlights}
|
||||
import { MedusaContainer } from "@medusajs/framework/types"
|
||||
|
||||
export default async function greetingJob(container: MedusaContainer) {
|
||||
const logger = container.resolve("logger")
|
||||
|
||||
logger.info("Greeting!")
|
||||
}
|
||||
|
||||
export const config = {
|
||||
name: "greeting-every-minute",
|
||||
schedule: {
|
||||
interval: 60000 // 1 minute
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
The `interval` property accepts a number indicating the duration in milliseconds.
|
||||
|
||||
So, the above scheduled job will run every minute, starting one minute after the Medusa application starts.
|
||||
|
||||
### Test the Scheduled Job Interval
|
||||
|
||||
To test out your scheduled job, start the Medusa application:
|
||||
|
||||
```bash npm2yarn
|
||||
npm run dev
|
||||
```
|
||||
|
||||
After a minute, the following message will be logged to the terminal:
|
||||
|
||||
```bash
|
||||
info: Greeting!
|
||||
```
|
||||
|
||||
***
|
||||
|
||||
## Scheduled Job Interval vs. Scheduled Job Cron
|
||||
|
||||
In the [Scheduled Jobs](https://docs.medusajs.com/learn/fundamentals/scheduled-jobs/index.html.md) chapter, you learned about using the `schedule` configuration to set the schedule for a job using a cron expression. For example, `*/5 * * * *` would run a job every 5 minutes.
|
||||
|
||||
|Comparison Aspect|Cron Expression|Interval|
|
||||
|---|---|---|
|
||||
|Execution Timing|Specific times of the day. For example, at midnight.|After a specific duration between job executions. For example, every 5 minutes.|
|
||||
|Execution Consistency|May not run if the specified time is reached and the system is busy|Will run after the specified interval, even if the system is busy|
|
||||
|
||||
While using a cron expression is ideal to ensure that the job runs at specific times of the day, the scheduled job will only run when the specified time is reached. So, if the events system is busy when the specified time is reached, the job will not run until the next scheduled time.
|
||||
|
||||
For example, if you have a job scheduled with a cron expression to run every 5 minutes, but the system is under heavy load, it may miss the 5-minute mark and not execute the job until the next scheduled time.
|
||||
|
||||
In contrast, a scheduled job interval is defined by a specific duration between job executions, regardless of the exact time they are scheduled to run. So, even if the system is busy, the job will still run after the specified interval has passed since the last execution.
|
||||
|
||||
### When to Use Intervals for Scheduled Jobs
|
||||
|
||||
If your scheduled job must run consistently but not at specific times of the day, use an **interval**. This ensures that the job runs after a defined duration, regardless of the system's state.
|
||||
|
||||
If your scheduled job must be executed at specific times of the day, use a cron **expression**. This allows for precise control over when the job is executed, but may result in missed executions if the system is under heavy load.
|
||||
|
||||
|
||||
# Scheduled Jobs
|
||||
|
||||
In this chapter, you’ll learn about scheduled jobs and how to use them.
|
||||
@@ -41160,6 +41235,7 @@ Connection to Redis in module 'workflow-engine-redis' established
|
||||
- [fetchShippingOptionForOrderWorkflow](https://docs.medusajs.com/references/medusa-workflows/fetchShippingOptionForOrderWorkflow/index.html.md)
|
||||
- [getOrderDetailWorkflow](https://docs.medusajs.com/references/medusa-workflows/getOrderDetailWorkflow/index.html.md)
|
||||
- [getOrdersListWorkflow](https://docs.medusajs.com/references/medusa-workflows/getOrdersListWorkflow/index.html.md)
|
||||
- [listShippingOptionsForOrderWorkflow](https://docs.medusajs.com/references/core_flows/Order/Workflows_Order/functions/core_flows.Order.Workflows_Order.listShippingOptionsForOrderWorkflow/index.html.md)
|
||||
- [markOrderFulfillmentAsDeliveredWorkflow](https://docs.medusajs.com/references/medusa-workflows/markOrderFulfillmentAsDeliveredWorkflow/index.html.md)
|
||||
- [markPaymentCollectionAsPaid](https://docs.medusajs.com/references/medusa-workflows/markPaymentCollectionAsPaid/index.html.md)
|
||||
- [maybeRefreshShippingMethodsWorkflow](https://docs.medusajs.com/references/medusa-workflows/maybeRefreshShippingMethodsWorkflow/index.html.md)
|
||||
@@ -41316,6 +41392,11 @@ Connection to Redis in module 'workflow-engine-redis' established
|
||||
- [deleteSalesChannelsWorkflow](https://docs.medusajs.com/references/medusa-workflows/deleteSalesChannelsWorkflow/index.html.md)
|
||||
- [linkProductsToSalesChannelWorkflow](https://docs.medusajs.com/references/medusa-workflows/linkProductsToSalesChannelWorkflow/index.html.md)
|
||||
- [updateSalesChannelsWorkflow](https://docs.medusajs.com/references/medusa-workflows/updateSalesChannelsWorkflow/index.html.md)
|
||||
- [createViewConfigurationWorkflow](https://docs.medusajs.com/references/core_flows/Settings/Workflows_Settings/functions/core_flows.Settings.Workflows_Settings.createViewConfigurationWorkflow/index.html.md)
|
||||
- [updateViewConfigurationWorkflow](https://docs.medusajs.com/references/core_flows/Settings/Workflows_Settings/functions/core_flows.Settings.Workflows_Settings.updateViewConfigurationWorkflow/index.html.md)
|
||||
- [createShippingOptionTypesWorkflow](https://docs.medusajs.com/references/core_flows/Shipping_Options/Workflows_Shipping_Options/functions/core_flows.Shipping_Options.Workflows_Shipping_Options.createShippingOptionTypesWorkflow/index.html.md)
|
||||
- [deleteShippingOptionTypesWorkflow](https://docs.medusajs.com/references/core_flows/Shipping_Options/Workflows_Shipping_Options/functions/core_flows.Shipping_Options.Workflows_Shipping_Options.deleteShippingOptionTypesWorkflow/index.html.md)
|
||||
- [updateShippingOptionTypesWorkflow](https://docs.medusajs.com/references/core_flows/Shipping_Options/Workflows_Shipping_Options/functions/core_flows.Shipping_Options.Workflows_Shipping_Options.updateShippingOptionTypesWorkflow/index.html.md)
|
||||
- [deleteShippingProfileWorkflow](https://docs.medusajs.com/references/medusa-workflows/deleteShippingProfileWorkflow/index.html.md)
|
||||
- [validateStepShippingProfileDelete](https://docs.medusajs.com/references/medusa-workflows/validateStepShippingProfileDelete/index.html.md)
|
||||
- [createLocationFulfillmentSetWorkflow](https://docs.medusajs.com/references/medusa-workflows/createLocationFulfillmentSetWorkflow/index.html.md)
|
||||
@@ -41587,7 +41668,13 @@ Connection to Redis in module 'workflow-engine-redis' established
|
||||
- [detachLocationsFromSalesChannelsStep](https://docs.medusajs.com/references/medusa-workflows/steps/detachLocationsFromSalesChannelsStep/index.html.md)
|
||||
- [detachProductsFromSalesChannelsStep](https://docs.medusajs.com/references/medusa-workflows/steps/detachProductsFromSalesChannelsStep/index.html.md)
|
||||
- [updateSalesChannelsStep](https://docs.medusajs.com/references/medusa-workflows/steps/updateSalesChannelsStep/index.html.md)
|
||||
- [createViewConfigurationStep](https://docs.medusajs.com/references/core_flows/Settings/Steps_Settings/functions/core_flows.Settings.Steps_Settings.createViewConfigurationStep/index.html.md)
|
||||
- [setActiveViewConfigurationStep](https://docs.medusajs.com/references/core_flows/Settings/Steps_Settings/functions/core_flows.Settings.Steps_Settings.setActiveViewConfigurationStep/index.html.md)
|
||||
- [updateViewConfigurationStep](https://docs.medusajs.com/references/core_flows/Settings/Steps_Settings/functions/core_flows.Settings.Steps_Settings.updateViewConfigurationStep/index.html.md)
|
||||
- [createShippingOptionTypesStep](https://docs.medusajs.com/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.createShippingOptionTypesStep/index.html.md)
|
||||
- [deleteShippingOptionTypesStep](https://docs.medusajs.com/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.deleteShippingOptionTypesStep/index.html.md)
|
||||
- [listShippingOptionsForContextStep](https://docs.medusajs.com/references/medusa-workflows/steps/listShippingOptionsForContextStep/index.html.md)
|
||||
- [updateShippingOptionTypesStep](https://docs.medusajs.com/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.updateShippingOptionTypesStep/index.html.md)
|
||||
- [deleteShippingProfilesStep](https://docs.medusajs.com/references/medusa-workflows/steps/deleteShippingProfilesStep/index.html.md)
|
||||
- [createStockLocations](https://docs.medusajs.com/references/medusa-workflows/steps/createStockLocations/index.html.md)
|
||||
- [deleteStockLocationsStep](https://docs.medusajs.com/references/medusa-workflows/steps/deleteStockLocationsStep/index.html.md)
|
||||
@@ -43007,6 +43094,76 @@ The following workflows emit this event when they're executed. These workflows a
|
||||
|
||||
***
|
||||
|
||||
## Shipping Option Type Events
|
||||
|
||||
### Summary
|
||||
|
||||
|Event|Description|
|
||||
|---|---|
|
||||
|shipping-option-type.updated|Emitted when shipping option types are updated.|
|
||||
|shipping-option-type.created|Emitted when shipping option types are created.|
|
||||
|shipping-option-type.deleted|Emitted when shipping option types are deleted.|
|
||||
|
||||
### shipping-option-type.updated

|
||||
|
||||
Emitted when shipping option types are updated.
|
||||
|
||||
#### Payload
|
||||
|
||||
```ts
|
||||
[{
|
||||
id, // The ID of the shipping option type
|
||||
}]
|
||||
```
|
||||
|
||||
#### Workflows Emitting this Event
|
||||
|
||||
The following workflows emit this event when they're executed. These workflows are executed by Medusa's API routes. You can also view the events emitted by API routes in the [Store](https://docs.medusajs.com/api/store) and [Admin](https://docs.medusajs.com/api/admin) API references.
|
||||
|
||||
- [updateShippingOptionTypesWorkflow](https://docs.medusajs.com/references/medusa-workflows/updateShippingOptionTypesWorkflow/index.html.md)
|
||||
|
||||
***
|
||||
|
||||
### shipping-option-type.created

|
||||
|
||||
Emitted when shipping option types are created.
|
||||
|
||||
#### Payload
|
||||
|
||||
```ts
|
||||
[{
|
||||
id, // The ID of the shipping option type
|
||||
}]
|
||||
```
|
||||
|
||||
#### Workflows Emitting this Event
|
||||
|
||||
The following workflows emit this event when they're executed. These workflows are executed by Medusa's API routes. You can also view the events emitted by API routes in the [Store](https://docs.medusajs.com/api/store) and [Admin](https://docs.medusajs.com/api/admin) API references.
|
||||
|
||||
- [createShippingOptionTypesWorkflow](https://docs.medusajs.com/references/medusa-workflows/createShippingOptionTypesWorkflow/index.html.md)
|
||||
|
||||
***
|
||||
|
||||
### shipping-option-type.deleted

|
||||
|
||||
Emitted when shipping option types are deleted.
|
||||
|
||||
#### Payload
|
||||
|
||||
```ts
|
||||
[{
|
||||
id, // The ID of the shipping option type
|
||||
}]
|
||||
```
|
||||
|
||||
#### Workflows Emitting this Event
|
||||
|
||||
The following workflows emit this event when they're executed. These workflows are executed by Medusa's API routes. You can also view the events emitted by API routes in the [Store](https://docs.medusajs.com/api/store) and [Admin](https://docs.medusajs.com/api/admin) API references.
|
||||
|
||||
- [deleteShippingOptionTypesWorkflow](https://docs.medusajs.com/references/medusa-workflows/deleteShippingOptionTypesWorkflow/index.html.md)
|
||||
|
||||
***
|
||||
|
||||
## User Events
|
||||
|
||||
### Summary
|
||||
@@ -91021,6 +91178,7 @@ To learn more about the commerce features that Medusa provides, check out Medusa
|
||||
- [list](https://docs.medusajs.com/references/js_sdk/admin/Order/methods/js_sdk.admin.Order.list/index.html.md)
|
||||
- [listChanges](https://docs.medusajs.com/references/js_sdk/admin/Order/methods/js_sdk.admin.Order.listChanges/index.html.md)
|
||||
- [listLineItems](https://docs.medusajs.com/references/js_sdk/admin/Order/methods/js_sdk.admin.Order.listLineItems/index.html.md)
|
||||
- [listShippingOptions](https://docs.medusajs.com/references/js_sdk/admin/Order/methods/js_sdk.admin.Order.listShippingOptions/index.html.md)
|
||||
- [markAsDelivered](https://docs.medusajs.com/references/js_sdk/admin/Order/methods/js_sdk.admin.Order.markAsDelivered/index.html.md)
|
||||
- [requestTransfer](https://docs.medusajs.com/references/js_sdk/admin/Order/methods/js_sdk.admin.Order.requestTransfer/index.html.md)
|
||||
- [retrieve](https://docs.medusajs.com/references/js_sdk/admin/Order/methods/js_sdk.admin.Order.retrieve/index.html.md)
|
||||
@@ -91162,6 +91320,11 @@ To learn more about the commerce features that Medusa provides, check out Medusa
|
||||
- [retrieve](https://docs.medusajs.com/references/js_sdk/admin/ShippingOption/methods/js_sdk.admin.ShippingOption.retrieve/index.html.md)
|
||||
- [update](https://docs.medusajs.com/references/js_sdk/admin/ShippingOption/methods/js_sdk.admin.ShippingOption.update/index.html.md)
|
||||
- [updateRules](https://docs.medusajs.com/references/js_sdk/admin/ShippingOption/methods/js_sdk.admin.ShippingOption.updateRules/index.html.md)
|
||||
- [create](https://docs.medusajs.com/references/js_sdk/admin/ShippingOptionType/methods/js_sdk.admin.ShippingOptionType.create/index.html.md)
|
||||
- [delete](https://docs.medusajs.com/references/js_sdk/admin/ShippingOptionType/methods/js_sdk.admin.ShippingOptionType.delete/index.html.md)
|
||||
- [list](https://docs.medusajs.com/references/js_sdk/admin/ShippingOptionType/methods/js_sdk.admin.ShippingOptionType.list/index.html.md)
|
||||
- [retrieve](https://docs.medusajs.com/references/js_sdk/admin/ShippingOptionType/methods/js_sdk.admin.ShippingOptionType.retrieve/index.html.md)
|
||||
- [update](https://docs.medusajs.com/references/js_sdk/admin/ShippingOptionType/methods/js_sdk.admin.ShippingOptionType.update/index.html.md)
|
||||
- [create](https://docs.medusajs.com/references/js_sdk/admin/ShippingProfile/methods/js_sdk.admin.ShippingProfile.create/index.html.md)
|
||||
- [delete](https://docs.medusajs.com/references/js_sdk/admin/ShippingProfile/methods/js_sdk.admin.ShippingProfile.delete/index.html.md)
|
||||
- [list](https://docs.medusajs.com/references/js_sdk/admin/ShippingProfile/methods/js_sdk.admin.ShippingProfile.list/index.html.md)
|
||||
@@ -94721,6 +94884,7 @@ Download this reference as an OpenApi YAML file. You can import this file to too
|
||||
- [DELETE /admin/exchanges/{id}/outbound/shipping-method/{action_id}](https://docs.medusajs.com/api/admin#exchanges_deleteexchangesidoutboundshippingmethodaction_id)
|
||||
- [POST /admin/exchanges/{id}/request](https://docs.medusajs.com/api/admin#exchanges_postexchangesidrequest)
|
||||
- [DELETE /admin/exchanges/{id}/request](https://docs.medusajs.com/api/admin#exchanges_deleteexchangesidrequest)
|
||||
- [GET /admin/feature-flags](https://docs.medusajs.com/api/admin#feature-flags_getfeatureflags)
|
||||
- [GET /admin/fulfillment-providers](https://docs.medusajs.com/api/admin#fulfillment-providers_getfulfillmentproviders)
|
||||
- [GET /admin/fulfillment-providers/{id}/options](https://docs.medusajs.com/api/admin#fulfillment-providers_getfulfillmentprovidersidoptions)
|
||||
- [DELETE /admin/fulfillment-sets/{id}](https://docs.medusajs.com/api/admin#fulfillment-sets_deletefulfillmentsetsid)
|
||||
@@ -94781,6 +94945,7 @@ Download this reference as an OpenApi YAML file. You can import this file to too
|
||||
- [POST /admin/orders/{id}/fulfillments/{fulfillment_id}/shipments](https://docs.medusajs.com/api/admin#orders_postordersidfulfillmentsfulfillment_idshipments)
|
||||
- [GET /admin/orders/{id}/line-items](https://docs.medusajs.com/api/admin#orders_getordersidlineitems)
|
||||
- [GET /admin/orders/{id}/preview](https://docs.medusajs.com/api/admin#orders_getordersidpreview)
|
||||
- [GET /admin/orders/{id}/shipping-options](https://docs.medusajs.com/api/admin#orders_getordersidshippingoptions)
|
||||
- [POST /admin/orders/{id}/transfer](https://docs.medusajs.com/api/admin#orders_postordersidtransfer)
|
||||
- [POST /admin/orders/{id}/transfer/cancel](https://docs.medusajs.com/api/admin#orders_postordersidtransfercancel)
|
||||
- [POST /admin/payment-collections](https://docs.medusajs.com/api/admin#payment-collections_postpaymentcollections)
|
||||
@@ -94906,6 +95071,11 @@ Download this reference as an OpenApi YAML file. You can import this file to too
|
||||
- [POST /admin/sales-channels/{id}](https://docs.medusajs.com/api/admin#sales-channels_postsaleschannelsid)
|
||||
- [DELETE /admin/sales-channels/{id}](https://docs.medusajs.com/api/admin#sales-channels_deletesaleschannelsid)
|
||||
- [POST /admin/sales-channels/{id}/products](https://docs.medusajs.com/api/admin#sales-channels_postsaleschannelsidproducts)
|
||||
- [GET /admin/shipping-option-types](https://docs.medusajs.com/api/admin#shipping-option-types_getshippingoptiontypes)
|
||||
- [POST /admin/shipping-option-types](https://docs.medusajs.com/api/admin#shipping-option-types_postshippingoptiontypes)
|
||||
- [GET /admin/shipping-option-types/{id}](https://docs.medusajs.com/api/admin#shipping-option-types_getshippingoptiontypesid)
|
||||
- [POST /admin/shipping-option-types/{id}](https://docs.medusajs.com/api/admin#shipping-option-types_postshippingoptiontypesid)
|
||||
- [DELETE /admin/shipping-option-types/{id}](https://docs.medusajs.com/api/admin#shipping-option-types_deleteshippingoptiontypesid)
|
||||
- [GET /admin/shipping-options](https://docs.medusajs.com/api/admin#shipping-options_getshippingoptions)
|
||||
- [POST /admin/shipping-options](https://docs.medusajs.com/api/admin#shipping-options_postshippingoptions)
|
||||
- [GET /admin/shipping-options/{id}](https://docs.medusajs.com/api/admin#shipping-options_getshippingoptionsid)
|
||||
|
||||
@@ -482,6 +482,11 @@ export const sidebars = [
|
||||
path: "/learn/fundamentals/scheduled-jobs/execution-number",
|
||||
title: "Execution Number",
|
||||
},
|
||||
{
|
||||
type: "link",
|
||||
path: "/learn/fundamentals/scheduled-jobs/interval",
|
||||
title: "Set Interval",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
If you have a scheduled job that is configured with a cron expression, it may not run at the expected times sometimes.
|
||||
|
||||
## Why this Happens
|
||||
|
||||
When a scheduled job is configured with a cron expression, it will only run when the specified time is reached.
|
||||
|
||||
So, if the events system is busy and the specified time is missed, the job will not run until the next scheduled time.
|
||||
|
||||
---
|
||||
|
||||
## How to Fix it
|
||||
|
||||
If you prioritize running your scheduled jobs consistently over precise timing, consider using a scheduled job interval instead.
|
||||
|
||||
By using an interval, the job will run after a defined duration, regardless of the system's state.
|
||||
|
||||
For example, to run a scheduled job every minute, you can set the interval to 60000 milliseconds (1 minute):
|
||||
|
||||
```ts highlights={[["12"]]}
|
||||
import { MedusaContainer } from "@medusajs/framework/types"
|
||||
|
||||
export default async function greetingJob(container: MedusaContainer) {
|
||||
const logger = container.resolve("logger")
|
||||
|
||||
logger.info("Greeting!")
|
||||
}
|
||||
|
||||
export const config = {
|
||||
name: "greeting-every-minute",
|
||||
schedule: {
|
||||
interval: 60000 // 1 minute
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Additional Resources
|
||||
|
||||
- [Set Interval for Scheduled Jobs](!docs!/learn/fundamentals/scheduled-jobs/interval)
|
||||
@@ -0,0 +1,9 @@
|
||||
import NotRunning from "../_sections/scheduled-jobs/not-running.mdx"
|
||||
|
||||
export const metadata = {
|
||||
title: `Scheduled Job Not Running on Schedule`,
|
||||
}
|
||||
|
||||
# {metadata.title}
|
||||
|
||||
<NotRunning />
|
||||
@@ -6569,5 +6569,6 @@ export const generatedEditDates = {
|
||||
"app/how-to-tutorials/tutorials/product-builder/page.mdx": "2025-08-14T11:21:18.409Z",
|
||||
"app/integrations/guides/payload/page.mdx": "2025-08-21T05:24:11.537Z",
|
||||
"references/js_sdk/admin/Client/methods/js_sdk.admin.Client.getToken/page.mdx": "2025-08-14T12:59:55.678Z",
|
||||
"app/commerce-modules/order/draft-orders/page.mdx": "2025-08-26T09:21:49.780Z"
|
||||
"app/commerce-modules/order/draft-orders/page.mdx": "2025-08-26T09:21:49.780Z",
|
||||
"app/troubleshooting/scheduled-job-not-running/page.mdx": "2025-08-29T11:32:54.117Z"
|
||||
}
|
||||
@@ -1439,6 +1439,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/app/troubleshooting/s3/page.mdx",
|
||||
"pathname": "/troubleshooting/s3"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/app/troubleshooting/scheduled-job-not-running/page.mdx",
|
||||
"pathname": "/troubleshooting/scheduled-job-not-running"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/app/troubleshooting/storefront-missing-pak/page.mdx",
|
||||
"pathname": "/troubleshooting/storefront-missing-pak"
|
||||
@@ -4883,6 +4887,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/core_flows/Order/Workflows_Order/functions/core_flows.Order.Workflows_Order.getOrdersListWorkflow/page.mdx",
|
||||
"pathname": "/references/core_flows/Order/Workflows_Order/functions/core_flows.Order.Workflows_Order.getOrdersListWorkflow"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Order/Workflows_Order/functions/core_flows.Order.Workflows_Order.listShippingOptionsForOrderWorkflow/page.mdx",
|
||||
"pathname": "/references/core_flows/Order/Workflows_Order/functions/core_flows.Order.Workflows_Order.listShippingOptionsForOrderWorkflow"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Order/Workflows_Order/functions/core_flows.Order.Workflows_Order.markOrderFulfillmentAsDeliveredWorkflow/page.mdx",
|
||||
"pathname": "/references/core_flows/Order/Workflows_Order/functions/core_flows.Order.Workflows_Order.markOrderFulfillmentAsDeliveredWorkflow"
|
||||
@@ -5387,6 +5395,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/core_flows/Order/Workflows_Order/variables/core_flows.Order.Workflows_Order.getOrdersListWorkflowId/page.mdx",
|
||||
"pathname": "/references/core_flows/Order/Workflows_Order/variables/core_flows.Order.Workflows_Order.getOrdersListWorkflowId"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Order/Workflows_Order/variables/core_flows.Order.Workflows_Order.listShippingOptionsForOrderWorkflowId/page.mdx",
|
||||
"pathname": "/references/core_flows/Order/Workflows_Order/variables/core_flows.Order.Workflows_Order.listShippingOptionsForOrderWorkflowId"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Order/Workflows_Order/variables/core_flows.Order.Workflows_Order.markOrderFulfillmentAsDeliveredWorkflowId/page.mdx",
|
||||
"pathname": "/references/core_flows/Order/Workflows_Order/variables/core_flows.Order.Workflows_Order.markOrderFulfillmentAsDeliveredWorkflowId"
|
||||
@@ -6995,18 +7007,118 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/core_flows/Sales_Channel/core_flows.Sales_Channel.Workflows_Sales_Channel/page.mdx",
|
||||
"pathname": "/references/core_flows/Sales_Channel/core_flows.Sales_Channel.Workflows_Sales_Channel"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Settings/Steps_Settings/functions/core_flows.Settings.Steps_Settings.createViewConfigurationStep/page.mdx",
|
||||
"pathname": "/references/core_flows/Settings/Steps_Settings/functions/core_flows.Settings.Steps_Settings.createViewConfigurationStep"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Settings/Steps_Settings/functions/core_flows.Settings.Steps_Settings.setActiveViewConfigurationStep/page.mdx",
|
||||
"pathname": "/references/core_flows/Settings/Steps_Settings/functions/core_flows.Settings.Steps_Settings.setActiveViewConfigurationStep"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Settings/Steps_Settings/functions/core_flows.Settings.Steps_Settings.updateViewConfigurationStep/page.mdx",
|
||||
"pathname": "/references/core_flows/Settings/Steps_Settings/functions/core_flows.Settings.Steps_Settings.updateViewConfigurationStep"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Settings/Steps_Settings/variables/core_flows.Settings.Steps_Settings.createViewConfigurationStepId/page.mdx",
|
||||
"pathname": "/references/core_flows/Settings/Steps_Settings/variables/core_flows.Settings.Steps_Settings.createViewConfigurationStepId"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Settings/Steps_Settings/variables/core_flows.Settings.Steps_Settings.setActiveViewConfigurationStepId/page.mdx",
|
||||
"pathname": "/references/core_flows/Settings/Steps_Settings/variables/core_flows.Settings.Steps_Settings.setActiveViewConfigurationStepId"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Settings/Steps_Settings/variables/core_flows.Settings.Steps_Settings.updateViewConfigurationStepId/page.mdx",
|
||||
"pathname": "/references/core_flows/Settings/Steps_Settings/variables/core_flows.Settings.Steps_Settings.updateViewConfigurationStepId"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Settings/Workflows_Settings/functions/core_flows.Settings.Workflows_Settings.createViewConfigurationWorkflow/page.mdx",
|
||||
"pathname": "/references/core_flows/Settings/Workflows_Settings/functions/core_flows.Settings.Workflows_Settings.createViewConfigurationWorkflow"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Settings/Workflows_Settings/functions/core_flows.Settings.Workflows_Settings.updateViewConfigurationWorkflow/page.mdx",
|
||||
"pathname": "/references/core_flows/Settings/Workflows_Settings/functions/core_flows.Settings.Workflows_Settings.updateViewConfigurationWorkflow"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Settings/Workflows_Settings/variables/core_flows.Settings.Workflows_Settings.createViewConfigurationWorkflowId/page.mdx",
|
||||
"pathname": "/references/core_flows/Settings/Workflows_Settings/variables/core_flows.Settings.Workflows_Settings.createViewConfigurationWorkflowId"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Settings/Workflows_Settings/variables/core_flows.Settings.Workflows_Settings.updateViewConfigurationWorkflowId/page.mdx",
|
||||
"pathname": "/references/core_flows/Settings/Workflows_Settings/variables/core_flows.Settings.Workflows_Settings.updateViewConfigurationWorkflowId"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Settings/core_flows.Settings.Steps_Settings/page.mdx",
|
||||
"pathname": "/references/core_flows/Settings/core_flows.Settings.Steps_Settings"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Settings/core_flows.Settings.Workflows_Settings/page.mdx",
|
||||
"pathname": "/references/core_flows/Settings/core_flows.Settings.Workflows_Settings"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.createShippingOptionTypesStep/page.mdx",
|
||||
"pathname": "/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.createShippingOptionTypesStep"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.deleteShippingOptionTypesStep/page.mdx",
|
||||
"pathname": "/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.deleteShippingOptionTypesStep"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.listShippingOptionsForContextStep/page.mdx",
|
||||
"pathname": "/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.listShippingOptionsForContextStep"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.updateShippingOptionTypesStep/page.mdx",
|
||||
"pathname": "/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.updateShippingOptionTypesStep"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Steps_Shipping_Options/variables/core_flows.Shipping_Options.Steps_Shipping_Options.createShippingOptionTypesStepId/page.mdx",
|
||||
"pathname": "/references/core_flows/Shipping_Options/Steps_Shipping_Options/variables/core_flows.Shipping_Options.Steps_Shipping_Options.createShippingOptionTypesStepId"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Steps_Shipping_Options/variables/core_flows.Shipping_Options.Steps_Shipping_Options.deleteShippingOptionTypesStepId/page.mdx",
|
||||
"pathname": "/references/core_flows/Shipping_Options/Steps_Shipping_Options/variables/core_flows.Shipping_Options.Steps_Shipping_Options.deleteShippingOptionTypesStepId"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Steps_Shipping_Options/variables/core_flows.Shipping_Options.Steps_Shipping_Options.listShippingOptionsForContextStepId/page.mdx",
|
||||
"pathname": "/references/core_flows/Shipping_Options/Steps_Shipping_Options/variables/core_flows.Shipping_Options.Steps_Shipping_Options.listShippingOptionsForContextStepId"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Steps_Shipping_Options/variables/core_flows.Shipping_Options.Steps_Shipping_Options.updateShippingOptionTypesStepId/page.mdx",
|
||||
"pathname": "/references/core_flows/Shipping_Options/Steps_Shipping_Options/variables/core_flows.Shipping_Options.Steps_Shipping_Options.updateShippingOptionTypesStepId"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Workflows_Shipping_Options/functions/core_flows.Shipping_Options.Workflows_Shipping_Options.createShippingOptionTypesWorkflow/page.mdx",
|
||||
"pathname": "/references/core_flows/Shipping_Options/Workflows_Shipping_Options/functions/core_flows.Shipping_Options.Workflows_Shipping_Options.createShippingOptionTypesWorkflow"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Workflows_Shipping_Options/functions/core_flows.Shipping_Options.Workflows_Shipping_Options.deleteShippingOptionTypesWorkflow/page.mdx",
|
||||
"pathname": "/references/core_flows/Shipping_Options/Workflows_Shipping_Options/functions/core_flows.Shipping_Options.Workflows_Shipping_Options.deleteShippingOptionTypesWorkflow"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Workflows_Shipping_Options/functions/core_flows.Shipping_Options.Workflows_Shipping_Options.updateShippingOptionTypesWorkflow/page.mdx",
|
||||
"pathname": "/references/core_flows/Shipping_Options/Workflows_Shipping_Options/functions/core_flows.Shipping_Options.Workflows_Shipping_Options.updateShippingOptionTypesWorkflow"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Workflows_Shipping_Options/variables/core_flows.Shipping_Options.Workflows_Shipping_Options.createShippingOptionTypesWorkflowId/page.mdx",
|
||||
"pathname": "/references/core_flows/Shipping_Options/Workflows_Shipping_Options/variables/core_flows.Shipping_Options.Workflows_Shipping_Options.createShippingOptionTypesWorkflowId"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Workflows_Shipping_Options/variables/core_flows.Shipping_Options.Workflows_Shipping_Options.deleteShippingOptionTypesWorkflowId/page.mdx",
|
||||
"pathname": "/references/core_flows/Shipping_Options/Workflows_Shipping_Options/variables/core_flows.Shipping_Options.Workflows_Shipping_Options.deleteShippingOptionTypesWorkflowId"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Workflows_Shipping_Options/variables/core_flows.Shipping_Options.Workflows_Shipping_Options.updateShippingOptionTypesWorkflowId/page.mdx",
|
||||
"pathname": "/references/core_flows/Shipping_Options/Workflows_Shipping_Options/variables/core_flows.Shipping_Options.Workflows_Shipping_Options.updateShippingOptionTypesWorkflowId"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/core_flows.Shipping_Options.Steps_Shipping_Options/page.mdx",
|
||||
"pathname": "/references/core_flows/Shipping_Options/core_flows.Shipping_Options.Steps_Shipping_Options"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/core_flows.Shipping_Options.Workflows_Shipping_Options/page.mdx",
|
||||
"pathname": "/references/core_flows/Shipping_Options/core_flows.Shipping_Options.Workflows_Shipping_Options"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Profile/Steps_Shipping_Profile/functions/core_flows.Shipping_Profile.Steps_Shipping_Profile.deleteShippingProfilesStep/page.mdx",
|
||||
"pathname": "/references/core_flows/Shipping_Profile/Steps_Shipping_Profile/functions/core_flows.Shipping_Profile.Steps_Shipping_Profile.deleteShippingProfilesStep"
|
||||
@@ -7515,6 +7627,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/core_flows/core_flows.Sales_Channel/page.mdx",
|
||||
"pathname": "/references/core_flows/core_flows.Sales_Channel"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/core_flows.Settings/page.mdx",
|
||||
"pathname": "/references/core_flows/core_flows.Settings"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/core_flows.Shipping_Options/page.mdx",
|
||||
"pathname": "/references/core_flows/core_flows.Shipping_Options"
|
||||
@@ -7759,6 +7875,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/core_flows/interfaces/core_flows.GetPromotionCodesToApplyStepInput/page.mdx",
|
||||
"pathname": "/references/core_flows/interfaces/core_flows.GetPromotionCodesToApplyStepInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/interfaces/core_flows.GetVariantPriceSetsStepBulkInput/page.mdx",
|
||||
"pathname": "/references/core_flows/interfaces/core_flows.GetVariantPriceSetsStepBulkInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/interfaces/core_flows.GetVariantPriceSetsStepInput/page.mdx",
|
||||
"pathname": "/references/core_flows/interfaces/core_flows.GetVariantPriceSetsStepInput"
|
||||
@@ -8395,6 +8515,14 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.CreateShipmentValidateOrderStepInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.CreateShipmentValidateOrderStepInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.CreateShippingOptionTypesStepInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.CreateShippingOptionTypesStepInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.CreateShippingOptionTypesWorkflowInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.CreateShippingOptionTypesWorkflowInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.CreateShippingOptionsPriceSetsStepInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.CreateShippingOptionsPriceSetsStepInput"
|
||||
@@ -8455,6 +8583,14 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.CreateVariantPricingLinkStepInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.CreateVariantPricingLinkStepInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.CreateViewConfigurationStepInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.CreateViewConfigurationStepInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.CreateViewConfigurationWorkflowInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.CreateViewConfigurationWorkflowInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.DeclineTransferOrderRequestValidationStepInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.DeclineTransferOrderRequestValidationStepInput"
|
||||
@@ -8707,6 +8843,14 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.DeleteServiceZonesWorkflowInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.DeleteServiceZonesWorkflowInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.DeleteShippingOptionTypesStepInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.DeleteShippingOptionTypesStepInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.DeleteShippingOptionTypesWorkflowInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.DeleteShippingOptionTypesWorkflowInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.DeleteShippingOptionsStepInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.DeleteShippingOptionsStepInput"
|
||||
@@ -9091,6 +9235,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.SendNotificationsStepInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.SendNotificationsStepInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.SetActiveViewConfigurationStepInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.SetActiveViewConfigurationStepInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.SetAuthAppMetadataStepInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.SetAuthAppMetadataStepInput"
|
||||
@@ -9399,6 +9547,14 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.UpdateShippingMethodsStepInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.UpdateShippingMethodsStepInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.UpdateShippingOptionTypesStepInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.UpdateShippingOptionTypesStepInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.UpdateShippingOptionTypesWorkflowInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.UpdateShippingOptionTypesWorkflowInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.UpdateShippingOptionsWorkflowInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.UpdateShippingOptionsWorkflowInput"
|
||||
@@ -9447,6 +9603,14 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.UpdateTaxRegionsWorkflowOutput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.UpdateTaxRegionsWorkflowOutput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.UpdateViewConfigurationStepInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.UpdateViewConfigurationStepInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.UpdateViewConfigurationWorkflowInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.UpdateViewConfigurationWorkflowInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.UploadFilesStepInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.UploadFilesStepInput"
|
||||
@@ -9467,6 +9631,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.UseQueryGraphStepInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.UseQueryGraphStepInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.UseQueryGraphStepOutput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.UseQueryGraphStepOutput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.ValidateCartShippingOptionsPriceInput/page.mdx",
|
||||
"pathname": "/references/core_flows/types/core_flows.ValidateCartShippingOptionsPriceInput"
|
||||
@@ -10159,6 +10327,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/events/Fulfillment/variables/events.Fulfillment.FulfillmentWorkflowEvents/page.mdx",
|
||||
"pathname": "/references/events/Fulfillment/variables/events.Fulfillment.FulfillmentWorkflowEvents"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/events/Fulfillment/variables/events.Fulfillment.ShippingOptionTypeWorkflowEvents/page.mdx",
|
||||
"pathname": "/references/events/Fulfillment/variables/events.Fulfillment.ShippingOptionTypeWorkflowEvents"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/events/Order/variables/events.Order.OrderEditWorkflowEvents/page.mdx",
|
||||
"pathname": "/references/events/Order/variables/events.Order.OrderEditWorkflowEvents"
|
||||
@@ -10303,6 +10475,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createShippingOptionRules/page.mdx",
|
||||
"pathname": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createShippingOptionRules"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createShippingOptionTypes/page.mdx",
|
||||
"pathname": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createShippingOptionTypes"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createShippingOptions/page.mdx",
|
||||
"pathname": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createShippingOptions"
|
||||
@@ -10427,6 +10603,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreServiceZones/page.mdx",
|
||||
"pathname": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreServiceZones"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreShippingOptionTypes/page.mdx",
|
||||
"pathname": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreShippingOptionTypes"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreShippingOptions/page.mdx",
|
||||
"pathname": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreShippingOptions"
|
||||
@@ -10483,6 +10663,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteServiceZones/page.mdx",
|
||||
"pathname": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteServiceZones"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteShippingOptionTypes/page.mdx",
|
||||
"pathname": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteShippingOptionTypes"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteShippingOptions/page.mdx",
|
||||
"pathname": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteShippingOptions"
|
||||
@@ -10511,6 +10695,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateShippingOptionRules/page.mdx",
|
||||
"pathname": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateShippingOptionRules"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateShippingOptionTypes/page.mdx",
|
||||
"pathname": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateShippingOptionTypes"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateShippingOptions/page.mdx",
|
||||
"pathname": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateShippingOptions"
|
||||
@@ -10523,6 +10711,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.upsertServiceZones/page.mdx",
|
||||
"pathname": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.upsertServiceZones"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.upsertShippingOptionTypes/page.mdx",
|
||||
"pathname": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.upsertShippingOptionTypes"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.upsertShippingOptions/page.mdx",
|
||||
"pathname": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.upsertShippingOptions"
|
||||
@@ -10935,6 +11127,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/fulfillment/interfaces/fulfillment.UpdateShippingOptionRuleDTO/page.mdx",
|
||||
"pathname": "/references/fulfillment/interfaces/fulfillment.UpdateShippingOptionRuleDTO"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/fulfillment/interfaces/fulfillment.UpdateShippingOptionTypeDTO/page.mdx",
|
||||
"pathname": "/references/fulfillment/interfaces/fulfillment.UpdateShippingOptionTypeDTO"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/fulfillment/interfaces/fulfillment.UpdateShippingProfileDTO/page.mdx",
|
||||
"pathname": "/references/fulfillment/interfaces/fulfillment.UpdateShippingProfileDTO"
|
||||
@@ -10951,6 +11147,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/fulfillment/interfaces/fulfillment.UpsertShippingOptionDTO/page.mdx",
|
||||
"pathname": "/references/fulfillment/interfaces/fulfillment.UpsertShippingOptionDTO"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/fulfillment/interfaces/fulfillment.UpsertShippingOptionTypeDTO/page.mdx",
|
||||
"pathname": "/references/fulfillment/interfaces/fulfillment.UpsertShippingOptionTypeDTO"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/fulfillment/interfaces/fulfillment.UpsertShippingProfileDTO/page.mdx",
|
||||
"pathname": "/references/fulfillment/interfaces/fulfillment.UpsertShippingProfileDTO"
|
||||
@@ -11239,6 +11439,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/helper_steps/types/helper_steps.UseQueryGraphStepInput/page.mdx",
|
||||
"pathname": "/references/helper_steps/types/helper_steps.UseQueryGraphStepInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/helper_steps/types/helper_steps.UseQueryGraphStepOutput/page.mdx",
|
||||
"pathname": "/references/helper_steps/types/helper_steps.UseQueryGraphStepOutput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/helper_steps/variables/helper_steps.createEntitiesStepId/page.mdx",
|
||||
"pathname": "/references/helper_steps/variables/helper_steps.createEntitiesStepId"
|
||||
@@ -11787,6 +11991,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/Admin/properties/js_sdk.admin.Admin.shippingOption/page.mdx",
|
||||
"pathname": "/references/js_sdk/admin/Admin/properties/js_sdk.admin.Admin.shippingOption"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/Admin/properties/js_sdk.admin.Admin.shippingOptionType/page.mdx",
|
||||
"pathname": "/references/js_sdk/admin/Admin/properties/js_sdk.admin.Admin.shippingOptionType"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/Admin/properties/js_sdk.admin.Admin.shippingProfile/page.mdx",
|
||||
"pathname": "/references/js_sdk/admin/Admin/properties/js_sdk.admin.Admin.shippingProfile"
|
||||
@@ -12503,6 +12711,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/Order/methods/js_sdk.admin.Order.listLineItems/page.mdx",
|
||||
"pathname": "/references/js_sdk/admin/Order/methods/js_sdk.admin.Order.listLineItems"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/Order/methods/js_sdk.admin.Order.listShippingOptions/page.mdx",
|
||||
"pathname": "/references/js_sdk/admin/Order/methods/js_sdk.admin.Order.listShippingOptions"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/Order/methods/js_sdk.admin.Order.markAsDelivered/page.mdx",
|
||||
"pathname": "/references/js_sdk/admin/Order/methods/js_sdk.admin.Order.markAsDelivered"
|
||||
@@ -13171,6 +13383,30 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/ShippingOption/properties/js_sdk.admin.ShippingOption.client/page.mdx",
|
||||
"pathname": "/references/js_sdk/admin/ShippingOption/properties/js_sdk.admin.ShippingOption.client"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/ShippingOptionType/methods/js_sdk.admin.ShippingOptionType.create/page.mdx",
|
||||
"pathname": "/references/js_sdk/admin/ShippingOptionType/methods/js_sdk.admin.ShippingOptionType.create"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/ShippingOptionType/methods/js_sdk.admin.ShippingOptionType.delete/page.mdx",
|
||||
"pathname": "/references/js_sdk/admin/ShippingOptionType/methods/js_sdk.admin.ShippingOptionType.delete"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/ShippingOptionType/methods/js_sdk.admin.ShippingOptionType.list/page.mdx",
|
||||
"pathname": "/references/js_sdk/admin/ShippingOptionType/methods/js_sdk.admin.ShippingOptionType.list"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/ShippingOptionType/methods/js_sdk.admin.ShippingOptionType.retrieve/page.mdx",
|
||||
"pathname": "/references/js_sdk/admin/ShippingOptionType/methods/js_sdk.admin.ShippingOptionType.retrieve"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/ShippingOptionType/methods/js_sdk.admin.ShippingOptionType.update/page.mdx",
|
||||
"pathname": "/references/js_sdk/admin/ShippingOptionType/methods/js_sdk.admin.ShippingOptionType.update"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/ShippingOptionType/properties/js_sdk.admin.ShippingOptionType.client/page.mdx",
|
||||
"pathname": "/references/js_sdk/admin/ShippingOptionType/properties/js_sdk.admin.ShippingOptionType.client"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/ShippingProfile/methods/js_sdk.admin.ShippingProfile.create/page.mdx",
|
||||
"pathname": "/references/js_sdk/admin/ShippingProfile/methods/js_sdk.admin.ShippingProfile.create"
|
||||
@@ -13507,6 +13743,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/classes/js_sdk.admin.ShippingOption/page.mdx",
|
||||
"pathname": "/references/js_sdk/admin/classes/js_sdk.admin.ShippingOption"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/classes/js_sdk.admin.ShippingOptionType/page.mdx",
|
||||
"pathname": "/references/js_sdk/admin/classes/js_sdk.admin.ShippingOptionType"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/classes/js_sdk.admin.ShippingProfile/page.mdx",
|
||||
"pathname": "/references/js_sdk/admin/classes/js_sdk.admin.ShippingProfile"
|
||||
@@ -18983,6 +19223,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/types/CommonTypes/types/types.CommonTypes.InputConfigModules/page.mdx",
|
||||
"pathname": "/references/types/CommonTypes/types/types.CommonTypes.InputConfigModules"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/CommonTypes/types/types.CommonTypes.InputFileConfig/page.mdx",
|
||||
"pathname": "/references/types/CommonTypes/types/types.CommonTypes.InputFileConfig"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/CommonTypes/types/types.CommonTypes.KebabCase/page.mdx",
|
||||
"pathname": "/references/types/CommonTypes/types/types.CommonTypes.KebabCase"
|
||||
@@ -19571,6 +19815,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminCollectionResponse/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminCollectionResponse"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminColumn/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminColumn"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminConfirmReceiveReturn/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminConfirmReceiveReturn"
|
||||
@@ -19771,6 +20019,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminCreateUser/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminCreateUser"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminCreateViewConfiguration/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminCreateViewConfiguration"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminCurrency/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminCurrency"
|
||||
@@ -20015,6 +20267,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminGetInvitesParams/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminGetInvitesParams"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminGetOrderShippingOptionList/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminGetOrderShippingOptionList"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminGetPaymentProvidersParams/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminGetPaymentProvidersParams"
|
||||
@@ -20047,6 +20303,14 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminGetTaxProvidersParams/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminGetTaxProvidersParams"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminGetViewConfigurationParams/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminGetViewConfigurationParams"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminGetViewConfigurationsParams/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminGetViewConfigurationsParams"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminGetWorkflowExecutionsParams/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminGetWorkflowExecutionsParams"
|
||||
@@ -20635,6 +20899,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminServiceZoneResponse/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminServiceZoneResponse"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminSetActiveViewConfiguration/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminSetActiveViewConfiguration"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminShippingOption/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminShippingOption"
|
||||
@@ -20667,6 +20935,22 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminShippingOptionType/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminShippingOptionType"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminShippingOptionTypeDeleteResponse/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminShippingOptionTypeDeleteResponse"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminShippingOptionTypeListParams/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminShippingOptionTypeListParams"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminShippingOptionTypeListResponse/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminShippingOptionTypeListResponse"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminShippingOptionTypeResponse/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminShippingOptionTypeResponse"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminShippingProfile/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminShippingProfile"
|
||||
@@ -20983,6 +21267,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminUpdateShippingOptionRules/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminUpdateShippingOptionRules"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminUpdateShippingOptionType/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminUpdateShippingOptionType"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminUpdateShippingProfile/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminUpdateShippingProfile"
|
||||
@@ -21015,6 +21303,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminUpdateUser/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminUpdateUser"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminUpdateViewConfiguration/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminUpdateViewConfiguration"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminUploadPreSignedUrlRequest/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminUploadPreSignedUrlRequest"
|
||||
@@ -21047,6 +21339,14 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminUserResponse/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminUserResponse"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminViewConfigurationResponse/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminViewConfigurationResponse"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminViewsEntityColumnsResponse/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminViewsEntityColumnsResponse"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/interfaces/types.HttpTypes.AdminWorkflowExecution/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/interfaces/types.HttpTypes.AdminWorkflowExecution"
|
||||
@@ -21763,6 +22063,14 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/types/types.HttpTypes.AdminUploadFile/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/types/types.HttpTypes.AdminUploadFile"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/types/types.HttpTypes.AdminViewConfigurationDeleteResponse/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/types/types.HttpTypes.AdminViewConfigurationDeleteResponse"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/types/types.HttpTypes.AdminViewConfigurationListResponse/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/types/types.HttpTypes.AdminViewConfigurationListResponse"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/HttpTypes/types/types.HttpTypes.AdminWorkflowExecutionListResponse/page.mdx",
|
||||
"pathname": "/references/types/HttpTypes/types/types.HttpTypes.AdminWorkflowExecutionListResponse"
|
||||
@@ -22207,6 +22515,46 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/types/SearchTypes/types/types.SearchTypes.IndexSettings/page.mdx",
|
||||
"pathname": "/references/types/SearchTypes/types/types.SearchTypes.IndexSettings"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/SettingsTypes/interfaces/types.SettingsTypes.CreateUserPreferenceDTO/page.mdx",
|
||||
"pathname": "/references/types/SettingsTypes/interfaces/types.SettingsTypes.CreateUserPreferenceDTO"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/SettingsTypes/interfaces/types.SettingsTypes.CreateViewConfigurationDTO/page.mdx",
|
||||
"pathname": "/references/types/SettingsTypes/interfaces/types.SettingsTypes.CreateViewConfigurationDTO"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/SettingsTypes/interfaces/types.SettingsTypes.FilterableUserPreferenceProps/page.mdx",
|
||||
"pathname": "/references/types/SettingsTypes/interfaces/types.SettingsTypes.FilterableUserPreferenceProps"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/SettingsTypes/interfaces/types.SettingsTypes.FilterableViewConfigurationProps/page.mdx",
|
||||
"pathname": "/references/types/SettingsTypes/interfaces/types.SettingsTypes.FilterableViewConfigurationProps"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/SettingsTypes/interfaces/types.SettingsTypes.ISettingsModuleService/page.mdx",
|
||||
"pathname": "/references/types/SettingsTypes/interfaces/types.SettingsTypes.ISettingsModuleService"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/SettingsTypes/interfaces/types.SettingsTypes.UpdateUserPreferenceDTO/page.mdx",
|
||||
"pathname": "/references/types/SettingsTypes/interfaces/types.SettingsTypes.UpdateUserPreferenceDTO"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/SettingsTypes/interfaces/types.SettingsTypes.UpdateViewConfigurationDTO/page.mdx",
|
||||
"pathname": "/references/types/SettingsTypes/interfaces/types.SettingsTypes.UpdateViewConfigurationDTO"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/SettingsTypes/interfaces/types.SettingsTypes.UserPreferenceDTO/page.mdx",
|
||||
"pathname": "/references/types/SettingsTypes/interfaces/types.SettingsTypes.UserPreferenceDTO"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/SettingsTypes/interfaces/types.SettingsTypes.ViewConfigurationDTO/page.mdx",
|
||||
"pathname": "/references/types/SettingsTypes/interfaces/types.SettingsTypes.ViewConfigurationDTO"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/SettingsTypes/interfaces/types.SettingsTypes.ViewConfigurationFilterableFields/page.mdx",
|
||||
"pathname": "/references/types/SettingsTypes/interfaces/types.SettingsTypes.ViewConfigurationFilterableFields"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/StockLocationTypes/interfaces/types.StockLocationTypes.FilterableStockLocationAddressProps/page.mdx",
|
||||
"pathname": "/references/types/StockLocationTypes/interfaces/types.StockLocationTypes.FilterableStockLocationAddressProps"
|
||||
@@ -23047,6 +23395,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/types/interfaces/types.AdminUpsertStockLocationAddress/page.mdx",
|
||||
"pathname": "/references/types/interfaces/types.AdminUpsertStockLocationAddress"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/interfaces/types.AdminViewConfiguration/page.mdx",
|
||||
"pathname": "/references/types/interfaces/types.AdminViewConfiguration"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/interfaces/types.AuthIdentityProviderService/page.mdx",
|
||||
"pathname": "/references/types/interfaces/types.AuthIdentityProviderService"
|
||||
@@ -24135,6 +24487,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/types/types/types.ListShippingOptionsForCartWorkflowInput/page.mdx",
|
||||
"pathname": "/references/types/types/types.ListShippingOptionsForCartWorkflowInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/types/types.ListShippingOptionsForOrderWorkflowInput/page.mdx",
|
||||
"pathname": "/references/types/types/types.ListShippingOptionsForOrderWorkflowInput"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/types/types.Maybe/page.mdx",
|
||||
"pathname": "/references/types/types/types.Maybe"
|
||||
@@ -24391,6 +24747,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/types/types.SearchTypes/page.mdx",
|
||||
"pathname": "/references/types/types.SearchTypes"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/types.SettingsTypes/page.mdx",
|
||||
"pathname": "/references/types/types.SettingsTypes"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/types/types.StockLocationTypes/page.mdx",
|
||||
"pathname": "/references/types/types.StockLocationTypes"
|
||||
@@ -24631,6 +24991,10 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/utils/Fulfillment/variables/utils.Fulfillment.FulfillmentWorkflowEvents/page.mdx",
|
||||
"pathname": "/references/utils/Fulfillment/variables/utils.Fulfillment.FulfillmentWorkflowEvents"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/utils/Fulfillment/variables/utils.Fulfillment.ShippingOptionTypeWorkflowEvents/page.mdx",
|
||||
"pathname": "/references/utils/Fulfillment/variables/utils.Fulfillment.ShippingOptionTypeWorkflowEvents"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/utils/FulfillmentUtils/enums/utils.FulfillmentUtils.GeoZoneType/page.mdx",
|
||||
"pathname": "/references/utils/FulfillmentUtils/enums/utils.FulfillmentUtils.GeoZoneType"
|
||||
@@ -25159,6 +25523,70 @@ export const filesMap = [
|
||||
"filePath": "/www/apps/resources/references/workflows/LocalWorkflow/methods/workflows.LocalWorkflow.setOptions/page.mdx",
|
||||
"pathname": "/references/workflows/LocalWorkflow/methods/workflows.LocalWorkflow.setOptions"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/workflows/Logger/methods/workflows.Logger.activity/page.mdx",
|
||||
"pathname": "/references/workflows/Logger/methods/workflows.Logger.activity"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/workflows/Logger/methods/workflows.Logger.debug/page.mdx",
|
||||
"pathname": "/references/workflows/Logger/methods/workflows.Logger.debug"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/workflows/Logger/methods/workflows.Logger.error/page.mdx",
|
||||
"pathname": "/references/workflows/Logger/methods/workflows.Logger.error"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/workflows/Logger/methods/workflows.Logger.failure/page.mdx",
|
||||
"pathname": "/references/workflows/Logger/methods/workflows.Logger.failure"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/workflows/Logger/methods/workflows.Logger.http/page.mdx",
|
||||
"pathname": "/references/workflows/Logger/methods/workflows.Logger.http"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/workflows/Logger/methods/workflows.Logger.info/page.mdx",
|
||||
"pathname": "/references/workflows/Logger/methods/workflows.Logger.info"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/workflows/Logger/methods/workflows.Logger.log/page.mdx",
|
||||
"pathname": "/references/workflows/Logger/methods/workflows.Logger.log"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/workflows/Logger/methods/workflows.Logger.panic/page.mdx",
|
||||
"pathname": "/references/workflows/Logger/methods/workflows.Logger.panic"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/workflows/Logger/methods/workflows.Logger.progress/page.mdx",
|
||||
"pathname": "/references/workflows/Logger/methods/workflows.Logger.progress"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/workflows/Logger/methods/workflows.Logger.setLogLevel/page.mdx",
|
||||
"pathname": "/references/workflows/Logger/methods/workflows.Logger.setLogLevel"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/workflows/Logger/methods/workflows.Logger.shouldLog/page.mdx",
|
||||
"pathname": "/references/workflows/Logger/methods/workflows.Logger.shouldLog"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/workflows/Logger/methods/workflows.Logger.silly/page.mdx",
|
||||
"pathname": "/references/workflows/Logger/methods/workflows.Logger.silly"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/workflows/Logger/methods/workflows.Logger.success/page.mdx",
|
||||
"pathname": "/references/workflows/Logger/methods/workflows.Logger.success"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/workflows/Logger/methods/workflows.Logger.unsetLogLevel/page.mdx",
|
||||
"pathname": "/references/workflows/Logger/methods/workflows.Logger.unsetLogLevel"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/workflows/Logger/methods/workflows.Logger.verbose/page.mdx",
|
||||
"pathname": "/references/workflows/Logger/methods/workflows.Logger.verbose"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/workflows/Logger/methods/workflows.Logger.warn/page.mdx",
|
||||
"pathname": "/references/workflows/Logger/methods/workflows.Logger.warn"
|
||||
},
|
||||
{
|
||||
"filePath": "/www/apps/resources/references/workflows/OrchestratorBuilder/methods/workflows.OrchestratorBuilder.addAction/page.mdx",
|
||||
"pathname": "/references/workflows/OrchestratorBuilder/methods/workflows.OrchestratorBuilder.addAction"
|
||||
|
||||
@@ -3495,7 +3495,7 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "Manage Shipping Option Types",
|
||||
"path": "https://docs.medusajs.com/user-guide/settings/shipping-option-types",
|
||||
"path": "https://docs.medusajs.com/user-guide/settings/locations-and-shipping/shipping-option-types",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
@@ -3708,6 +3708,14 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/createShippingOptionsWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "createShippingOptionTypesWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/createShippingOptionTypesWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -3748,6 +3756,14 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/deleteShippingOptionsWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "deleteShippingOptionTypesWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/deleteShippingOptionTypesWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -3860,6 +3876,14 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/updateShippingOptionsWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "updateShippingOptionTypesWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/updateShippingOptionTypesWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -3935,6 +3959,14 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/createShippingOptionRulesStep",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "createShippingOptionTypesStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/createShippingOptionTypesStep",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -3975,6 +4007,14 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/deleteShippingOptionsStep",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "deleteShippingOptionTypesStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/deleteShippingOptionTypesStep",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -4007,6 +4047,14 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/updateShippingOptionRulesStep",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "updateShippingOptionTypesStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/updateShippingOptionTypesStep",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -4129,6 +4177,14 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"path": "https://docs.medusajs.com/resources/references/js-sdk/admin/shippingOption",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "shippingOptionType",
|
||||
"path": "https://docs.medusajs.com/resources/references/js-sdk/admin/shippingOptionType",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -4255,6 +4311,15 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"description": "",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/references/fulfillment/createShippingOptionTypes",
|
||||
"title": "createShippingOptionTypes",
|
||||
"description": "",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -4534,6 +4599,15 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"description": "",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/references/fulfillment/restoreShippingOptionTypes",
|
||||
"title": "restoreShippingOptionTypes",
|
||||
"description": "",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -4660,6 +4734,15 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"description": "",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/references/fulfillment/softDeleteShippingOptionTypes",
|
||||
"title": "softDeleteShippingOptionTypes",
|
||||
"description": "",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -4723,6 +4806,15 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"description": "",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/references/fulfillment/updateShippingOptionTypes",
|
||||
"title": "updateShippingOptionTypes",
|
||||
"description": "",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -4750,6 +4842,15 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"description": "",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/references/fulfillment/upsertShippingOptionTypes",
|
||||
"title": "upsertShippingOptionTypes",
|
||||
"description": "",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -10527,6 +10628,38 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"autogenerate_as_ref": true,
|
||||
"sort_sidebar": "alphabetize",
|
||||
"children": [
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "addDraftOrderItemsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/addDraftOrderItemsWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "addOrderLineItemsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/addOrderLineItemsWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "addShippingMethodToCartWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/addShippingMethodToCartWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "addToCartWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/addToCartWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -10543,6 +10676,22 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/batchProductVariantsWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "createCartWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/createCartWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "createOrderWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/createOrderWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -10607,6 +10756,14 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/createStoresWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "deleteLineItemsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/deleteLineItemsWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -10623,6 +10780,38 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/deletePricePreferencesWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "orderClaimAddNewItemWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/orderClaimAddNewItemWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "orderEditAddNewItemWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/orderEditAddNewItemWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "orderExchangeAddNewItemWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/orderExchangeAddNewItemWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "refreshCartItemsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/refreshCartItemsWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -10631,6 +10820,30 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/removePriceListPricesWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "transferCartCustomerWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/transferCartCustomerWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "updateCartWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/updateCartWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "updateLineItemInCartWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/updateLineItemInCartWorkflow",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -10770,6 +10983,14 @@ const generatedgeneratedCommerceModulesSidebarSidebar = {
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/deletePricePreferencesStep",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "ref",
|
||||
"title": "getVariantPriceSetsStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/getVariantPriceSetsStep",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
|
||||
@@ -2713,6 +2713,15 @@ const generatedgeneratedReferencesSidebarSidebar = {
|
||||
"description": "Retrieve a list of orders.",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/references/medusa-workflows/listShippingOptionsForOrderWorkflow",
|
||||
"title": "listShippingOptionsForOrderWorkflow",
|
||||
"description": "List a order's shipping options.",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -5873,14 +5882,136 @@ const generatedgeneratedReferencesSidebarSidebar = {
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "category",
|
||||
"title": "Shipping Options",
|
||||
"title": "Settings",
|
||||
"children": [
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "sub-category",
|
||||
"title": "Workflows",
|
||||
"children": [
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/references/medusa-workflows/createViewConfigurationWorkflow",
|
||||
"title": "createViewConfigurationWorkflow",
|
||||
"description": "",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/references/medusa-workflows/updateViewConfigurationWorkflow",
|
||||
"title": "updateViewConfigurationWorkflow",
|
||||
"description": "",
|
||||
"children": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "sub-category",
|
||||
"title": "Steps",
|
||||
"children": [
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/references/medusa-workflows/steps/createViewConfigurationStep",
|
||||
"title": "createViewConfigurationStep",
|
||||
"description": "",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/references/medusa-workflows/steps/setActiveViewConfigurationStep",
|
||||
"title": "setActiveViewConfigurationStep",
|
||||
"description": "",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/references/medusa-workflows/steps/updateViewConfigurationStep",
|
||||
"title": "updateViewConfigurationStep",
|
||||
"description": "",
|
||||
"children": []
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "category",
|
||||
"title": "Shipping Options",
|
||||
"children": [
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "sub-category",
|
||||
"title": "Workflows",
|
||||
"children": [
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/references/medusa-workflows/createShippingOptionTypesWorkflow",
|
||||
"title": "createShippingOptionTypesWorkflow",
|
||||
"description": "Create one or more shipping option types.",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/references/medusa-workflows/deleteShippingOptionTypesWorkflow",
|
||||
"title": "deleteShippingOptionTypesWorkflow",
|
||||
"description": "Delete one or more shipping option types.",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/references/medusa-workflows/updateShippingOptionTypesWorkflow",
|
||||
"title": "updateShippingOptionTypesWorkflow",
|
||||
"description": "Update one or more shipping option types.",
|
||||
"children": []
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "sub-category",
|
||||
"title": "Steps",
|
||||
"children": [
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/references/medusa-workflows/steps/createShippingOptionTypesStep",
|
||||
"title": "createShippingOptionTypesStep",
|
||||
"description": "",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/references/medusa-workflows/steps/deleteShippingOptionTypesStep",
|
||||
"title": "deleteShippingOptionTypesStep",
|
||||
"description": "",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
@@ -5889,6 +6020,15 @@ const generatedgeneratedReferencesSidebarSidebar = {
|
||||
"title": "listShippingOptionsForContextStep",
|
||||
"description": "",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/references/medusa-workflows/steps/updateShippingOptionTypesStep",
|
||||
"title": "updateShippingOptionTypesStep",
|
||||
"description": "",
|
||||
"children": []
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -659,6 +659,15 @@ const generatedgeneratedToolsSidebarSidebar = {
|
||||
"description": "",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/references/js-sdk/admin/shippingOptionType",
|
||||
"title": "shippingOptionType",
|
||||
"description": "",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
|
||||
@@ -150,6 +150,14 @@ const generatedgeneratedTroubleshootingSidebarSidebar = {
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
"type": "link",
|
||||
"path": "/troubleshooting/scheduled-job-not-running",
|
||||
"title": "Scheduled Job Not Running",
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"loaded": true,
|
||||
"isPathHref": true,
|
||||
|
||||
@@ -2139,6 +2139,11 @@ export const slugChanges = [
|
||||
"newSlug": "/references/medusa-workflows/getOrdersListWorkflow",
|
||||
"filePath": "/www/apps/resources/references/core_flows/Order/Workflows_Order/functions/core_flows.Order.Workflows_Order.getOrdersListWorkflow/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/core_flows/Order/Workflows_Order/functions/core_flows.Order.Workflows_Order.listShippingOptionsForOrderWorkflow",
|
||||
"newSlug": "/references/medusa-workflows/listShippingOptionsForOrderWorkflow",
|
||||
"filePath": "/www/apps/resources/references/core_flows/Order/Workflows_Order/functions/core_flows.Order.Workflows_Order.listShippingOptionsForOrderWorkflow/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/core_flows/Order/Workflows_Order/functions/core_flows.Order.Workflows_Order.markOrderFulfillmentAsDeliveredWorkflow",
|
||||
"newSlug": "/references/medusa-workflows/markOrderFulfillmentAsDeliveredWorkflow",
|
||||
@@ -3379,11 +3384,66 @@ export const slugChanges = [
|
||||
"newSlug": "/references/medusa-workflows/updateSalesChannelsWorkflow",
|
||||
"filePath": "/www/apps/resources/references/core_flows/Sales_Channel/Workflows_Sales_Channel/functions/core_flows.Sales_Channel.Workflows_Sales_Channel.updateSalesChannelsWorkflow/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/core_flows/Settings/Steps_Settings/functions/core_flows.Settings.Steps_Settings.createViewConfigurationStep",
|
||||
"newSlug": "/references/medusa-workflows/steps/createViewConfigurationStep",
|
||||
"filePath": "/www/apps/resources/references/core_flows/Settings/Steps_Settings/functions/core_flows.Settings.Steps_Settings.createViewConfigurationStep/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/core_flows/Settings/Steps_Settings/functions/core_flows.Settings.Steps_Settings.setActiveViewConfigurationStep",
|
||||
"newSlug": "/references/medusa-workflows/steps/setActiveViewConfigurationStep",
|
||||
"filePath": "/www/apps/resources/references/core_flows/Settings/Steps_Settings/functions/core_flows.Settings.Steps_Settings.setActiveViewConfigurationStep/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/core_flows/Settings/Steps_Settings/functions/core_flows.Settings.Steps_Settings.updateViewConfigurationStep",
|
||||
"newSlug": "/references/medusa-workflows/steps/updateViewConfigurationStep",
|
||||
"filePath": "/www/apps/resources/references/core_flows/Settings/Steps_Settings/functions/core_flows.Settings.Steps_Settings.updateViewConfigurationStep/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/core_flows/Settings/Workflows_Settings/functions/core_flows.Settings.Workflows_Settings.createViewConfigurationWorkflow",
|
||||
"newSlug": "/references/medusa-workflows/createViewConfigurationWorkflow",
|
||||
"filePath": "/www/apps/resources/references/core_flows/Settings/Workflows_Settings/functions/core_flows.Settings.Workflows_Settings.createViewConfigurationWorkflow/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/core_flows/Settings/Workflows_Settings/functions/core_flows.Settings.Workflows_Settings.updateViewConfigurationWorkflow",
|
||||
"newSlug": "/references/medusa-workflows/updateViewConfigurationWorkflow",
|
||||
"filePath": "/www/apps/resources/references/core_flows/Settings/Workflows_Settings/functions/core_flows.Settings.Workflows_Settings.updateViewConfigurationWorkflow/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.createShippingOptionTypesStep",
|
||||
"newSlug": "/references/medusa-workflows/steps/createShippingOptionTypesStep",
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.createShippingOptionTypesStep/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.deleteShippingOptionTypesStep",
|
||||
"newSlug": "/references/medusa-workflows/steps/deleteShippingOptionTypesStep",
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.deleteShippingOptionTypesStep/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.listShippingOptionsForContextStep",
|
||||
"newSlug": "/references/medusa-workflows/steps/listShippingOptionsForContextStep",
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.listShippingOptionsForContextStep/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.updateShippingOptionTypesStep",
|
||||
"newSlug": "/references/medusa-workflows/steps/updateShippingOptionTypesStep",
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Steps_Shipping_Options/functions/core_flows.Shipping_Options.Steps_Shipping_Options.updateShippingOptionTypesStep/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/core_flows/Shipping_Options/Workflows_Shipping_Options/functions/core_flows.Shipping_Options.Workflows_Shipping_Options.createShippingOptionTypesWorkflow",
|
||||
"newSlug": "/references/medusa-workflows/createShippingOptionTypesWorkflow",
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Workflows_Shipping_Options/functions/core_flows.Shipping_Options.Workflows_Shipping_Options.createShippingOptionTypesWorkflow/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/core_flows/Shipping_Options/Workflows_Shipping_Options/functions/core_flows.Shipping_Options.Workflows_Shipping_Options.deleteShippingOptionTypesWorkflow",
|
||||
"newSlug": "/references/medusa-workflows/deleteShippingOptionTypesWorkflow",
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Workflows_Shipping_Options/functions/core_flows.Shipping_Options.Workflows_Shipping_Options.deleteShippingOptionTypesWorkflow/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/core_flows/Shipping_Options/Workflows_Shipping_Options/functions/core_flows.Shipping_Options.Workflows_Shipping_Options.updateShippingOptionTypesWorkflow",
|
||||
"newSlug": "/references/medusa-workflows/updateShippingOptionTypesWorkflow",
|
||||
"filePath": "/www/apps/resources/references/core_flows/Shipping_Options/Workflows_Shipping_Options/functions/core_flows.Shipping_Options.Workflows_Shipping_Options.updateShippingOptionTypesWorkflow/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/core_flows/Shipping_Profile/Steps_Shipping_Profile/functions/core_flows.Shipping_Profile.Steps_Shipping_Profile.deleteShippingProfilesStep",
|
||||
"newSlug": "/references/medusa-workflows/steps/deleteShippingProfilesStep",
|
||||
@@ -3969,6 +4029,11 @@ export const slugChanges = [
|
||||
"newSlug": "/references/fulfillment/createShippingOptionRules",
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createShippingOptionRules/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createShippingOptionTypes",
|
||||
"newSlug": "/references/fulfillment/createShippingOptionTypes",
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createShippingOptionTypes/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.createShippingOptions",
|
||||
"newSlug": "/references/fulfillment/createShippingOptions",
|
||||
@@ -4124,6 +4189,11 @@ export const slugChanges = [
|
||||
"newSlug": "/references/fulfillment/restoreServiceZones",
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreServiceZones/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreShippingOptionTypes",
|
||||
"newSlug": "/references/fulfillment/restoreShippingOptionTypes",
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreShippingOptionTypes/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.restoreShippingOptions",
|
||||
"newSlug": "/references/fulfillment/restoreShippingOptions",
|
||||
@@ -4194,6 +4264,11 @@ export const slugChanges = [
|
||||
"newSlug": "/references/fulfillment/softDeleteServiceZones",
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteServiceZones/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteShippingOptionTypes",
|
||||
"newSlug": "/references/fulfillment/softDeleteShippingOptionTypes",
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteShippingOptionTypes/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.softDeleteShippingOptions",
|
||||
"newSlug": "/references/fulfillment/softDeleteShippingOptions",
|
||||
@@ -4229,6 +4304,11 @@ export const slugChanges = [
|
||||
"newSlug": "/references/fulfillment/updateShippingOptionRules",
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateShippingOptionRules/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateShippingOptionTypes",
|
||||
"newSlug": "/references/fulfillment/updateShippingOptionTypes",
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateShippingOptionTypes/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.updateShippingOptions",
|
||||
"newSlug": "/references/fulfillment/updateShippingOptions",
|
||||
@@ -4244,6 +4324,11 @@ export const slugChanges = [
|
||||
"newSlug": "/references/fulfillment/upsertServiceZones",
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.upsertServiceZones/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.upsertShippingOptionTypes",
|
||||
"newSlug": "/references/fulfillment/upsertShippingOptionTypes",
|
||||
"filePath": "/www/apps/resources/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.upsertShippingOptionTypes/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/fulfillment/IFulfillmentModuleService/methods/fulfillment.IFulfillmentModuleService.upsertShippingOptions",
|
||||
"newSlug": "/references/fulfillment/upsertShippingOptions",
|
||||
@@ -4774,6 +4859,11 @@ export const slugChanges = [
|
||||
"newSlug": "/references/js-sdk/admin/shippingOption",
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/Admin/properties/js_sdk.admin.Admin.shippingOption/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/js_sdk/admin/Admin/properties/js_sdk.admin.Admin.shippingOptionType",
|
||||
"newSlug": "/references/js-sdk/admin/shippingOptionType",
|
||||
"filePath": "/www/apps/resources/references/js_sdk/admin/Admin/properties/js_sdk.admin.Admin.shippingOptionType/page.mdx"
|
||||
},
|
||||
{
|
||||
"origSlug": "/references/js_sdk/admin/Admin/properties/js_sdk.admin.Admin.shippingProfile",
|
||||
"newSlug": "/references/js-sdk/admin/shippingProfile",
|
||||
|
||||
@@ -99,6 +99,11 @@ export const troubleshootingSidebar = [
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
type: "link",
|
||||
path: "/troubleshooting/scheduled-job-not-running",
|
||||
title: "Scheduled Job Not Running",
|
||||
},
|
||||
{
|
||||
type: "link",
|
||||
path: "/troubleshooting/test-errors",
|
||||
|
||||
@@ -139,6 +139,10 @@ export const admin = [
|
||||
"title": "shippingOption",
|
||||
"path": "https://docs.medusajs.com/resources/references/js-sdk/admin/shippingOption"
|
||||
},
|
||||
{
|
||||
"title": "shippingOptionType",
|
||||
"path": "https://docs.medusajs.com/resources/references/js-sdk/admin/shippingOptionType"
|
||||
},
|
||||
{
|
||||
"title": "shippingProfile",
|
||||
"path": "https://docs.medusajs.com/resources/references/js-sdk/admin/shippingProfile"
|
||||
|
||||
@@ -267,6 +267,18 @@ export const eventBus = [
|
||||
"title": "updateSalesChannelsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/updateSalesChannelsWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "createShippingOptionTypesWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/createShippingOptionTypesWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "deleteShippingOptionTypesWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/deleteShippingOptionTypesWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "updateShippingOptionTypesWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/updateShippingOptionTypesWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "createUserAccountWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/createUserAccountWorkflow"
|
||||
|
||||
@@ -12,12 +12,12 @@ export const fulfillment = [
|
||||
"path": "https://docs.medusajs.com/user-guide/settings/locations-and-shipping"
|
||||
},
|
||||
{
|
||||
"title": "Manage Shipping Profiles",
|
||||
"path": "https://docs.medusajs.com/user-guide/settings/locations-and-shipping/shipping-profiles"
|
||||
"title": "Manage Shipping Option Types",
|
||||
"path": "https://docs.medusajs.com/user-guide/settings/locations-and-shipping/shipping-option-types"
|
||||
},
|
||||
{
|
||||
"title": "Manage Shipping Option Types",
|
||||
"path": "https://docs.medusajs.com/user-guide/settings/shipping-option-types"
|
||||
"title": "Manage Shipping Profiles",
|
||||
"path": "https://docs.medusajs.com/user-guide/settings/locations-and-shipping/shipping-profiles"
|
||||
},
|
||||
{
|
||||
"title": "Shipping Option Price Rules",
|
||||
@@ -275,6 +275,30 @@ export const fulfillment = [
|
||||
"title": "maybeRefreshShippingMethodsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/maybeRefreshShippingMethodsWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "createShippingOptionTypesStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/createShippingOptionTypesStep"
|
||||
},
|
||||
{
|
||||
"title": "deleteShippingOptionTypesStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/deleteShippingOptionTypesStep"
|
||||
},
|
||||
{
|
||||
"title": "updateShippingOptionTypesStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/updateShippingOptionTypesStep"
|
||||
},
|
||||
{
|
||||
"title": "createShippingOptionTypesWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/createShippingOptionTypesWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "deleteShippingOptionTypesWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/deleteShippingOptionTypesWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "updateShippingOptionTypesWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/updateShippingOptionTypesWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "deleteShippingProfilesStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/deleteShippingProfilesStep"
|
||||
@@ -307,6 +331,10 @@ export const fulfillment = [
|
||||
"title": "shippingOption",
|
||||
"path": "https://docs.medusajs.com/resources/references/js-sdk/admin/shippingOption"
|
||||
},
|
||||
{
|
||||
"title": "shippingOptionType",
|
||||
"path": "https://docs.medusajs.com/resources/references/js-sdk/admin/shippingOptionType"
|
||||
},
|
||||
{
|
||||
"title": "shippingProfile",
|
||||
"path": "https://docs.medusajs.com/resources/references/js-sdk/admin/shippingProfile"
|
||||
|
||||
@@ -139,6 +139,10 @@ export const jsSdk = [
|
||||
"title": "shippingOption",
|
||||
"path": "https://docs.medusajs.com/resources/references/js-sdk/admin/shippingOption"
|
||||
},
|
||||
{
|
||||
"title": "shippingOptionType",
|
||||
"path": "https://docs.medusajs.com/resources/references/js-sdk/admin/shippingOptionType"
|
||||
},
|
||||
{
|
||||
"title": "shippingProfile",
|
||||
"path": "https://docs.medusajs.com/resources/references/js-sdk/admin/shippingProfile"
|
||||
|
||||
@@ -231,6 +231,10 @@ export const link = [
|
||||
"title": "linkProductsToSalesChannelWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/linkProductsToSalesChannelWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "deleteShippingOptionTypesWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/deleteShippingOptionTypesWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "deleteShippingProfileWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/deleteShippingProfileWorkflow"
|
||||
|
||||
@@ -39,6 +39,42 @@ export const pricing = [
|
||||
"title": "Retrieve Product Variant's Prices in Storefront",
|
||||
"path": "https://docs.medusajs.com/resources/storefront-development/products/price"
|
||||
},
|
||||
{
|
||||
"title": "getVariantPriceSetsStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/getVariantPriceSetsStep"
|
||||
},
|
||||
{
|
||||
"title": "addShippingMethodToCartWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/addShippingMethodToCartWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "addToCartWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/addToCartWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "createCartWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/createCartWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "refreshCartItemsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/refreshCartItemsWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "transferCartCustomerWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/transferCartCustomerWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "updateCartWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/updateCartWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "updateLineItemInCartWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/updateLineItemInCartWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "addDraftOrderItemsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/addDraftOrderItemsWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "createShippingOptionsPriceSetsStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/createShippingOptionsPriceSetsStep"
|
||||
@@ -55,6 +91,30 @@ export const pricing = [
|
||||
"title": "updateShippingOptionsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/updateShippingOptionsWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "deleteLineItemsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/deleteLineItemsWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "addOrderLineItemsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/addOrderLineItemsWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "createOrderWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/createOrderWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "orderClaimAddNewItemWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/orderClaimAddNewItemWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "orderEditAddNewItemWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/orderEditAddNewItemWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "orderExchangeAddNewItemWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/orderExchangeAddNewItemWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "createPriceListPricesStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/createPriceListPricesStep"
|
||||
|
||||
@@ -7,22 +7,82 @@ export const query = [
|
||||
"title": "Get Variant Price with Taxes",
|
||||
"path": "https://docs.medusajs.com/resources/commerce-modules/product/guides/price-with-taxes"
|
||||
},
|
||||
{
|
||||
"title": "getVariantPriceSetsStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/getVariantPriceSetsStep"
|
||||
},
|
||||
{
|
||||
"title": "addShippingMethodToCartWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/addShippingMethodToCartWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "addToCartWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/addToCartWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "completeCartWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/completeCartWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "createCartWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/createCartWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "refreshCartItemsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/refreshCartItemsWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "transferCartCustomerWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/transferCartCustomerWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "updateCartWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/updateCartWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "updateLineItemInCartWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/updateLineItemInCartWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "useQueryGraphStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/useQueryGraphStep"
|
||||
},
|
||||
{
|
||||
"title": "addDraftOrderItemsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/addDraftOrderItemsWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "deleteInventoryItemWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/deleteInventoryItemWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "deleteLineItemsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/deleteLineItemsWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "addOrderLineItemsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/addOrderLineItemsWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "beginOrderEditOrderWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/beginOrderEditOrderWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "createOrderWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/createOrderWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "orderClaimAddNewItemWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/orderClaimAddNewItemWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "orderEditAddNewItemWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/orderEditAddNewItemWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "orderExchangeAddNewItemWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/orderExchangeAddNewItemWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "batchProductVariantsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/batchProductVariantsWorkflow"
|
||||
|
||||
@@ -119,10 +119,6 @@ export const remoteQuery = [
|
||||
"title": "deleteLineItemsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/deleteLineItemsWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "addOrderLineItemsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/addOrderLineItemsWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "beginClaimOrderWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/beginClaimOrderWorkflow"
|
||||
@@ -131,10 +127,6 @@ export const remoteQuery = [
|
||||
"title": "beginExchangeOrderWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/beginExchangeOrderWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "beginOrderEditOrderWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/beginOrderEditOrderWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "beginReceiveReturnWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/beginReceiveReturnWorkflow"
|
||||
@@ -335,10 +327,6 @@ export const remoteQuery = [
|
||||
"title": "updateExchangeShippingMethodWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/updateExchangeShippingMethodWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "updateOrderEditShippingMethodWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/updateOrderEditShippingMethodWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "updateOrderTaxLinesWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/updateOrderTaxLinesWorkflow"
|
||||
|
||||
@@ -79,6 +79,10 @@ export const step = [
|
||||
"title": "getPromotionCodesToApply",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/getPromotionCodesToApply"
|
||||
},
|
||||
{
|
||||
"title": "getVariantPriceSetsStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/getVariantPriceSetsStep"
|
||||
},
|
||||
{
|
||||
"title": "prepareAdjustmentsFromPromotionActionsStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/prepareAdjustmentsFromPromotionActionsStep"
|
||||
@@ -1223,6 +1227,18 @@ export const step = [
|
||||
"title": "updateSalesChannelsStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/updateSalesChannelsStep"
|
||||
},
|
||||
{
|
||||
"title": "createShippingOptionTypesStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/createShippingOptionTypesStep"
|
||||
},
|
||||
{
|
||||
"title": "deleteShippingOptionTypesStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/deleteShippingOptionTypesStep"
|
||||
},
|
||||
{
|
||||
"title": "updateShippingOptionTypesStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/updateShippingOptionTypesStep"
|
||||
},
|
||||
{
|
||||
"title": "deleteShippingProfilesStep",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/steps/deleteShippingProfilesStep"
|
||||
|
||||
@@ -159,6 +159,10 @@ export const userGuide = [
|
||||
"title": "Locations & Shipping Overview",
|
||||
"path": "https://docs.medusajs.com/user-guide/settings/locations-and-shipping"
|
||||
},
|
||||
{
|
||||
"title": "Manage Shipping Option Types",
|
||||
"path": "https://docs.medusajs.com/user-guide/settings/locations-and-shipping/shipping-option-types"
|
||||
},
|
||||
{
|
||||
"title": "Manage Shipping Profiles",
|
||||
"path": "https://docs.medusajs.com/user-guide/settings/locations-and-shipping/shipping-profiles"
|
||||
@@ -187,10 +191,6 @@ export const userGuide = [
|
||||
"title": "Manage Sales Channels",
|
||||
"path": "https://docs.medusajs.com/user-guide/settings/sales-channels"
|
||||
},
|
||||
{
|
||||
"title": "Manage Shipping Option Types",
|
||||
"path": "https://docs.medusajs.com/user-guide/settings/shipping-option-types"
|
||||
},
|
||||
{
|
||||
"title": "Manage Store",
|
||||
"path": "https://docs.medusajs.com/user-guide/settings/store"
|
||||
|
||||
@@ -567,6 +567,10 @@ export const workflow = [
|
||||
"title": "getOrdersListWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/getOrdersListWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "listShippingOptionsForOrderWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/listShippingOptionsForOrderWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "markOrderFulfillmentAsDeliveredWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/markOrderFulfillmentAsDeliveredWorkflow"
|
||||
@@ -1027,6 +1031,18 @@ export const workflow = [
|
||||
"title": "updateSalesChannelsWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/updateSalesChannelsWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "createShippingOptionTypesWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/createShippingOptionTypesWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "deleteShippingOptionTypesWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/deleteShippingOptionTypesWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "updateShippingOptionTypesWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/updateShippingOptionTypesWorkflow"
|
||||
},
|
||||
{
|
||||
"title": "deleteShippingProfileWorkflow",
|
||||
"path": "https://docs.medusajs.com/resources/references/medusa-workflows/deleteShippingProfileWorkflow"
|
||||
|
||||
Reference in New Issue
Block a user